]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QTabularDialog.h
implement a little bit of tabular dialog
[lyx.git] / src / frontends / qt2 / QTabularDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QTabularDialog.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 QTABULARDIALOG_H
13 #define QTABULARDIALOG_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "ui/QTabularDialogBase.h"
20
21 class QTabular;
22
23 class QTabularDialog : public QTabularDialogBase {
24         Q_OBJECT
25 public:
26         QTabularDialog(QTabular * form);
27
28 protected slots:
29         virtual void change_adaptor();
30  
31         virtual void columnAppend_clicked();
32         virtual void rowAppend_clicked();
33         virtual void columnDelete_clicked(); 
34         virtual void rowDelete_clicked();
35  
36 protected:
37         virtual void closeEvent(QCloseEvent * e);
38  
39 private:
40         QTabular * form_;
41 };
42
43 #endif // QTABULARDIALOG_H