]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/DockView.h
do what the FIXME suggested
[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 "Dialog.h"
16 #include "GuiView.h"
17
18 #include <QDockWidget>
19
20 namespace lyx {
21 namespace frontend {
22
23 /// Dock Widget container for LyX dialogs.
24 /**
25  * This template class that encapsulates a given Widget inside a
26  * QDockWidget and presents a Dialog interface
27  * FIXME: create a DockView.cpp file
28  **/
29 class DockView : public QDockWidget, public Dialog
30 {
31 public:
32         DockView(
33                 GuiView & parent, ///< the main window where to dock.
34                 QString const & name, ///< dialog identifier.
35                 QString const & title, ///< dialog title.
36                 Qt::DockWidgetArea area = Qt::LeftDockWidgetArea, ///< Position of the dock (and also drawer)
37                 Qt::WindowFlags flags = 0
38         )
39                 : QDockWidget(&parent, flags), Dialog(parent, name, title)
40         {
41                 if (flags & Qt::Drawer)
42                         setFeatures(QDockWidget::NoDockWidgetFeatures);
43                 parent.addDockWidget(area, this);
44         }
45
46         virtual ~DockView() {}
47
48         virtual QWidget * asQWidget() { return this; }
49         virtual QWidget const * asQWidget() const { return this; }
50
51         /// Dialog inherited methods
52         //@{
53         void applyView() {}
54         bool isClosing() const { return false; }
55         //@}
56 };
57
58 } // frontend
59 } // lyx
60
61 #endif // DOCK_VIEW_H