X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FDockView.h;h=5b2cdd7a96fa44185a95fc74b70a4f7a827ba7e6;hb=a500e629021cfe08c29a951a18623d02191d39ec;hp=c56ceea4a6a29e51979f63e2d0e0a31ff7e5abab;hpb=8dc0c09d72a74e46439fd6f33a3bc7b40d303fcc;p=lyx.git diff --git a/src/frontends/qt4/DockView.h b/src/frontends/qt4/DockView.h index c56ceea4a6..5b2cdd7a96 100644 --- a/src/frontends/qt4/DockView.h +++ b/src/frontends/qt4/DockView.h @@ -14,8 +14,6 @@ #include "Dialog.h" #include "GuiView.h" -#include "qt_helpers.h" -#include "debug.h" #include @@ -23,57 +21,38 @@ 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 -class DockView : public QDockWidget, public Dialog, public Controller +/** + * 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), Controller(this) + : QDockWidget(&parent, flags), Dialog(parent, name, title) { if (flags & Qt::Drawer) setFeatures(QDockWidget::NoDockWidgetFeatures); - setLyXView(parent); parent.addDockWidget(area, this); } virtual ~DockView() {} + virtual QWidget * asQWidget() { return this; } + virtual QWidget const * asQWidget() const { return this; } + /// Dialog inherited methods //@{ void applyView() {} - void hideView() { QDockWidget::hide(); } - void showData(std::string const & data) - { - initialiseParams(data); - showView(); - } - void showView() - { - 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) - { - initialiseParams(data); - updateView(); - } bool isClosing() const { return false; } - void partialUpdateView(int /*id*/) {} - Controller & controller() { return *this; } - std::string name() const { return name_; } //@} -private: - std::string name_; }; } // frontend