]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/DockView.h
rename buffer parameter math_number_before to math_numbering_side
[lyx.git] / src / frontends / qt4 / DockView.h
index 6113077362f59d1501a7831d41d71372cbbbf8b6..621368bdfce306a13030d60d8152e33f5a8b5574 100644 (file)
 #ifndef DOCK_VIEW_H
 #define DOCK_VIEW_H
 
-#include "controllers/Dialog.h"
-#include "qt_helpers.h"
-
-#include <boost/scoped_ptr.hpp>
+#include "Dialog.h"
+#include "GuiView.h"
 
 #include <QDockWidget>
-#include <QMainWindow>
+#include <QKeyEvent>
 
 namespace lyx {
 namespace frontend {
 
 /// Dock Widget container for LyX dialogs.
-/// This template class that encapsulates a given Widget inside a
-/// DockWidget and presents a Dialog::View interface
-template<class Controller, class Widget>
-class DockView : public QDockWidget, public Dialog::View
+/**
+ * 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
 {
+       Q_OBJECT
+
 public:
-       DockView(
-               Dialog & dialog, ///< The (one) parent Dialog class.
-               Controller * form, ///< Associated model/controller
-               QMainWindow * parent, ///< the main window where to dock.
-               docstring const & title, ///< Window title (shown in the top title bar).
-               Qt::DockWidgetArea area = Qt::LeftDockWidgetArea, ///< Position of the dock (and also drawer)
-               Qt::WindowFlags flags = 0
-               )
-               : QDockWidget(toqstr(title), parent, flags), 
-                       Dialog::View(dialog, title)
-       {
-               if (flags & Qt::Drawer)
-                       setFeatures(QDockWidget::NoDockWidgetFeatures);
-               widget_.reset(new Widget(form));
-               setWidget(widget_.get());
-               parent->addDockWidget(area, this);
-       }
+       DockView(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);
+
+       virtual ~DockView() {}
 
-       /// Dialog::View inherited methods
+       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() {}
+
+       void keyPressEvent(QKeyEvent * ev);
+
+       /// Dialog inherited methods
        //@{
        void applyView() {}
-       void hideView() { QDockWidget::hide(); }
-       void showView() { QDockWidget::show(); }
-       bool isVisibleView() const { return QDockWidget::isVisible(); }
-       void redrawView() {}
-       void updateView()
-       {
-               widget_->update();
-               QDockWidget::update();
-       }
+       bool isClosing() const { return false; }
+       bool needBufferOpen() const { return false; }
        //@}
-private:
-       /// The encapsulated widget.
-       boost::scoped_ptr<Widget> widget_;
+
+protected Q_SLOTS:
+       void onBufferViewChanged() {} //override
 };
 
 } // frontend
 } // lyx
 
-#endif // TOC_WIDGET_H
+#endif // DOCK_VIEW_H