]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormTabularCreate.h
Bugfixes: checkboxes to radiobuttons (from J�rgen S) and remove a little
[lyx.git] / src / frontends / xforms / FormTabularCreate.h
index 205dc180d1225d66cbb2e4efe8eb544c2704db93..ab2811709f2fc15ee3f08cfd2c77495d156b4038 100644 (file)
@@ -5,54 +5,44 @@
  *           LyX, The Document Processor
  *      
  *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2000 The LyX Team.
+ *          Copyright 1995-2001 The LyX Team.
  *
- *======================================================*/
-/* FormTabularCreate.h
- * FormTabularCreate Interface Class
+ *======================================================
+ *
+ * \file FormTabularCreate.h
  */
 
 #ifndef FORMTABULARCREATE_H
 #define FORMTABULARCREATE_H
 
-#include "FormBase.h"
-
 #ifdef __GNUG__
 #pragma interface
 #endif
 
-class LyXView;
-class Dialogs;
+#include "FormBase.h"
+
+class ControlTabularCreate;
 struct FD_form_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_form_tabular_create> > {
 public:
-       /// #FormTabularCreate x(LyXView ..., Dialogs ...);#
-       FormTabularCreate(LyXView *, Dialogs *);
-       ///
-       ~FormTabularCreate();
+       /// 
+       FormTabularCreate(ControlTabularCreate &);
 
 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();
+       /// not needed
+       virtual void update() {};
 
        ///
        FD_form_tabular_create * build_tabular_create();
-       
-       /// Real GUI implementation.
-       FD_form_tabular_create * dialog_;
 };
 
-#endif
+#endif // FORMTABULARCREATE