]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormToc.h
More pref work from Angus
[lyx.git] / src / frontends / xforms / FormToc.h
index 6825b212c9c18880a6e04e36a0d09409ddec2c0c..c8bf93d8c26922042e7703f7cd06a652d431906f 100644 (file)
 #pragma interface
 #endif
 
-#include "FormCommand.h"
+#include "FormInset.h"
+#include "buffer.h"
 struct FD_form_toc;
 
 /** This class provides an XForms implementation of the FormToc Dialog.
  */
 class FormToc : public FormCommand {
 public:
-       /**@name Constructors and Destructors */
-       //@{
        ///
        FormToc(LyXView *, Dialogs *);
        ///
        ~FormToc();
-
 private:
+       /// Disconnect signals. Also perform any necessary housekeeping.
+       virtual void disconnect();
+
        /// Build the dialog
        virtual void build();
-       /// Not used but must be instantiated
-       virtual void input( long ) {}
+       /// bool indicates if a buffer switch took place
+       virtual void updateSlot(bool) { update(); }
        /// Update dialog before showing it
        virtual void update();
        /// Apply from dialog (modify or create inset)
        virtual void apply();
-       /// delete derived class variables from hide()
-       virtual void clearStore();
        /// Pointer to the actual instantiation of the xform's form
-       virtual FL_FORM * const form() const;
+       virtual FL_FORM * form() const;
        ///
        void updateToc();
        ///
@@ -50,6 +49,8 @@ private:
 
        /// Real GUI implementation.
        FD_form_toc * dialog_;
+       ///
+       std::vector<Buffer::TocItem> toclist;
 };
 
 #endif