]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormTabular.h
remove defaults stuff, let Qt handle no toolbar
[lyx.git] / src / frontends / xforms / FormTabular.h
index f61ab85fe8c8f2274dd8b232c41a404233eaac9a..6ae27a26c1db8979fa4f3fb213b37e2f01ae741d 100644 (file)
 #ifndef FORMTABULAR_H
 #define FORMTABULAR_H
 
+#include "FormDialogView.h"
 #include <boost/scoped_ptr.hpp>
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-#include "FormInset.h"
-
 class InsetTabular;
+class ControlTabular;
 struct FD_tabular;
 struct FD_tabular_options;
 struct FD_tabular_column;
@@ -31,38 +27,29 @@ struct FD_tabular_longtable;
 /** This class provides an XForms implementation of the FormTabular Dialog.
     The tabular dialog allows users to set/save their tabular.
  */
-class FormTabular : public FormInset {
+class FormTabular
+       : public FormController<ControlTabular, FormView<FD_tabular> > {
 public:
-       /// #FormTabular x(LyXFunc ..., Dialogs ...);#
-       FormTabular(LyXView &, Dialogs &);
 
-       /// Slot launching dialog to an existing inset
-       void showInset(InsetTabular *);
-       /// Slot launching dialog to an existing inset
-       void updateInset(InsetTabular *);
+       FormTabular(Dialog &);
 
 private:
-       /// Pointer to the actual instantiation of the ButtonController.
-       virtual xformsBC & bc();
        /** Redraw the form (on receipt of a Signal indicating, for example,
            that the xforms colours have been re-mapped). */
        virtual void redraw();
-       /// Disconnect signals. Also perform any necessary housekeeping.
-       virtual void disconnect();
 
+       /// not used
+       virtual void apply() {}
        /// Update dialog before showing it
        virtual void update();
        /// Build the dialog
        virtual void build();
        /// Filter the inputs
-       virtual bool input(FL_OBJECT *, long);
-       /// Pointer to the actual instantiation of the xforms form
-       virtual FL_FORM * form() const;
+       virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
+
        ///
        virtual int checkLongtableOptions(FL_OBJECT *, string &);
 
-       /// Real GUI implementation.
-       boost::scoped_ptr<FD_tabular> dialog_;
        ///
        boost::scoped_ptr<FD_tabular_options> tabular_options_;
        ///
@@ -72,20 +59,11 @@ private:
        ///
        boost::scoped_ptr<FD_tabular_longtable> longtable_options_;
 
-       /// pointer to the inset passed through showInset
-       InsetTabular * inset_;
        ///
-       int actCell_;
-       /// The ButtonController
-       ButtonController<OkCancelReadOnlyPolicy, xformsBC> bc_;
-       /// if we are applying stuff during a close of the dialog
        bool closing_;
-};
 
+       ///
+       int actCell_;
+};
 
-inline
-xformsBC & FormTabular::bc()
-{
-       return bc_;
-}
-#endif
+#endif // FORMTABULAR_H