]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormPrint.h
merge booktabs branch
[lyx.git] / src / frontends / xforms / FormPrint.h
index 55417b75db23c6488a20856886f58c230bb59d6f..5a499b5366abd68d027be6f268878e0b7e6e8a5c 100644 (file)
@@ -1,68 +1,53 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2000 The LyX Team.
+/**
+ * \file FormPrint.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *         This file copyright 1999-2000
- *         Allan Rae
- *======================================================*/
-/* FormPrint.h
- * FormPrint Interface Class
+ * \author Allan Rae
+ * \author Angus Leeming
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef FORMPRINT_H
 #define FORMPRINT_H
 
-#include "FormBase.h"
+#include "FormDialogView.h"
 #include "RadioButtonGroup.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
+namespace lyx {
+namespace frontend {
 
-class LyXView;
-class Dialogs;
-struct FD_form_print;
+class ControlPrint;
+struct FD_print;
 
 /** This class provides an XForms implementation of the FormPrint Dialog.
     The print dialog allows users to print their documents.
  */
-class FormPrint : public FormBase {
+class FormPrint
+       : public FormController<ControlPrint, FormView<FD_print> > {
 public:
-       /// #FormPrint x(LyXView ..., Dialogs ...);#
-       FormPrint(LyXView *, Dialogs *);
        ///
-       ~FormPrint();
-
+       FormPrint(Dialog &);
 private:
-       /// Update the dialog.
-       virtual void update();
        /// Apply from dialog
        virtual void apply();
-       /// Filter the inputs
-       virtual bool input(long);
-       ///
-       virtual void connect();
-       /// Pointer to the actual instantiation of the xform's form
-       virtual FL_FORM * const 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);
 
-       ///
-       FD_form_print * build_print();
-       
-       /// Real GUI implementation.
-       FD_form_print * dialog_;
        /// print target
        RadioButtonGroup target_;
-       /// page order
-       RadioButtonGroup order_;
-       /// which pages
-       RadioButtonGroup which_;
+       /// all pages or from/to
+       RadioButtonGroup all_pages_;
 };
 
-#endif
+} // namespace frontend
+} // namespace lyx
+
+#endif // FORMPRINT_H