source: trunk/FACT++/gui/DockWindow.h@ 10395

Last change on this file since 10395 was 10394, checked in by tbretz, 14 years ago
First version of the GUI.
File size: 403 bytes
Line 
1#ifndef FACT_DockWindow
2#define FACT_DockWindow
3
4#include <QtGui/QMainWindow>
5
6class QDockWidget;
7class QTabWidget;
8class QCloseEvent;
9
10class DockWindow : public QMainWindow
11{
12 Q_OBJECT;
13
14 QDockWidget *fDockWidget;
15 QTabWidget *fTabWidget;
16 const QRect fGeometry;
17
18public:
19
20 DockWindow(QDockWidget *d, const QString &name);
21
22protected:
23 void closeEvent(QCloseEvent *);
24};
25
26#endif
Note: See TracBrowser for help on using the repository browser.