]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiTabularCreate.h
This is the last of a series of patches that merges the layout modules development...
[lyx.git] / src / frontends / qt4 / GuiTabularCreate.h
1 // -*- C++ -*-
2 /**
3  * \file GuiTabularCreate.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 GUITABULARCREATE_H
13 #define GUITABULARCREATE_H
14
15 #include "GuiDialog.h"
16 #include "ControlTabularCreate.h"
17 #include "ui_TabularCreateUi.h"
18
19 namespace lyx {
20 namespace frontend {
21
22 class GuiTabularCreateDialog : public GuiDialog, public Ui::TabularCreateUi
23 {
24         Q_OBJECT
25
26 public:
27         GuiTabularCreateDialog(LyXView & lv);
28
29 private Q_SLOTS:
30         void columnsChanged(int);
31         void rowsChanged(int);
32
33         /// parent controller
34         ControlTabularCreate & controller();
35
36 private:
37         /// Apply changes
38         void applyView();
39 };
40
41 } // namespace frontend
42 } // namespace lyx
43
44 #endif // GUITABULARCREATE_H