]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/DockView.h
InsetListings: touch up the include dialog
[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                 Qt::DockWidgetArea area = Qt::LeftDockWidgetArea
39                 )
40                 : QDockWidget(toqstr(title), parent), Dialog::View(dialog, title)
41         {
42                 widget_.reset(new Widget(form));
43                 setWidget(widget_.get());
44                 parent->addDockWidget(area, this);
45         }
46
47         /// Dialog::View inherited methods
48         //@{
49         void apply() {}
50         void hide()     { QDockWidget::hide(); }
51         void show()     { QDockWidget::show(); }
52         bool isVisible() const  
53         { return QDockWidget::isVisible(); }
54         void redraw() {}
55         void update()
56         {
57                 widget_->update();
58                 QDockWidget::update();
59         }
60         //@}
61 private:
62         /// The encapsulated widget.
63         boost::scoped_ptr<Widget> widget_;
64 };
65
66 } // frontend
67 } // lyx
68
69 #endif // TOC_WIDGET_H