]> git.lyx.org Git - lyx.git/blob - src/frontends/kde/tabcreatedlg.h
4657cd835783a451482c983c1819c34160a507a9
[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 "FormTabularCreate.h" 
13 #include "dlg/tabcreatedlgdata.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         virtual void closeEvent(QCloseEvent * e); 
28
29 private:
30         FormTabularCreate * form_;
31 };
32 #endif // TABCREATEDIALOG_H