]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/tabularcreatedlgimpl.h
implement getLabelList
[lyx.git] / src / frontends / qt2 / tabularcreatedlgimpl.h
1 /**
2  * \file tabularcreatedlgimpl.h
3  * Copyright 2001 LyX Team
4  * see the file COPYING
5  *
6  * \author John Levon, moz@compsoc.man.ac.uk
7  * \author Edwin Leuven, leuven@fee.uva.nl
8  */
9
10 #ifndef TABULARCREATEDLGIMPL_H
11 #define TABULARCREATEDLGIMPL_H
12 #include "tabularcreatedlg.h"
13
14 class FormTabularCreate;
15
16 class TabularCreateDlgImpl : public InsertTabularDlg
17
18     Q_OBJECT
19
20 public:
21     TabularCreateDlgImpl(FormTabularCreate *form, QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
22     ~TabularCreateDlgImpl();
23
24 protected slots:
25    void insert_tabular();
26    void cancel_adaptor();
27    virtual void colsChanged(int);
28    virtual void rowsChanged(int);
29    
30 private:
31    FormTabularCreate * form_;
32 };
33
34 #endif // TABULARCREATEDLGIMPL_H