]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QERT.h
qtabular skeleton
[lyx.git] / src / frontends / qt2 / QERT.h
1 // -*- C++ -*-
2 /**
3  * \file QERT.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef QERT_H
13 #define QERT_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "Qt2Base.h"
20
21 class ControlERT;
22 class QERTDialog;
23
24 class QERT
25         : public Qt2CB<ControlERT, Qt2DB<QERTDialog> >
26 {
27 public:
28         friend class QERTDialog;
29
30         QERT();
31 private:
32         /// Apply changes
33         virtual void apply();
34         /// update
35         virtual void update_contents();
36         /// build the dialog
37         virtual void build_dialog();
38 };
39
40 #endif // QERT_H