]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormTabularCreate.h
Yet more dialog tweaking from Rob.
[lyx.git] / src / frontends / xforms / FormTabularCreate.h
index 205dc180d1225d66cbb2e4efe8eb544c2704db93..672daa2a5b2e0b7c5909db5ad9dd2f8f0abf2873 100644 (file)
@@ -1,58 +1,42 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2000 The LyX Team.
+/**
+ * \file xforms/FormTabularCreate.h
+ * Copyright 1995 Matthias Ettrich
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *======================================================*/
-/* FormTabularCreate.h
- * FormTabularCreate Interface Class
+ * \author Jürgen Vigna
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef FORMTABULARCREATE_H
 #define FORMTABULARCREATE_H
 
-#include "FormBase.h"
-
 #ifdef __GNUG__
 #pragma interface
 #endif
 
-class LyXView;
-class Dialogs;
-struct FD_form_tabular_create;
+#include "FormBase.h"
+
+class ControlTabularCreate;
+struct FD_tabular_create;
 
-/** This class provides an XForms implementation of the FormTabularCreate
+/** This class provides an XForms implementation of the TabularCreate
     Dialog.
  */
-class FormTabularCreate : public FormBaseBD {
+class FormTabularCreate :
+       public FormCB<ControlTabularCreate, FormDB<FD_tabular_create> > {
 public:
-       /// #FormTabularCreate x(LyXView ..., Dialogs ...);#
-       FormTabularCreate(LyXView *, Dialogs *);
        ///
-       ~FormTabularCreate();
-
+       FormTabularCreate();
 private:
-       /// Connect signals etc.
-       virtual void connect();
-
        /// Apply from dialog
        virtual void apply();
-       /// Update dialog before showing it
-       virtual void update();
-       /// Pointer to the actual instantiation of the xform's form
-       virtual FL_FORM * form() const;
        /// Build the dialog
        virtual void build();
-
-       ///
-       FD_form_tabular_create * build_tabular_create();
-       
-       /// Real GUI implementation.
-       FD_form_tabular_create * dialog_;
+       /// not needed
+       virtual void update() {};
 };
 
-#endif
+#endif // FORMTABULARCREATE