]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormTabularCreate.h
implement getLabelList
[lyx.git] / src / frontends / xforms / FormTabularCreate.h
1 /* This file is part of
2  * ======================================================
3  * 
4  *           LyX, The Document Processor
5  *       
6  *          Copyright 1995 Matthias Ettrich
7  *          Copyright 1995-2001 The LyX Team.
8  *
9  *======================================================
10  *
11  * \file FormTabularCreate.h
12  */
13
14 #ifndef FORMTABULARCREATE_H
15 #define FORMTABULARCREATE_H
16
17 #ifdef __GNUG__
18 #pragma interface
19 #endif
20
21 #include "FormBase.h"
22
23 class ControlTabularCreate;
24 struct FD_form_tabular_create;
25
26 /** This class provides an XForms implementation of the TabularCreate
27     Dialog.
28  */
29 class FormTabularCreate :
30         public FormCB<ControlTabularCreate, FormDB<FD_form_tabular_create> > {
31 public:
32         /// 
33         FormTabularCreate(ControlTabularCreate &);
34
35 private:
36         /// Apply from dialog
37         virtual void apply();
38         /// Build the dialog
39         virtual void build();
40         /// not needed
41         virtual void update() {};
42
43         ///
44         FD_form_tabular_create * build_tabular_create();
45 };
46
47 #endif // FORMTABULARCREATE