]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormTabularCreate.h
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / xforms / FormTabularCreate.h
index a16ed11fc21ee54996c84546c0a2278e093f7772..61f64dde2c3aed268c424d05a046fc947758f064 100644 (file)
@@ -1,34 +1,33 @@
 // -*- C++ -*-
 /**
- * \file xforms/FormTabularCreate.h
- * Copyright 1995 Matthias Ettrich
- * Copyright 1995-2001 the LyX Team
- * Read the file COPYING
+ * \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, jug@sad.it
+ * \author Jürgen Vigna
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef FORMTABULARCREATE_H
 #define FORMTABULARCREATE_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
+#include "FormDialogView.h"
 
-#include "FormBase.h"
+namespace lyx {
+namespace frontend {
 
 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();
@@ -36,9 +35,9 @@ private:
        virtual void build();
        /// not needed
        virtual void update() {};
-
-       ///
-       FD_form_tabular_create * build_tabular_create();
 };
 
+} // namespace frontend
+} // namespace lyx
+
 #endif // FORMTABULARCREATE