]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormTabularCreate.h
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / FormTabularCreate.h
1 // -*- C++ -*-
2 /**
3  * \file FormTabularCreate.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in 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 #include "FormDialogView.h"
16
17 class ControlTabularCreate;
18 struct FD_tabular_create;
19
20 /** This class provides an XForms implementation of the TabularCreate
21     Dialog.
22  */
23 class FormTabularCreate :
24         public FormController<ControlTabularCreate, FormView<FD_tabular_create> > {
25 public:
26         ///
27         FormTabularCreate(Dialog &);
28 private:
29         /// Apply from dialog
30         virtual void apply();
31         /// Build the dialog
32         virtual void build();
33         /// not needed
34         virtual void update() {};
35 };
36
37 #endif // FORMTABULARCREATE