]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormIndex.h
Bugfixes: checkboxes to radiobuttons (from J�rgen S) and remove a little
[lyx.git] / src / frontends / xforms / FormIndex.h
index 10094679aa6833ba69b569df1e6baa3a8cfda19d..1a3fc3f53495f22a5ceacb9854c26f806c6f922f 100644 (file)
@@ -4,55 +4,43 @@
  *
  *           LyX, The Document Processor
  *
- *           Copyright 2000 The LyX Team.
+ *           Copyright 2000-2001 The LyX Team.
  *
  * ======================================================
+ *
+ * \file FormIndex.h
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #ifndef FORMINDEX_H
 #define FORMINDEX_H
 
-#include <boost/smart_ptr.hpp>
-#include "FormInset.h"
-#include "xformsBC.h"
-
 #ifdef __GNUG__
 #pragma interface
 #endif
 
+#include "FormBase.h"
+
+class ControlIndex;
 struct FD_form_index;
 
-/** This class provides an XForms implementation of the FormIndex Dialog.
+/** This class provides an XForms implementation of the Index Dialog.
  */
-class FormIndex : public FormCommand {
+class FormIndex : public FormCB<ControlIndex, FormDB<FD_form_index> > {
 public:
        ///
-       FormIndex(LyXView *, Dialogs *);
+       FormIndex(ControlIndex &);
+
 private:
-       /// Pointer to the actual instantiation of the ButtonController.
-       virtual xformsBC & bc();
-       /// Connect signals etc. Set form's max size.
-       virtual void connect();
-       /// Build the dialog
+       /// Set the Params variable for the Controller.
+       virtual void apply();
+       /// Build the dialog.
        virtual void build();
-       /// Update dialog before showing it
+       /// Update dialog before/whilst showing it.
        virtual void update();
-       /// Apply from dialog (modify or create inset)
-       virtual void apply();
-       /// Pointer to the actual instantiation of the xforms form
-       virtual FL_FORM * form() const;
-       ///
+
+       /// Fdesign generated method
        FD_form_index * build_index();
-       /// Real GUI implementation.
-       boost::scoped_ptr<FD_form_index> dialog_;
-       /// The ButtonController
-       ButtonController<NoRepeatedApplyReadOnlyPolicy, xformsBC> bc_;
 };
 
-
-inline
-xformsBC & FormIndex::bc()
-{
-       return bc_;
-}
-#endif
+#endif // FORMINDEX_H