]> 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 30e336119fc462266f657ffcaa5657591ea7d2ab..621368bdfce306a13030d60d8152e33f5a8b5574 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>
-
-#include <boost/scoped_ptr.hpp>
-
-#include <string>
+#include <QKeyEvent>
 
 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
 {
+       Q_OBJECT
+
 public:
-       DockView(
-               GuiViewBase & parent, ///< the main window where to dock.
-               std::string 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(parent, title)
-       {
-               if (flags & Qt::Drawer)
-                       setFeatures(QDockWidget::NoDockWidgetFeatures);
-               MyController * controller = new MyController(*this);
-               setController(controller);
-               widget_.reset(new MyWidget(*controller));
-               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() {}
+
+       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_->updateView();
-               QDockWidget::update();
-       }
+       bool isClosing() const { return false; }
+       bool needBufferOpen() const { return false; }
        //@}
-private:
-       /// The encapsulated widget.
-       boost::scoped_ptr<MyWidget> widget_;
+
+protected Q_SLOTS:
+       void onBufferViewChanged() {} //override
 };
 
 } // frontend