]> 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 5b2cdd7a96fa44185a95fc74b70a4f7a827ba7e6..621368bdfce306a13030d60d8152e33f5a8b5574 100644 (file)
@@ -16,6 +16,7 @@
 #include "GuiView.h"
 
 #include <QDockWidget>
+#include <QKeyEvent>
 
 namespace lyx {
 namespace frontend {
@@ -28,31 +29,36 @@ namespace frontend {
  **/
 class DockView : public QDockWidget, public Dialog
 {
+       Q_OBJECT
+
 public:
-       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
-       )
-               : QDockWidget(&parent, flags), Dialog(parent, name, title)
-       {
-               if (flags & Qt::Drawer)
-                       setFeatures(QDockWidget::NoDockWidgetFeatures);
-               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() {}
 
        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() {}
        bool isClosing() const { return false; }
+       bool needBufferOpen() const { return false; }
        //@}
+
+protected Q_SLOTS:
+       void onBufferViewChanged() {} //override
 };
 
 } // frontend