]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormPreamble.h
Bugfixes: checkboxes to radiobuttons (from J�rgen S) and remove a little
[lyx.git] / src / frontends / xforms / FormPreamble.h
index ee43a0a6e55e8687744a5e5a551a0e16656651f3..2efaf2118a3b10465734e6f37aac3ca2fc284b21 100644 (file)
 #ifndef FORMPREAMBLE_H
 #define FORMPREAMBLE_H
 
-#include <boost/smart_ptr.hpp>
-
 #ifdef __GNUG__
 #pragma interface
 #endif
 
-#include "FormBaseDeprecated.h"
+#include "FormBase.h"
 
+class ControlPreamble;
 struct FD_form_preamble;
 
-/** This class provides an XForms implementation of the FormPreamble Dialog.
+/** This class provides an XForms implementation of the Preamble Dialog.
  */
-class FormPreamble : public FormBaseBD {
+class FormPreamble : public FormCB<ControlPreamble, FormDB<FD_form_preamble> > {
 public:
        ///
-       FormPreamble(LyXView *, Dialogs *);
+       FormPreamble(ControlPreamble &);
 private:
-       /// Pointer to the actual instantiation of the ButtonController.
-       virtual xformsBC & bc();
-
-       /// Filter the inputs
-       // virtual bool input(FL_OBJECT *, long);
-   
-       /// Build the popup
-       virtual void build();
-       /// Apply from popup
+       /// Apply from dialog 
        virtual void apply();
-       /// Update the popup.
+       /// Build the dialog
+       virtual void build();
+       /// Update the dialog
        virtual void update();
-       ///
-       virtual FL_FORM * form() const;
    
        /// Fdesign generated method
        FD_form_preamble * build_preamble();
-   
-       /// Real GUI implementation.
-       boost::scoped_ptr<FD_form_preamble> dialog_;
-       /// The ButtonController
-       ButtonController<NoRepeatedApplyReadOnlyPolicy, xformsBC> bc_;
 };
 
 
-inline
-xformsBC & FormPreamble::bc()
-{
-  return bc_;
-}
-#endif
+#endif // FORMPREAMBLE_H