]> 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 7c3207391ff085b26f6d40a8e9c0fc96ad112b33..1a3fc3f53495f22a5ceacb9854c26f806c6f922f 100644 (file)
@@ -4,9 +4,12 @@
  *
  *           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
 #pragma interface
 #endif
 
-#include "FormInset.h"
+#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();
+       FormIndex(ControlIndex &);
+
 private:
-       /// Build the dialog
-       virtual void build();
-       /// Update dialog before showing it
-       virtual void update(bool switched = false);
-       /// Apply from dialog (modify or create inset)
+       /// Set the Params variable for the Controller.
        virtual void apply();
-       /// Pointer to the actual instantiation of the xform's form
-       virtual FL_FORM * form() const;
-       ///
+       /// Build the dialog.
+       virtual void build();
+       /// Update dialog before/whilst showing it.
+       virtual void update();
+
+       /// Fdesign generated method
        FD_form_index * build_index();
-       /// 
-       int minh;
-       ///
-       int minw;
-       /// Real GUI implementation.
-       FD_form_index * dialog_;
 };
 
-#endif
+#endif // FORMINDEX_H