]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormTabularCreate.h
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / FormTabularCreate.h
index ab2811709f2fc15ee3f08cfd2c77495d156b4038..4cb7343735255c62dc38c4db1f91cd204c6b9055 100644 (file)
@@ -1,38 +1,30 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2001 The LyX Team.
+/**
+ * \file FormTabularCreate.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *======================================================
+ * \author Jürgen Vigna
  *
- * \file FormTabularCreate.h
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef FORMTABULARCREATE_H
 #define FORMTABULARCREATE_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-#include "FormBase.h"
+#include "FormDialogView.h"
 
 class ControlTabularCreate;
-struct FD_form_tabular_create;
+struct FD_tabular_create;
 
 /** This class provides an XForms implementation of the TabularCreate
     Dialog.
  */
 class FormTabularCreate :
-       public FormCB<ControlTabularCreate, FormDB<FD_form_tabular_create> > {
+       public FormController<ControlTabularCreate, FormView<FD_tabular_create> > {
 public:
-       /// 
-       FormTabularCreate(ControlTabularCreate &);
-
+       ///
+       FormTabularCreate(Dialog &);
 private:
        /// Apply from dialog
        virtual void apply();
@@ -40,9 +32,6 @@ private:
        virtual void build();
        /// not needed
        virtual void update() {};
-
-       ///
-       FD_form_tabular_create * build_tabular_create();
 };
 
 #endif // FORMTABULARCREATE