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