]> git.lyx.org Git - features.git/blob - src/frontends/kde/tabcreatedlg.h
06beb8801e814af5ccd1f548af119ead7b87b347
[features.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 // FIXME: closeEvent
16  
17 class TabularCreateDialog : public TabularCreateDialogData
18 {
19         Q_OBJECT
20 public:
21         TabularCreateDialog (FormTabularCreate * form, QWidget * parent = 0, char const * name = 0);
22         virtual ~TabularCreateDialog();
23
24 protected slots:
25         virtual void clickedInsert();
26         virtual void clickedCancel();
27         virtual void colsChanged(unsigned int);
28         virtual void rowsChanged(unsigned int);
29
30 private:
31         FormTabularCreate * form_;
32 };
33 #endif // TABCREATEDIALOG_H