]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormTabularCreate.h
2002-07-02 Lars Gullik Bj�nnes <larsbj@birdstep.com>
[lyx.git] / src / frontends / xforms / FormTabularCreate.h
1 // -*- C++ -*-
2 /**
3  * \file xforms/FormTabularCreate.h
4  * Copyright 1995 Matthias Ettrich
5  * Copyright 1995-2001 the LyX Team
6  * Read the file COPYING
7  *
8  * \author Jürgen Vigna, jug@sad.it
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_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_tabular_create> > {
28 public:
29         ///
30         FormTabularCreate(ControlTabularCreate &, Dialogs &);
31 private:
32         /// Apply from dialog
33         virtual void apply();
34         /// Build the dialog
35         virtual void build();
36         /// not needed
37         virtual void update() {};
38 };
39
40 #endif // FORMTABULARCREATE