]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/QTabularCreateDialog.h
enable Font cache only for MacOSX and inline width() for other platform.
[lyx.git] / src / frontends / qt4 / 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/QTabularCreateUi.h"
17
18 #include <QDialog>
19
20 namespace lyx {
21 namespace frontend {
22
23 class QTabularCreate;
24
25 class QTabularCreateDialog : public QDialog, public Ui::QTabularCreateUi {
26         Q_OBJECT
27 public:
28         QTabularCreateDialog(QTabularCreate * form);
29 protected Q_SLOTS:
30         virtual void columnsChanged(int);
31         virtual void rowsChanged(int);
32 private:
33         QTabularCreate * form_;
34 };
35
36 } // namespace frontend
37 } // namespace lyx
38
39 #endif // QTABULARCREATEDIALOG_H