X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FDockView.h;h=bb456d9b5deea53ebf93641146ea0c936db7a5bd;hb=425d092204118ea6c24c28e85fdf03fcf2bb51a4;hp=c94f9a685bcc7baa8824361d3c4cf1331816dfe6;hpb=6bb94129d8a5e087642458eb098c09c54c3c425e;p=lyx.git diff --git a/src/frontends/qt4/DockView.h b/src/frontends/qt4/DockView.h index c94f9a685b..bb456d9b5d 100644 --- a/src/frontends/qt4/DockView.h +++ b/src/frontends/qt4/DockView.h @@ -31,16 +31,18 @@ class DockView : public QDockWidget, public Dialog public: DockView( GuiView & parent, ///< the main window where to dock. - std::string const & name, ///< dialog identifier. + 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); if (flags & Qt::Drawer) setFeatures(QDockWidget::NoDockWidgetFeatures); parent.addDockWidget(area, this); + hide(); } virtual ~DockView() {} @@ -48,6 +50,9 @@ public: 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() {} + /// Dialog inherited methods //@{ void applyView() {}