]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlGraphics.C
Add a buffer_path arg to InsetGraphicsMailer's params2string, string2params.
[lyx.git] / src / frontends / controllers / ControlGraphics.C
1 /**
2  * \file ControlGraphics.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Angus Leeming
7  * \author Herbert Voss
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #include <config.h>
13
14 #include "ControlGraphics.h"
15
16 #include "helper_funcs.h"
17
18 #include "buffer.h"
19 #include "BufferView.h"
20 #include "funcrequest.h"
21 #include "gettext.h"
22 #include "lyxrc.h"
23
24 #include "graphics/GraphicsCache.h"
25 #include "graphics/GraphicsCacheItem.h"
26 #include "graphics/GraphicsImage.h"
27
28 #include "insets/insetgraphics.h"
29 #include "insets/insetgraphicsParams.h"
30
31 #include "support/tostr.h"
32 #include "support/filetools.h"
33 #include "support/FileInfo.h"
34
35 using namespace lyx::support;
36
37 using std::pair;
38 using std::make_pair;
39 using std::vector;
40
41 // We need these in the file browser.
42 extern string system_lyxdir;
43 extern string user_lyxdir;
44
45
46 ControlGraphics::ControlGraphics(Dialog & parent)
47         : Dialog::Controller(parent)
48 {}
49
50
51 bool ControlGraphics::initialiseParams(string const & data)
52 {
53         string const bufpath = kernel().buffer()->filePath();
54         InsetGraphicsParams params;
55         InsetGraphicsMailer::string2params(data, bufpath, params);
56         params_.reset(new InsetGraphicsParams(params));
57         // make relative for good UI
58         params_->filename = MakeRelPath(params_->filename, bufpath);
59         return true;
60 }
61
62
63 void ControlGraphics::clearParams()
64 {
65         params_.reset();
66 }
67
68
69 void ControlGraphics::dispatchParams()
70 {
71         string const buffer_path = kernel().buffer()->filePath();
72         InsetGraphicsParams tmp_params(params());
73         // core requires absolute path during runtime
74         tmp_params.filename = MakeAbsPath(tmp_params.filename, buffer_path);
75         string const lfun =
76                 InsetGraphicsMailer::params2string(tmp_params, buffer_path);
77         kernel().dispatch(FuncRequest(LFUN_INSET_APPLY, lfun));
78 }
79
80
81 string const ControlGraphics::Browse(string const & in_name)
82 {
83         string const title = _("Select graphics file");
84
85         // Does user clipart directory exist?
86         string clipdir = AddName (user_lyxdir, "clipart");
87         FileInfo fileInfo(clipdir);
88         if (!(fileInfo.isOK() && fileInfo.isDir()))
89                 // No - bail out to system clipart directory
90                 clipdir = AddName (system_lyxdir, "clipart");
91         pair<string, string> dir1(_("Clipart|#C#c"), clipdir);
92         pair<string, string> dir2(_("Documents|#o#O"), string(lyxrc.document_path));
93         // Show the file browser dialog
94         return browseRelFile(in_name, kernel().buffer()->filePath(),
95                              title, "*.*", false, dir1, dir2);
96 }
97
98
99 string const ControlGraphics::readBB(string const & file)
100 {
101         string const abs_file =
102                 MakeAbsPath(file, kernel().buffer()->filePath());
103
104         // try to get it from the file, if possible. Zipped files are
105         // unzipped in the readBB_from_PSFile-Function
106         string const bb = readBB_from_PSFile(abs_file);
107         if (!bb.empty())
108                 return bb;
109
110         // we don't, so ask the Graphics Cache if it has loaded the file
111         int width = 0;
112         int height = 0;
113
114         lyx::graphics::Cache & gc = lyx::graphics::Cache::get();
115         if (gc.inCache(abs_file)) {
116                 lyx::graphics::Image const * image = gc.item(abs_file)->image();
117
118                 if (image) {
119                         width  = image->getWidth();
120                         height = image->getHeight();
121                 }
122         }
123
124         return ("0 0 " + tostr(width) + ' ' + tostr(height));
125 }
126
127
128 bool ControlGraphics::isFilenameValid(string const & fname) const
129 {
130         // It may be that the filename is relative.
131         string const name = MakeAbsPath(fname, kernel().buffer()->filePath());
132         return IsFileReadable(name);
133 }
134
135
136 namespace frnt {
137
138 namespace {
139
140 char const * const bb_units[] = { "bp", "cm", "mm", "in" };
141 size_t const bb_size = sizeof(bb_units) / sizeof(char *);
142
143 // These are the strings that are stored in the LyX file and which
144 // correspond to the LaTeX identifiers shown in the comments at the
145 // end of each line.
146 char const * const rorigin_lyx_strs[] = {
147         // the LaTeX default is leftBaseline
148         "",
149         "leftTop",  "leftBottom", "leftBaseline", // lt lb lB
150         "center", "centerTop", "centerBottom", "centerBaseline", // c ct cb cB
151         "rightTop", "rightBottom", "rightBaseline" }; // rt rb rB
152
153 // These are the strings, corresponding to the above, that the GUI should
154 // use. Note that they can/should be translated.
155 char const * const rorigin_gui_strs[] = {
156         N_("Default"),
157         N_("Top left"), N_("Bottom left"), N_("Left baseline"),
158         N_("Center"), N_("Top center"), N_("Bottom center"), N_("Center baseline"),
159         N_("Top right"), N_("Bottom right"), N_("Right baseline") };
160
161 size_t const rorigin_size = sizeof(rorigin_lyx_strs) / sizeof(char *);
162
163 } // namespace anon
164
165
166 vector<string> const getBBUnits()
167 {
168         return vector<string> (bb_units, bb_units + bb_size);
169 }
170
171
172 vector<RotationOriginPair> getRotationOriginData()
173 {
174         static vector<RotationOriginPair> data;
175         if (!data.empty())
176                 return data;
177
178         data.resize(rorigin_size);
179         for (lyx::size_type i = 0; i < rorigin_size; ++i) {
180                 data[i] = make_pair(_(rorigin_gui_strs[i]),
181                                     rorigin_lyx_strs[i]);
182         }
183
184         return data;
185 }
186
187 } // namespace frnt