]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QTabular.h
dont use pragma impementation and interface anymore
[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  * \author Juergen Spitzmueller
10  * \author Herbert Voss
11  *
12  * Full author contact details are available in file CREDITS
13  */
14
15 #ifndef QTABULAR_H
16 #define QTABULAR_H
17
18
19 #include "Qt2Base.h"
20
21 class ControlTabular;
22 class QTabularDialog;
23
24
25 class QTabular :
26         public Qt2CB<ControlTabular, Qt2DB<QTabularDialog> >
27 {
28 public:
29         friend class QTabularDialog;
30
31         QTabular();
32
33 protected:
34         virtual bool isValid();
35
36 private:
37         /// We can't use this ...
38         virtual void apply() {}
39         /// update borders
40         virtual void update_borders();
41         /// update
42         virtual void update_contents();
43         /// build the dialog
44         virtual void build_dialog();
45         /// save some values before closing the gui
46         virtual void closeGUI();
47 };
48
49 #endif // QTABULAR_H