]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QTabularCreateDialog.h
better selection and scrolling behaviour
[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 #ifdef __GNUG__
17 #pragma interface
18 #endif
19
20 #include "ui/QTabularCreateDialogBase.h"
21
22 class QTabularCreate;
23
24 class QTabularCreateDialog : public QTabularCreateDialogBase {
25         Q_OBJECT
26 public:
27         QTabularCreateDialog(QTabularCreate * form);
28 protected slots:
29         virtual void columnsChanged(int);
30         virtual void rowsChanged(int);
31 private:
32         QTabularCreate * form_;
33 };
34
35 #endif // QTABULARCREATEDIALOG_H