]> git.lyx.org Git - lyx.git/blob - src/insets/Inset.cpp
fix http://bugzilla.lyx.org/show_bug.cgi?id=4998
[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_funcs.h"
20 #include "Buffer.h"
21 #include "BufferList.h"
22 #include "BufferParams.h"
23 #include "BufferView.h"
24 #include "CoordCache.h"
25 #include "Cursor.h"
26 #include "Dimension.h"
27 #include "DispatchResult.h"
28 #include "FuncRequest.h"
29 #include "FuncStatus.h"
30 #include "MetricsInfo.h"
31 #include "Text.h"
32 #include "TextClass.h"
33
34 #include "frontends/Application.h"
35 #include "frontends/Painter.h"
36
37 #include "support/convert.h"
38 #include "support/debug.h"
39 #include "support/docstream.h"
40 #include "support/ExceptionMessage.h"
41 #include "support/gettext.h"
42 #include "support/lassert.h"
43
44 #include <map>
45
46 using namespace std;
47 using namespace lyx::support;
48
49 namespace lyx {
50
51 class InsetName {
52 public:
53         InsetName(string const & n, InsetCode c) : name(n), code(c) {}
54         string name;
55         InsetCode code;
56 };
57
58
59 typedef map<string, InsetCode> TranslatorMap;
60
61
62 static TranslatorMap const build_translator()
63 {
64         InsetName const insetnames[] = {
65                 InsetName("toc", TOC_CODE),
66                 InsetName("quote", QUOTE_CODE),
67                 InsetName("ref", REF_CODE),
68                 InsetName("href", HYPERLINK_CODE),
69                 InsetName("separator", SEPARATOR_CODE),
70                 InsetName("ending", ENDING_CODE),
71                 InsetName("label", LABEL_CODE),
72                 InsetName("note", NOTE_CODE),
73                 InsetName("accent", ACCENT_CODE),
74                 InsetName("math", MATH_CODE),
75                 InsetName("index", INDEX_CODE),
76                 InsetName("nomenclature", NOMENCL_CODE),
77                 InsetName("include", INCLUDE_CODE),
78                 InsetName("graphics", GRAPHICS_CODE),
79                 InsetName("bibitem", BIBITEM_CODE),
80                 InsetName("bibtex", BIBTEX_CODE),
81                 InsetName("text", TEXT_CODE),
82                 InsetName("ert", ERT_CODE),
83                 InsetName("foot", FOOT_CODE),
84                 InsetName("margin", MARGIN_CODE),
85                 InsetName("float", FLOAT_CODE),
86                 InsetName("wrap", WRAP_CODE),
87                 InsetName("specialchar", SPECIALCHAR_CODE),
88                 InsetName("tabular", TABULAR_CODE),
89                 InsetName("external", EXTERNAL_CODE),
90                 InsetName("caption", CAPTION_CODE),
91                 InsetName("mathmacro", MATHMACRO_CODE),
92                 InsetName("citation", CITE_CODE),
93                 InsetName("floatlist", FLOAT_LIST_CODE),
94                 InsetName("index_print", INDEX_PRINT_CODE),
95                 InsetName("nomencl_print", NOMENCL_PRINT_CODE),
96                 InsetName("optarg", OPTARG_CODE),
97                 InsetName("environment", ENVIRONMENT_CODE),
98                 InsetName("newline", NEWLINE_CODE),
99                 InsetName("line", LINE_CODE),
100                 InsetName("branch", BRANCH_CODE),
101                 InsetName("box", BOX_CODE),
102                 InsetName("flex", FLEX_CODE),
103                 InsetName("space", SPACE_CODE),
104                 InsetName("vspace", VSPACE_CODE),
105                 InsetName("mathmacroarg", MATHMACROARG_CODE),
106                 InsetName("listings", LISTINGS_CODE),
107                 InsetName("info", INFO_CODE),
108                 InsetName("collapsable", COLLAPSABLE_CODE),
109                 InsetName("newpage", NEWPAGE_CODE),
110                 InsetName("tablecell", CELL_CODE)
111         };
112
113         size_t const insetnames_size =
114                 sizeof(insetnames) / sizeof(insetnames[0]);
115
116         map<string, InsetCode> data;
117         for (size_t i = 0; i != insetnames_size; ++i) {
118                 InsetName const & var = insetnames[i];
119                 data[var.name] = var.code;
120         }
121
122         return data;
123 }
124
125
126 void Inset::setBuffer(Buffer & buffer)
127 {
128         buffer_ = &buffer;
129 }
130
131
132 Buffer & Inset::buffer()
133 {
134         if (!buffer_) {
135                 odocstringstream s;
136                 lyxerr << "LyX Code: " << lyxCode() << " name: " << name() << std::endl;
137                 s << "LyX Code: " << lyxCode() << " name: " << name();
138                 LASSERT(false, /**/);
139                 throw ExceptionMessage(BufferException, 
140                         from_ascii("Inset::buffer_ member not initialized!"), s.str());
141         }
142         return *buffer_;
143 }
144
145
146 Buffer const & Inset::buffer() const
147 {
148         return const_cast<Inset *>(this)->buffer();
149 }
150
151
152 bool Inset::isBufferValid() const
153 {
154         return theBufferList().isLoaded(buffer_);
155 }
156
157
158 docstring Inset::name() const
159 {
160         return from_ascii("unknown");
161 }
162
163
164 void Inset::initView()
165 {
166         if (isLabeled())
167                 lyx::updateLabels(buffer());
168 }
169
170
171 docstring Inset::toolTip(BufferView const &, int, int) const
172 {
173         return docstring();
174 }
175
176
177 docstring Inset::contextMenu(BufferView const &, int, int) const
178 {
179         return docstring();
180 }
181
182
183 Dimension const Inset::dimension(BufferView const & bv) const
184 {
185         return bv.coordCache().getInsets().dim(this);
186 }
187
188
189 InsetCode insetCode(string const & name)
190 {
191         static TranslatorMap const translator = build_translator();
192
193         TranslatorMap::const_iterator it = translator.find(name);
194         return it == translator.end() ? NO_CODE : it->second;
195 }
196
197
198 string insetName(InsetCode c) 
199 {
200         static TranslatorMap const translator = build_translator();
201
202         TranslatorMap::const_iterator it =  translator.begin();
203         TranslatorMap::const_iterator end = translator.end();
204         for (; it != end; ++it) {
205                 if (it->second == c)
206                         return it->first;
207         }
208         return string();
209 }
210
211
212 void Inset::dispatch(Cursor & cur, FuncRequest & cmd)
213 {
214         cur.updateFlags(Update::Force | Update::FitCursor);
215         cur.dispatched();
216         doDispatch(cur, cmd);
217 }
218
219
220 void Inset::doDispatch(Cursor & cur, FuncRequest &cmd)
221 {
222         switch (cmd.action) {
223         case LFUN_INSET_TOGGLE:
224                 edit(cur, true);
225                 cur.dispatched();
226                 break;
227         default:
228                 cur.noUpdate();
229                 cur.undispatched();
230                 break;
231         }
232 }
233
234
235 bool Inset::getStatus(Cursor &, FuncRequest const & cmd,
236         FuncStatus & flag) const
237 {
238         // LFUN_INSET_APPLY is sent from the dialogs when the data should
239         // be applied. This is either changed to LFUN_INSET_MODIFY (if the
240         // dialog belongs to us) or LFUN_INSET_INSERT (if the dialog does
241         // not belong to us, i. e. the dialog was open, and the user moved
242         // the cursor in our inset) in LyXFunc::getStatus().
243         // Dialogs::checkStatus() ensures that the dialog is deactivated if
244         // LFUN_INSET_APPLY is disabled.
245
246         switch (cmd.action) {
247         case LFUN_INSET_MODIFY:
248                 // Allow modification of our data.
249                 // This needs to be handled in the doDispatch method of our
250                 // instantiatable children.
251                 flag.setEnabled(true);
252                 return true;
253
254         case LFUN_INSET_INSERT:
255                 // Don't allow insertion of new insets.
256                 // Every inset that wants to allow new insets from open
257                 // dialogs needs to override this.
258                 flag.setEnabled(false);
259                 return true;
260
261         case LFUN_INSET_TOGGLE:
262                 // remove this if we dissociate toggle from edit.
263                 flag.setEnabled(editable() == IS_EDITABLE);
264                 return true;
265
266         default:
267                 break;
268         }
269         return false;
270 }
271
272
273 void Inset::edit(Cursor &, bool, EntryDirection)
274 {
275         LYXERR(Debug::INSETS, "edit left/right");
276 }
277
278
279 Inset * Inset::editXY(Cursor &, int x, int y)
280 {
281         LYXERR(Debug::INSETS, "x: " << x << " y: " << y);
282         return this;
283 }
284
285
286 Inset::idx_type Inset::index(row_type row, col_type col) const
287 {
288         if (row != 0)
289                 LYXERR0("illegal row: " << row);
290         if (col != 0)
291                 LYXERR0("illegal col: " << col);
292         return 0;
293 }
294
295
296 bool Inset::idxBetween(idx_type idx, idx_type from, idx_type to) const
297 {
298         return from <= idx && idx <= to;
299 }
300
301
302 bool Inset::idxUpDown(Cursor &, bool) const
303 {
304         return false;
305 }
306
307
308 int Inset::docbook(odocstream &, OutputParams const &) const
309 {
310         return 0;
311 }
312
313
314 bool Inset::directWrite() const
315 {
316         return false;
317 }
318
319
320 Inset::EDITABLE Inset::editable() const
321 {
322         return NOT_EDITABLE;
323 }
324
325
326 bool Inset::autoDelete() const
327 {
328         return false;
329 }
330
331
332 docstring Inset::editMessage() const
333 {
334         return _("Opened inset");
335 }
336
337
338 void Inset::cursorPos(BufferView const & /*bv*/, CursorSlice const &,
339                 bool, int & x, int & y) const
340 {
341         LYXERR0("Inset::cursorPos called directly");
342         x = 100;
343         y = 100;
344 }
345
346
347 void Inset::metricsMarkers(Dimension & dim, int framesize) const
348 {
349         dim.wid += 2 * framesize;
350         dim.des += framesize;
351 }
352
353
354 void Inset::metricsMarkers2(Dimension & dim, int framesize) const
355 {
356         dim.wid += 2 * framesize;
357         dim.asc += framesize;
358         dim.des += framesize;
359 }
360
361
362 void Inset::drawMarkers(PainterInfo & pi, int x, int y) const
363 {
364         ColorCode pen_color = mouseHovered() || editing(pi.base.bv)?
365                 Color_mathframe : Color_mathcorners;
366
367         Dimension const dim = dimension(*pi.base.bv);
368
369         int const t = x + dim.width() - 1;
370         int const d = y + dim.descent();
371         pi.pain.line(x, d - 3, x, d, pen_color);
372         pi.pain.line(t, d - 3, t, d, pen_color);
373         pi.pain.line(x, d, x + 3, d, pen_color);
374         pi.pain.line(t - 3, d, t, d, pen_color);
375         setPosCache(pi, x, y);
376 }
377
378
379 void Inset::drawMarkers2(PainterInfo & pi, int x, int y) const
380 {
381         ColorCode pen_color = mouseHovered() || editing(pi.base.bv)?
382                 Color_mathframe : Color_mathcorners;
383
384         drawMarkers(pi, x, y);
385         Dimension const dim = dimension(*pi.base.bv);
386         int const t = x + dim.width() - 1;
387         int const a = y - dim.ascent();
388         pi.pain.line(x, a + 3, x, a, pen_color);
389         pi.pain.line(t, a + 3, t, a, pen_color);
390         pi.pain.line(x, a, x + 3, a, pen_color);
391         pi.pain.line(t - 3, a, t, a, pen_color);
392         setPosCache(pi, x, y);
393 }
394
395
396 bool Inset::editing(BufferView const * bv) const
397 {
398         return bv->cursor().isInside(this);
399 }
400
401
402 int Inset::xo(BufferView const & bv) const
403 {
404         return bv.coordCache().getInsets().x(this);
405 }
406
407
408 int Inset::yo(BufferView const & bv) const
409 {
410         return bv.coordCache().getInsets().y(this);
411 }
412
413
414 bool Inset::covers(BufferView const & bv, int x, int y) const
415 {
416         return bv.coordCache().getInsets().covers(this, x, y);
417 }
418
419
420 InsetLayout const & Inset::getLayout(BufferParams const & bp) const
421 {
422         return bp.documentClass().insetLayout(name());  
423 }
424
425
426 void Inset::dump() const
427 {
428         write(lyxerr);
429 }
430
431
432 ColorCode Inset::backgroundColor() const
433 {
434         return Color_background;
435 }
436
437
438 void Inset::setPosCache(PainterInfo const & pi, int x, int y) const
439 {
440         //LYXERR("Inset: set position cache to " << x << " " << y);
441         pi.base.bv->coordCache().insets().add(this, x, y);
442 }
443
444
445 void Inset::setDimCache(MetricsInfo const & mi, Dimension const & dim) const
446 {
447         mi.base.bv->coordCache().insets().add(this, dim);
448 }
449
450
451 Buffer const * Inset::updateFrontend() const
452 {
453         return theApp() ? theApp()->updateInset(this) : 0;
454 }
455
456
457 docstring Inset::completionPrefix(Cursor const &) const 
458 {
459         return docstring();
460 }
461
462 } // namespace lyx