]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormPrint.h
major GUII cleanup + Baruchs patch + Angus's patch + removed a couple of generated...
[lyx.git] / src / frontends / xforms / FormPrint.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  * 
5  *           LyX, The Document Processor
6  *       
7  *          Copyright 1995 Matthias Ettrich
8  *          Copyright 1995-2000 The LyX Team.
9  *
10  *          This file copyright 1999-2000
11  *          Allan Rae
12  *======================================================*/
13 /* FormPrint.h
14  * FormPrint Interface Class
15  */
16
17 #ifndef FORMPRINT_H
18 #define FORMPRINT_H
19
20 #include "DialogBase.h"
21 #include "support/utility.hpp"
22
23 #ifdef __GNUG__
24 #pragma interface
25 #endif
26
27 class LyXView;
28 class Dialogs;
29 struct FD_form_print;
30
31 #ifdef SIGC_CXX_NAMESPACES
32 using SigC::Connection;
33 #endif
34
35 /** This class provides an XForms implementation of the FormPrint Dialog.
36     The print dialog allows users to print their documents.
37  */
38 class FormPrint : public DialogBase, public noncopyable {
39 public:
40         /**@name Constructors and Destructors */
41         //@{
42         /// #FormPrint x(LyXFunc ..., Dialogs ...);#
43         FormPrint(LyXView *, Dialogs *);
44         ///
45         ~FormPrint();
46         //@}
47
48         /**@name Real per-instance Callback Methods */
49         //@{
50         static  int WMHideCB(FL_FORM *, void *);
51         static void OKCB(FL_OBJECT *, long);
52         static void ApplyCB(FL_OBJECT *, long);
53         static void CancelCB(FL_OBJECT *, long);
54         static void InputCB(FL_OBJECT *, long);
55         //@}
56
57 private:
58         /**@name Slot Methods */
59         //@{
60         /// Create the dialog if necessary, update it and display it.
61         void show();
62         /// Hide the dialog.
63         void hide();
64         /// Update the dialog.
65         void update();
66         //@}
67
68         /**@name Dialog internal methods */
69         //@{
70         /// Apply from dialog
71         void apply();
72         /// Filter the inputs
73         void input();
74         /// Build the dialog
75         void build();
76         ///
77         FD_form_print * build_print();
78         //@}
79
80         /**@name Private Data */
81         //@{
82         /// Real GUI implementation.
83         FD_form_print * dialog_;
84         /// Which LyXView do we belong to?
85         LyXView * lv_;
86         ///
87         Dialogs * d_;
88         /// Update connection.
89         Connection u_;
90         /// Hide connection.
91         Connection h_;
92         //@}
93 };
94
95 #endif