]> git.lyx.org Git - lyx.git/blob - src/frontends/kde/tabcreatedlg.h
Move LaTeX and VC logs to GUI-I on xforms
[lyx.git] / src / frontends / kde / tabcreatedlg.h
1 /*
2  * tabcreatedialog.h
3  * (C) 2000 LyX Team
4  * John Levon, moz@compsoc.man.ac.uk
5  */
6
7 #ifndef TABCREATEDIALOG_H
8 #define TABCREATEDIALOG_H
9
10 #include "dlg/tabcreatedlgdata.h"
11 #include "FormTabularCreate.h" 
12
13 class TabularCreateDialog : public TabularCreateDialogData
14 {
15     Q_OBJECT
16 public:
17         TabularCreateDialog (FormTabularCreate *form, QWidget* parent = 0, const char *name = 0);
18         virtual ~TabularCreateDialog();
19
20 protected slots:
21         virtual void clickedInsert();
22         virtual void clickedCancel();
23         virtual void colsChanged(unsigned int);
24         virtual void rowsChanged(unsigned int);
25
26 private:
27         FormTabularCreate *form_;
28 };
29 #endif