]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormGraphics.h
some mods I had in my local tree, mostly small stuff, perhaps minus the the Makefile...
[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         /// The maximum digits for the image width (cm, inch, percent)
46         enum {
47             ///
48             WIDTH_MAXDIGITS = 3
49         };
50         /// The maximum digits for the image height (cm, inch, percent)
51         enum {
52             ///
53             HEIGHT_MAXDIGITS = 3
54         };
55         /// The maximum characters in the rotation angle (minus sign and 3 digits)
56         enum {
57             ///
58             ROTATE_MAXCHARS = 4
59         };
60         /// The maximum characters in a filename.
61         enum {
62             ///
63             FILENAME_MAXCHARS = 1024
64         };
65         ///
66         enum State {
67                 ///
68                 CHECKINPUT,
69                 ///
70                 BROWSE,
71                 ///
72                 ADVANCEDINPUT
73         };
74
75         /// Verify that the input is correct. If not disable ok/apply buttons.
76         ButtonPolicy::SMInput checkInput();
77
78         /// Fdesign generated method
79         FD_form_graphics * build_graphics();
80
81         /// The radio buttons groups
82         RadioButtonGroup widthButtons;
83         ///
84         RadioButtonGroup heightButtons;
85         ///
86         RadioButtonGroup displayButtons;
87         /// Last used figure path
88         string last_image_path;
89 };
90
91
92 #endif  // FORMGRAPHICS_H