]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormPreamble.h
get rid of broken_header.h and some unneeded tests
[lyx.git] / src / frontends / xforms / FormPreamble.h
index 7f54cffd24eb3bcd2a02a9741e3bfae4ef20ba79..335a1746951b189a69742e5bbe8a0a4b5a9c8b8e 100644 (file)
@@ -1,60 +1,42 @@
 // -*- C++ -*-
 /**
  * \file FormPreamble.h
- * Copyright 2001 The LyX Team.
- * See the file COPYING.
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Edwin Leuven, leuven@fee.uva.nl
+ * \author Edwin Leuven
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef FORMPREAMBLE_H
 #define FORMPREAMBLE_H
 
-#include <boost/smart_ptr.hpp>
-#include "FormBaseDeprecated.h"
-#include "xformsBC.h"
+#include "FormDialogView.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
+namespace lyx {
+namespace frontend {
 
-struct FD_form_preamble;
+class ControlPreamble;
+struct FD_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 FormController<ControlPreamble, FormView<FD_preamble> > {
 public:
        ///
-       FormPreamble(LyXView *, Dialogs *);
+       FormPreamble(Dialog &);
 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;
-   
-       /// Typedefinitions from the fdesign produced Header file
-       FD_form_preamble  * build_preamble();
-   
-       /// Real GUI implementation.
-       boost::scoped_ptr<FD_form_preamble> dialog_;
-       /// The ButtonController
-       ButtonController<NoRepeatedApplyReadOnlyPolicy, xformsBC> bc_;
 };
 
+} // namespace frontend
+} // namespace lyx
 
-inline
-xformsBC & FormPreamble::bc()
-{
-  return bc_;
-}
-#endif
+#endif // FORMPREAMBLE_H