]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QTabularCreateDialog.h
some tabular fixes for the problems reported by Helge
[lyx.git] / src / frontends / qt2 / QTabularCreateDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QTabularCreateDialog.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 Edwin Leuven
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef QTABULARCREATEDIALOG_H
14 #define QTABULARCREATEDIALOG_H
15
16 #include "ui/QTabularCreateDialogBase.h"
17
18 namespace lyx {
19 namespace frontend {
20
21 class QTabularCreate;
22
23 class QTabularCreateDialog : public QTabularCreateDialogBase {
24         Q_OBJECT
25 public:
26         QTabularCreateDialog(QTabularCreate * form);
27 protected slots:
28         virtual void columnsChanged(int);
29         virtual void rowsChanged(int);
30 private:
31         QTabularCreate * form_;
32 };
33
34 } // namespace frontend
35 } // namespace lyx
36
37 #endif // QTABULARCREATEDIALOG_H