]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/DockView.h
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / DockView.h
index 7d2eb36c0ee0e10f59504c373075454c3b6e09fb..bb456d9b5deea53ebf93641146ea0c936db7a5bd 100644 (file)
 #ifndef DOCK_VIEW_H
 #define DOCK_VIEW_H
 
-#include "controllers/Dialog.h"
+#include "Dialog.h"
 #include "GuiView.h"
-#include "qt_helpers.h"
-#include "debug.h"
 
 #include <QDockWidget>
 
@@ -23,70 +21,43 @@ namespace lyx {
 namespace frontend {
 
 /// Dock Widget container for LyX dialogs.
-/// This template class that encapsulates a given Widget inside a
-/// QDockWidget and presents a Dialog interface
-template<class MyController, class MyWidget>
+/**
+ * This template class that encapsulates a given Widget inside a
+ * QDockWidget and presents a Dialog interface
+ * FIXME: create a DockView.cpp file
+ **/
 class DockView : public QDockWidget, public Dialog
 {
 public:
        DockView(
-               GuiViewBase & parent, ///< the main window where to dock.
-               std::string const & name, ///< dialog identifier.
+               GuiView & parent, ///< the main window where to dock.
+               QString const & name, ///< dialog identifier.
+               QString const & title, ///< dialog title.
                Qt::DockWidgetArea area = Qt::LeftDockWidgetArea, ///< Position of the dock (and also drawer)
                Qt::WindowFlags flags = 0
        )
-               : QDockWidget(&parent, flags), name_(name)
+               : QDockWidget(&parent, flags), Dialog(parent, name, title)
        {
+               setObjectName(name);
                if (flags & Qt::Drawer)
                        setFeatures(QDockWidget::NoDockWidgetFeatures);
-               MyController * c = new MyController(*this);
-               controller_ = c;
-               controller_->setLyXView(parent);
-               widget_ = new MyWidget(*c);
-               setWidget(widget_);
-               setWindowTitle(widget_->windowTitle());
                parent.addDockWidget(area, this);
+               hide();
        }
-       ~DockView() { delete widget_; delete controller_; }
+
+       virtual ~DockView() {}
+
+       virtual QWidget * asQWidget() { return this; }
+       virtual QWidget const * asQWidget() const { return this; }
+
+       /// We don't want to restore geometry session for dock widgets.
+       void restoreSession() {}
 
        /// Dialog inherited methods
        //@{
        void applyView() {}
-       void hideView() { QDockWidget::hide(); }
-       void showData(std::string const & data)
-       {
-               controller_->initialiseParams(data);
-               showView();
-       }
-       void showView()
-       {
-               widget_->updateView();  // make sure its up-to-date
-               QDockWidget::show();
-       }
-       bool isVisibleView() const { return QDockWidget::isVisible(); }
-       void checkStatus() { updateView(); }
-       void redraw() { redrawView(); }
-       void redrawView() {}
-       void updateData(std::string const & data)
-       {
-               controller_->initialiseParams(data);
-               updateView();
-       }
-       void updateView()
-       {
-               widget_->updateView();
-               QDockWidget::update();
-       }
        bool isClosing() const { return false; }
-       void partialUpdateView(int /*id*/) {}
-       Controller & controller() { return *controller_; }
-       std::string name() const { return name_; }
        //@}
-private:
-       /// The encapsulated widget.
-       MyWidget * widget_;
-       Controller * controller_;
-       std::string name_;
 };
 
 } // frontend