]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormTabularCreate.h
remove defaults stuff, let Qt handle no toolbar
[lyx.git] / src / frontends / xforms / FormTabularCreate.h
1 // -*- C++ -*-
2 /**
3  * \file FormTabularCreate.h
4  * Copyright 1995 Matthias Ettrich
5  * This file is part of LyX, the document processor.
6  * Licence details can be found in the file COPYING.
7  *
8  * \author Jürgen Vigna
9  *
10  * Full author contact details are available in file CREDITS
11  */
12
13 #ifndef FORMTABULARCREATE_H
14 #define FORMTABULARCREATE_H
15
16 #include "FormDialogView.h"
17
18 class ControlTabularCreate;
19 struct FD_tabular_create;
20
21 /** This class provides an XForms implementation of the TabularCreate
22     Dialog.
23  */
24 class FormTabularCreate :
25         public FormController<ControlTabularCreate, FormView<FD_tabular_create> > {
26 public:
27         ///
28         FormTabularCreate(Dialog &);
29 private:
30         /// Apply from dialog
31         virtual void apply();
32         /// Build the dialog
33         virtual void build();
34         /// not needed
35         virtual void update() {};
36 };
37
38 #endif // FORMTABULARCREATE