]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/DockView.h
5dc8bf2e71f44aa3d3727d1b4207835fbf06da93
[lyx.git] / src / frontends / qt4 / DockView.h
1 // -*- C++ -*-
2 /**
3  * \file DockView.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Abdelrazak Younes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef DOCK_VIEW_H
13 #define DOCK_VIEW_H
14
15 #include "controllers/Dialog.h"
16 #include "qt_helpers.h"
17
18 #include <boost/scoped_ptr.hpp>
19
20 #include <QDockWidget>
21 #include <QMainWindow>
22
23 namespace lyx {
24 namespace frontend {
25
26 /// Dock Widget container for LyX dialogs.
27 /// This template class that encapsulates a given Widget inside a
28 /// DockWidget and presents a Dialog::View interface
29 template<class Controller, class Widget>
30 class DockView : public QDockWidget, public Dialog::View 
31 {
32 public:
33         DockView(
34                 Dialog & dialog, ///< The (one) parent Dialog class.
35                 Controller * form, ///< Associated model/controller
36                 QMainWindow * parent, ///< the main window where to dock.
37                 docstring const & title ///< Window title (shown in the top title bar).
38                 )
39                 : QDockWidget(toqstr(title), parent), Dialog::View(dialog, title)
40         {
41                 widget_.reset(new Widget(form));
42                 setWidget(widget_.get());
43                 parent->addDockWidget(Qt::LeftDockWidgetArea, this);
44         }
45
46         /// Dialog::View inherited methods
47         //@{
48         void apply() {}
49         void hide()     { QDockWidget::hide(); }
50         void show()     { QDockWidget::show(); }
51         bool isVisible() const  
52         { return QDockWidget::isVisible(); }
53         void redraw() {}
54         void update()
55         {
56                 widget_->update();
57                 QDockWidget::update();
58         }
59         //@}
60 private:
61         /// The encapsulated widget.
62         boost::scoped_ptr<Widget> widget_;
63 };
64
65 } // frontend
66 } // lyx
67
68 #endif // TOC_WIDGET_H