]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormGraphics.h
No longer pass Controller & or Dialogs & to the View c-tors.
[lyx.git] / src / frontends / xforms / FormGraphics.h
1 // -*- C++ -*-
2 /**
3  * \file FormGraphics.h
4  * Copyright 2000-2001 the LyX Team
5  * Read the file COPYING
6  *
7  * \author Baruch Even, baruch.even@writeme.com
8  * \author Herbert Voss, voss@lyx.org
9  */
10
11 #ifndef FORMGRAPHICS_H
12 #define FORMGRAPHICS_H
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #include "FormBase.h"
19 #include "RadioButtonGroup.h"
20
21 #include <boost/scoped_ptr.hpp>
22
23 #include <vector>
24
25 class ControlGraphics;
26 struct FD_graphics;
27 struct FD_graphics_file;
28 struct FD_graphics_lyxview;
29 struct FD_graphics_size;
30 struct FD_graphics_bbox;
31 struct FD_graphics_special;
32
33 /** This class provides an XForms implementation of the Graphics Dialog.
34  */
35 class FormGraphics : public FormCB<ControlGraphics, FormDB<FD_graphics> > {
36 public:
37         ///
38         FormGraphics();
39 private:
40
41         /** Redraw the form (on receipt of a Signal indicating, for example,
42             that the xforms colours have been re-mapped). */
43         virtual void redraw();
44         /// Set the Params variable for the Controller.
45         virtual void apply();
46         /// Build the dialog.
47         virtual void build();
48         /// Update dialog before/whilst showing it.
49         virtual void update();
50         /// Update the BoundingBox info.
51         void updateBB(string const & filename, string const & bb_inset);
52         /// Filter the inputs on callback from xforms
53         virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
54
55         /// Real GUI implementation.
56         boost::scoped_ptr<FD_graphics_file> file_;
57         ///
58         boost::scoped_ptr<FD_graphics_lyxview> lyxview_;
59         ///
60         boost::scoped_ptr<FD_graphics_size> size_;
61         ///
62         boost::scoped_ptr<FD_graphics_bbox> bbox_;
63         ///
64         boost::scoped_ptr<FD_graphics_special> special_;
65
66         /// Store the LaTeX names for the rotation origins.
67         std::vector<string> origins_;
68 };
69
70 #endif  // FORMGRAPHICS_H