]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormGraphics.h
35244c0ec4f45254500290381c8e894d1938deeb
[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 scale
46         static const int SCALE_MAXDIGITS = 3;
47         /// The maximum digits for the image width
48         static const int WIDTH_MAXDIGITS = 3;
49         /// The maximum digits for the image height
50         static const int HEIGHT_MAXDIGITS = 3;
51         /// The max characters in the rotation angle (minus sign and 3 digits)
52         static const int ROTATE_MAXCHARS = 4;
53         /// The maximum characters in a filename.
54         static const int FILENAME_MAXCHARS = 1024;
55
56         /// Verify that the input is correct. If not disable ok/apply buttons.
57         ButtonPolicy::SMInput checkInput();
58
59         /// Fdesign generated method
60         FD_form_graphics * build_graphics();
61
62 };
63
64
65 #endif  // FORMGRAPHICS_H