]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlGraphics.h
9387bfd2f700bcd55be704a502d25a4fc51eadec
[lyx.git] / src / frontends / controllers / ControlGraphics.h
1 // -*- C++ -*-
2 /**
3  * \file ControlGraphics.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Baruch Even
8  * \author Angus Leeming
9  * \author Herbert Voss
10  *
11  * Full author contact details are available in file CREDITS
12  */
13
14 #ifndef CONTROLGRAPHICS_H
15 #define CONTROLGRAPHICS_H
16
17 #ifdef __GNUG__
18 #pragma interface
19 #endif
20
21 #include "ControlInset.h"
22
23 // needed to instatiate inset->hideDialog in ControlInset
24 #include "insets/insetgraphics.h"
25
26 #include <utility>
27 #include <vector>
28
29 class InsetGraphics;
30 class InsetGraphicsParams;
31 class LyXView;
32
33 /** A controller for Graphics dialogs.
34  */
35 class ControlGraphics
36         : public ControlInset<InsetGraphics, InsetGraphicsParams> {
37 public:
38         ///
39         ControlGraphics(LyXView &, Dialogs &);
40
41         /// Browse for a file
42         string const Browse(string const &);
43         /// Read the Bounding Box from a eps or ps-file
44         string const readBB(string const & file);
45         /// Control the bb
46         bool bbChanged;
47         /// test if file exist
48         bool isFilenameValid(string const & fname) const;
49
50 private:
51         /// Dispatch the changed parameters to the kernel.
52         virtual void applyParamsToInset();
53         ///
54         virtual void applyParamsNoInset();
55         /// get the parameters from the string passed to createInset.
56         virtual InsetGraphicsParams const getParams(string const &);
57         /// get the parameters from the inset passed to showInset.
58         virtual InsetGraphicsParams const getParams(InsetGraphics const &);
59 };
60
61 namespace frnt {
62
63 /// The (tranlated) GUI string and it's LaTeX equivalent.
64 typedef std::pair<string, string> RotationOriginPair;
65 ///
66 std::vector<RotationOriginPair> getRotationOriginData();
67
68 } // namespace frnt
69
70 #endif // CONTROLGRAPHICS_H