]> 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 90afab616f55467c3040bfc124b01bfb5ff88c06..621368bdfce306a13030d60d8152e33f5a8b5574 100644 (file)
@@ -16,6 +16,7 @@
 #include "GuiView.h"
 
 #include <QDockWidget>
+#include <QKeyEvent>
 
 namespace lyx {
 namespace frontend {
@@ -28,20 +29,16 @@ 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)
-       {
-               setObjectName(name);
-               parent.addDockWidget(area, this);
-               hide();
-       }
+       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() {}
 
@@ -51,12 +48,17 @@ public:
        /// 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