]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormGraphics.h
J�rgen Spitzm�ller's changes to the graphics dialog.
[lyx.git] / src / frontends / xforms / FormGraphics.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ====================================================== 
4  *
5  *           LyX, The Document Processor
6  *
7  *           Copyright 2000-2001 The LyX Team.
8  *
9  * ======================================================
10  *
11  * \file FormGraphics.h
12  * \author Baruch Even, baruch.even@writeme.com
13  */
14
15 #ifndef FORMGRAPHICS_H
16 #define FORMGRAPHICS_H
17
18 #ifdef __GNUG__
19 #pragma interface
20 #endif 
21
22 #include "FormBase.h"
23 #include "RadioButtonGroup.h"
24
25 class ControlGraphics;
26 struct FD_form_graphics;
27
28 /** This class provides an XForms implementation of the Graphics Dialog.
29  */
30 class FormGraphics : public FormCB<ControlGraphics, FormDB<FD_form_graphics> > {
31 public:
32         ///
33         FormGraphics(ControlGraphics &);
34
35 private:
36         /// Set the Params variable for the Controller.
37         virtual void apply();
38         /// Build the dialog.
39         virtual void build();
40         /// Update dialog before/whilst showing it.
41         virtual void update();
42         /// Filter the inputs on callback from xforms
43         virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
44
45         /// Verify that the input is correct. If not disable ok/apply buttons.
46         ButtonPolicy::SMInput checkInput();
47
48         /// Fdesign generated method
49         FD_form_graphics * build_graphics();
50 };
51
52
53 #endif  // FORMGRAPHICS_H