]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormTabularCreate.h
Change glob() API to accept a dir parameter.
[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 namespace lyx {
18 namespace frontend {
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 FormController<ControlTabularCreate, FormView<FD_tabular_create> > {
28 public:
29         ///
30         FormTabularCreate(Dialog &);
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 } // namespace frontend
41 } // namespace lyx
42
43 #endif // FORMTABULARCREATE