]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QTabular.h
qtabular skeleton
[lyx.git] / src / frontends / qt2 / QTabular.h
1 // -*- C++ -*-
2 /**
3  * \file QTabular.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  * \author Kalle Dalheimer
9  *
10  * Full author contact details are available in file CREDITS
11  */
12
13 #ifndef QTABULAR_H
14 #define QTABULAR_H
15
16 #ifdef __GNUG__
17 #pragma interface
18 #endif
19
20 #include "Qt2Base.h"
21
22 class ControlTabular;
23 class QTabularDialog;
24
25
26 class QTabular :
27         public Qt2CB<ControlTabular, Qt2DB<QTabularDialog> >
28 {
29 public:
30         friend class QTabularDialog;
31
32         QTabular();
33  
34 protected:
35         virtual bool isValid();
36  
37 private:
38         /// We can't use this ...
39         virtual void apply() {}
40         /// update
41         virtual void update_contents();
42         /// build the dialog
43         virtual void build_dialog();
44 };
45
46 #endif // QTABULAR_H