]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormToc.h
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / FormToc.h
index 370c25baed568155cff898203a057c16968e95a6..7e55c9e2ab96d43ea86c24712461f71cfd6aac1a 100644 (file)
@@ -1,56 +1,47 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
+/**
+ * \file FormToc.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 FORMTOC_H
 #define FORMTOC_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-#include "FormInset.h"
-#include "buffer.h"
-struct FD_form_toc;
+#include "FormDialogView.h"
+#include "toc.h"
+
+class ControlToc;
+struct FD_toc;
 
 /** This class provides an XForms implementation of the FormToc Dialog.
  */
-class FormToc : public FormCommand {
+class FormToc : public FormController<ControlToc, FormView<FD_toc> > {
 public:
        ///
-       FormToc(LyXView *, Dialogs *);
-       ///
-       ~FormToc();
+       FormToc(Dialog &);
 private:
-       /// Disconnect signals. Also perform any necessary housekeeping.
-       virtual void disconnect();
-
+       /// not needed
+       virtual void apply() {}
        /// Build the dialog
        virtual void build();
-       /// bool indicates if a buffer switch took place
-       virtual void updateSlot(bool) { update(); }
        /// Update dialog before showing it
        virtual void update();
        /// Filter the inputs on callback from xforms
-       virtual bool input( FL_OBJECT *, long);
-       /// Pointer to the actual instantiation of the xform's form
-       virtual FL_FORM * form() const;
+       virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
+
        ///
-       void updateToc();
+       void updateType();
        ///
-       FD_form_toc * build_toc();
+       void updateContents();
 
-       /// Real GUI implementation.
-       FD_form_toc * dialog_;
        ///
-       std::vector<Buffer::TocItem> toclist;
+       lyx::toc::Toc toc_;
 };
 
-#endif
+#endif // FORMTOC_H