]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormPrint.h
Bugfixes: checkboxes to radiobuttons (from J�rgen S) and remove a little
[lyx.git] / src / frontends / xforms / FormPrint.h
index 28acdcc4ca3fc2720dac563a14b001b010debb8c..8f68ba2727fb113392178314bb9a1af516076191 100644 (file)
@@ -5,56 +5,53 @@
  *           LyX, The Document Processor
  *      
  *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2000 The LyX Team.
+ *          Copyright 1995-2001 The LyX Team.
  *
- *         This file copyright 1999-2000
+ *         This file copyright 1999-2001
  *         Allan Rae
- *======================================================*/
-/* FormPrint.h
- * FormPrint Interface Class
+ *======================================================
+ *
+ * \file FormPrint.h
+ * \author Allan Rae, rae@lyx.org
+ * \author Angus Leeming, a.leeming@.ac.uk
  */
 
 #ifndef FORMPRINT_H
 #define FORMPRINT_H
 
-#include "FormBase.h"
-#include "RadioButtonGroup.h"
+#include <boost/smart_ptr.hpp>
 
 #ifdef __GNUG__
 #pragma interface
 #endif
 
-class LyXView;
-class Dialogs;
+#include "FormBase.h"
+#include "RadioButtonGroup.h"
+
+class ControlPrint;
 struct FD_form_print;
 
 /** This class provides an XForms implementation of the FormPrint Dialog.
     The print dialog allows users to print their documents.
  */
-class FormPrint : public FormBaseBD {
+class FormPrint : public FormCB<ControlPrint, FormDB<FD_form_print> > {
 public:
-       /// #FormPrint x(LyXView ..., Dialogs ...);#
-       FormPrint(LyXView *, Dialogs *);
-       ///
-       ~FormPrint();
+       /// 
+       FormPrint(ControlPrint &);
 
 private:
-       /// Update the dialog.
-       virtual void update(bool switched = false);
        /// Apply from dialog
        virtual void apply();
-       /// Filter the inputs
-       virtual bool input(FL_OBJECT *, long);
-       /// Pointer to the actual instantiation of the xform's form
-       virtual FL_FORM * form() const;
        /// Build the dialog
        virtual void build();
+       /// Update the dialog.
+       virtual void update();
+       /// Filter the inputs on callback from xforms
+       virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
 
-       ///
+       /// Fdesign generated method
        FD_form_print * build_print();
-       
-       /// Real GUI implementation.
-       FD_form_print * dialog_;
+
        /// print target
        RadioButtonGroup target_;
        /// page order
@@ -63,4 +60,4 @@ private:
        RadioButtonGroup which_;
 };
 
-#endif
+#endif // FORMPRINT_H