]> git.lyx.org Git - lyx.git/blob - src/frontends/kde/tabcreatedlg.h
try this for distinguishing inner and outer tabs
[lyx.git] / src / frontends / kde / tabcreatedlg.h
1 /**
2  * \file tabcreatedlg.h
3  * Copyright 2001 the LyX Team
4  * Read the file COPYING
5  *
6  * \author John Levon
7  */
8
9 #ifndef TABCREATEDIALOG_H
10 #define TABCREATEDIALOG_H
11
12 #include "dlg/tabcreatedlgdata.h"
13 #include "FormTabularCreate.h" 
14
15 class TabularCreateDialog : public TabularCreateDialogData
16 {
17         Q_OBJECT
18 public:
19         TabularCreateDialog (FormTabularCreate * form, QWidget * parent = 0, char const * name = 0);
20         virtual ~TabularCreateDialog();
21
22 protected slots:
23         virtual void clickedInsert();
24         virtual void clickedCancel();
25         virtual void colsChanged(unsigned int);
26         virtual void rowsChanged(unsigned int);
27
28 private:
29         FormTabularCreate * form_;
30 };
31 #endif // TABCREATEDIALOG_H