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