]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormTabularCreate.h
Really dull and boring header shit
[lyx.git] / src / frontends / xforms / FormTabularCreate.h
1 // -*- C++ -*-
2 /**
3  * \file xforms/FormTabularCreate.h
4  * Copyright 1995 Matthias Ettrich
5  * Read the file COPYING
6  *
7  * \author Jürgen Vigna
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef FORMTABULARCREATE_H
13 #define FORMTABULARCREATE_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "FormBase.h"
20
21 class ControlTabularCreate;
22 struct FD_tabular_create;
23
24 /** This class provides an XForms implementation of the TabularCreate
25     Dialog.
26  */
27 class FormTabularCreate :
28         public FormCB<ControlTabularCreate, FormDB<FD_tabular_create> > {
29 public:
30         ///
31         FormTabularCreate();
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 #endif // FORMTABULARCREATE