]> git.lyx.org Git - lyx.git/blob - src/insets/Inset.cpp
cosmetics. mainly replace #include "dostring.h" by #include "strfwd.h"
[lyx.git] / src / insets / Inset.cpp
1 /**
2  * \file Inset.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alejandro Aguilar Sierra
7  * \author Jürgen Vigna
8  * \author Lars Gullik Bjønnes
9  * \author Matthias Ettrich
10  * \author André Pönitz
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #include <config.h>
16
17 #include "Inset.h"
18
19 #include "Buffer.h"
20 #include "BufferParams.h"
21 #include "BufferView.h"
22 #include "CoordCache.h"
23 #include "Cursor.h"
24 #include "debug.h"
25 #include "Dimension.h"
26 #include "DispatchResult.h"
27 #include "FuncRequest.h"
28 #include "FuncStatus.h"
29 #include "gettext.h"
30 #include "Text.h"
31 #include "TextClass.h"
32 #include "MetricsInfo.h"
33 #include "MetricsInfo.h"
34
35 #include "frontends/Painter.h"
36
37 #include "support/convert.h"
38
39 #include <boost/current_function.hpp>
40
41 #include <map>
42 #include <typeinfo>
43
44
45 namespace lyx {
46
47 class InsetName {
48 public:
49         InsetName(std::string const & n, InsetCode c)
50                 : name(n), code(c) {}
51         std::string name;
52         InsetCode code;
53 };
54
55
56 typedef std::map<std::string, InsetCode> TranslatorMap;
57
58
59 static TranslatorMap const build_translator()
60 {
61         InsetName const insetnames[] = {
62                 InsetName("toc", TOC_CODE),
63                 InsetName("quote", QUOTE_CODE),
64                 InsetName("ref", REF_CODE),
65                 InsetName("href", HYPERLINK_CODE),
66                 InsetName("separator", SEPARATOR_CODE),
67                 InsetName("ending", ENDING_CODE),
68                 InsetName("label", LABEL_CODE),
69                 InsetName("note", NOTE_CODE),
70                 InsetName("accent", ACCENT_CODE),
71                 InsetName("math", MATH_CODE),
72                 InsetName("index", INDEX_CODE),
73                 InsetName("nomenclature", NOMENCL_CODE),
74                 InsetName("include", INCLUDE_CODE),
75                 InsetName("graphics", GRAPHICS_CODE),
76                 InsetName("bibitem", BIBITEM_CODE),
77                 InsetName("bibtex", BIBTEX_CODE),
78                 InsetName("text", TEXT_CODE),
79                 InsetName("ert", ERT_CODE),
80                 InsetName("foot", FOOT_CODE),
81                 InsetName("margin", MARGIN_CODE),
82                 InsetName("float", FLOAT_CODE),
83                 InsetName("wrap", WRAP_CODE),
84                 InsetName("specialchar", SPECIALCHAR_CODE),
85                 InsetName("tabular", TABULAR_CODE),
86                 InsetName("external", EXTERNAL_CODE),
87                 InsetName("caption", CAPTION_CODE),
88                 InsetName("mathmacro", MATHMACRO_CODE),
89                 InsetName("citation", CITE_CODE),
90                 InsetName("floatlist", FLOAT_LIST_CODE),
91                 InsetName("index_print", INDEX_PRINT_CODE),
92                 InsetName("nomencl_print", NOMENCL_PRINT_CODE),
93                 InsetName("optarg", OPTARG_CODE),
94                 InsetName("environment", ENVIRONMENT_CODE),
95                 InsetName("hfill", HFILL_CODE),
96                 InsetName("newline", NEWLINE_CODE),
97                 InsetName("line", LINE_CODE),
98                 InsetName("branch", BRANCH_CODE),
99                 InsetName("box", BOX_CODE),
100                 InsetName("flex", FLEX_CODE),
101                 InsetName("vspace", VSPACE_CODE),
102                 InsetName("mathmacroarg", MATHMACROARG_CODE),
103                 InsetName("listings", LISTINGS_CODE),
104                 InsetName("info", INFO_CODE),
105                 InsetName("collapsable", COLLAPSABLE_CODE),
106                 InsetName("pagebreak", PAGEBREAK_CODE),
107         };
108
109         std::size_t const insetnames_size =
110                 sizeof(insetnames) / sizeof(insetnames[0]);
111
112         std::map<std::string, InsetCode> data;
113         for (std::size_t i = 0; i != insetnames_size; ++i) {
114                 InsetName const & var = insetnames[i];
115                 data[var.name] = var.code;
116         }
117
118         return data;
119 }
120
121
122 docstring Inset::name() const
123 {
124         return from_ascii("unknown");
125 }
126
127
128 Dimension const Inset::dimension(BufferView const & bv) const
129 {
130         return bv.coordCache().getInsets().dim(this);
131 }
132
133
134 InsetCode insetCode(std::string const & name)
135 {
136         static TranslatorMap const translator = build_translator();
137
138         TranslatorMap::const_iterator it = translator.find(name);
139         return it == translator.end() ? NO_CODE : it->second;
140 }
141
142
143 std::string insetName(InsetCode c) 
144 {
145         static TranslatorMap const translator = build_translator();
146
147         TranslatorMap::const_iterator it =  translator.begin();
148         TranslatorMap::const_iterator end = translator.end();
149         for (; it != end; ++it) {
150                 if (it->second == c)
151                         return it->first;
152         }
153         return std::string();
154 }
155
156
157 void Inset::dispatch(Cursor & cur, FuncRequest & cmd)
158 {
159         cur.updateFlags(Update::Force | Update::FitCursor);
160         cur.dispatched();
161         doDispatch(cur, cmd);
162 }
163
164
165 void Inset::doDispatch(Cursor & cur, FuncRequest &)
166 {
167         cur.noUpdate();
168         cur.undispatched();
169 }
170
171
172 bool Inset::getStatus(Cursor &, FuncRequest const & cmd,
173         FuncStatus & flag) const
174 {
175         // LFUN_INSET_APPLY is sent from the dialogs when the data should
176         // be applied. This is either changed to LFUN_INSET_MODIFY (if the
177         // dialog belongs to us) or LFUN_INSET_INSERT (if the dialog does
178         // not belong to us, i. e. the dialog was open, and the user moved
179         // the cursor in our inset) in LyXFunc::getStatus().
180         // Dialogs::checkStatus() ensures that the dialog is deactivated if
181         // LFUN_INSET_APPLY is disabled.
182
183         switch (cmd.action) {
184         case LFUN_INSET_MODIFY:
185                 // Allow modification of our data.
186                 // This needs to be handled in the doDispatch method of our
187                 // instantiatable children.
188                 flag.enabled(true);
189                 return true;
190
191         case LFUN_INSET_INSERT:
192                 // Don't allow insertion of new insets.
193                 // Every inset that wants to allow new insets from open
194                 // dialogs needs to override this.
195                 flag.enabled(false);
196                 return true;
197
198         default:
199                 return false;
200         }
201 }
202
203
204 void Inset::edit(Cursor &, bool)
205 {
206         LYXERR(Debug::INSETS) << BOOST_CURRENT_FUNCTION
207                               << ": edit left/right" << std::endl;
208 }
209
210
211 Inset * Inset::editXY(Cursor &, int x, int y)
212 {
213         LYXERR(Debug::INSETS) << BOOST_CURRENT_FUNCTION
214                               << ": x=" << x << " y= " << y
215                               << std::endl;
216         return this;
217 }
218
219
220 Inset::idx_type Inset::index(row_type row, col_type col) const
221 {
222         if (row != 0)
223                 lyxerr << BOOST_CURRENT_FUNCTION
224                        << ": illegal row: " << row << std::endl;
225         if (col != 0)
226                 lyxerr << BOOST_CURRENT_FUNCTION
227                        << ": illegal col: " << col << std::endl;
228         return 0;
229 }
230
231
232 bool Inset::idxBetween(idx_type idx, idx_type from, idx_type to) const
233 {
234         return from <= idx && idx <= to;
235 }
236
237
238 bool Inset::idxUpDown(Cursor &, bool) const
239 {
240         return false;
241 }
242
243
244 int Inset::docbook(Buffer const &,
245         odocstream &, OutputParams const &) const
246 {
247         return 0;
248 }
249
250
251 bool Inset::directWrite() const
252 {
253         return false;
254 }
255
256
257 Inset::EDITABLE Inset::editable() const
258 {
259         return NOT_EDITABLE;
260 }
261
262
263 bool Inset::autoDelete() const
264 {
265         return false;
266 }
267
268
269 docstring const Inset::editMessage() const
270 {
271         return _("Opened inset");
272 }
273
274
275 void Inset::cursorPos(BufferView const & /*bv*/, CursorSlice const &,
276                 bool, int & x, int & y) const
277 {
278         lyxerr << "Inset::cursorPos called directly" << std::endl;
279         x = 100;
280         y = 100;
281 }
282
283
284 void Inset::metricsMarkers(Dimension & dim, int framesize) const
285 {
286         dim.wid += 2 * framesize;
287         dim.des += framesize;
288 }
289
290
291 void Inset::metricsMarkers2(Dimension & dim, int framesize) const
292 {
293         dim.wid += 2 * framesize;
294         dim.asc += framesize;
295         dim.des += framesize;
296 }
297
298
299 void Inset::drawMarkers(PainterInfo & pi, int x, int y) const
300 {
301         ColorCode pen_color = mouseHovered() || editing(pi.base.bv)?
302                 Color_mathframe : Color_mathcorners;
303
304         Dimension const dim = dimension(*pi.base.bv);
305
306         int const t = x + dim.width() - 1;
307         int const d = y + dim.descent();
308         pi.pain.line(x, d - 3, x, d, pen_color);
309         pi.pain.line(t, d - 3, t, d, pen_color);
310         pi.pain.line(x, d, x + 3, d, pen_color);
311         pi.pain.line(t - 3, d, t, d, pen_color);
312         setPosCache(pi, x, y);
313 }
314
315
316 void Inset::drawMarkers2(PainterInfo & pi, int x, int y) const
317 {
318         ColorCode pen_color = mouseHovered() || editing(pi.base.bv)?
319                 Color_mathframe : Color_mathcorners;
320
321         drawMarkers(pi, x, y);
322         Dimension const dim = dimension(*pi.base.bv);
323         int const t = x + dim.width() - 1;
324         int const a = y - dim.ascent();
325         pi.pain.line(x, a + 3, x, a, pen_color);
326         pi.pain.line(t, a + 3, t, a, pen_color);
327         pi.pain.line(x, a, x + 3, a, pen_color);
328         pi.pain.line(t - 3, a, t, a, pen_color);
329         setPosCache(pi, x, y);
330 }
331
332
333 bool Inset::editing(BufferView * bv) const
334 {
335         return bv->cursor().isInside(this);
336 }
337
338
339 int Inset::xo(BufferView const & bv) const
340 {
341         return bv.coordCache().getInsets().x(this);
342 }
343
344
345 int Inset::yo(BufferView const & bv) const
346 {
347         return bv.coordCache().getInsets().y(this);
348 }
349
350
351 bool Inset::covers(BufferView const & bv, int x, int y) const
352 {
353         return bv.coordCache().getInsets().covers(this, x, y);
354 }
355
356
357 InsetLayout const & Inset::getLayout(BufferParams const & bp) const
358 {
359         return bp.getTextClass().insetlayout(name());  
360 }
361
362
363 void Inset::dump() const
364 {
365         Buffer buf("foo", 1);
366         write(buf, lyxerr);
367 }
368
369
370 ColorCode Inset::backgroundColor() const
371 {
372         return Color_background;
373 }
374
375
376 void Inset::setPosCache(PainterInfo const & pi, int x, int y) const
377 {
378         //lyxerr << "Inset:: position cache to " << x << " " << y << std::endl;
379         pi.base.bv->coordCache().insets().add(this, x, y);
380 }
381
382
383 void Inset::setDimCache(MetricsInfo const & mi, Dimension const & dim) const
384 {
385         mi.base.bv->coordCache().insets().add(this, dim);
386 }
387
388 } // namespace lyx