]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormIndex.h
fix crash with "save as"
[lyx.git] / src / frontends / xforms / FormIndex.h
index b772ed17cad7e6eb2e5c150dec3e7d8b2ce86bd8..a9e8682e60846d4fe9ed1060a9a7a46c4c2b1cac 100644 (file)
@@ -1,58 +1,39 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
+/**
+ * \file xforms/FormIndex.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Angus Leeming 
  *
- *           Copyright 2000 The LyX Team.
- *
- * ======================================================
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef FORMINDEX_H
 #define FORMINDEX_H
 
-#include <boost/smart_ptr.hpp>
-
 #ifdef __GNUG__
 #pragma interface
 #endif
 
-#include "FormInset.h"
+#include "FormBase.h"
 
-struct FD_form_index;
+class ControlIndex;
+struct FD_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_index> > {
 public:
        ///
-       FormIndex(LyXView *, Dialogs *);
+       FormIndex();
 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;
-       ///
-       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