]> git.lyx.org Git - lyx.git/blob - src/insets/Inset.cpp
ae91223d0ad210c27e305610a3511c37351c725b
[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("phantom", PHANTOM_CODE),
74                 InsetName("accent", ACCENT_CODE),
75                 InsetName("math", MATH_CODE),
76                 InsetName("index", INDEX_CODE),
77                 InsetName("nomenclature", NOMENCL_CODE),
78                 InsetName("include", INCLUDE_CODE),
79                 InsetName("graphics", GRAPHICS_CODE),
80                 InsetName("bibitem", BIBITEM_CODE),
81                 InsetName("bibtex", BIBTEX_CODE),
82                 InsetName("text", TEXT_CODE),
83                 InsetName("ert", ERT_CODE),
84                 InsetName("foot", FOOT_CODE),
85                 InsetName("margin", MARGIN_CODE),
86                 InsetName("float", FLOAT_CODE),
87                 InsetName("wrap", WRAP_CODE),
88                 InsetName("specialchar", SPECIALCHAR_CODE),
89                 InsetName("tabular", TABULAR_CODE),
90                 InsetName("external", EXTERNAL_CODE),
91                 InsetName("caption", CAPTION_CODE),
92                 InsetName("mathmacro", MATHMACRO_CODE),
93                 InsetName("citation", CITE_CODE),
94                 InsetName("floatlist", FLOAT_LIST_CODE),
95                 InsetName("index_print", INDEX_PRINT_CODE),
96                 InsetName("nomencl_print", NOMENCL_PRINT_CODE),
97                 InsetName("optarg", OPTARG_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 buffer_ && 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                 buffer().updateLabels();
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         case LFUN_INSET_SETTINGS:
228                 showInsetDialog(&cur.bv());
229                 break;
230         default:
231                 cur.noUpdate();
232                 cur.undispatched();
233                 break;
234         }
235 }
236
237
238 bool Inset::getStatus(Cursor &, FuncRequest const & cmd,
239         FuncStatus & flag) const
240 {
241         // LFUN_INSET_APPLY is sent from the dialogs when the data should
242         // be applied. This is either changed to LFUN_INSET_MODIFY (if the
243         // dialog belongs to us) or LFUN_INSET_INSERT (if the dialog does
244         // not belong to us, i. e. the dialog was open, and the user moved
245         // the cursor in our inset) in LyXFunc::getStatus().
246         // Dialogs::checkStatus() ensures that the dialog is deactivated if
247         // LFUN_INSET_APPLY is disabled.
248
249         switch (cmd.action) {
250         case LFUN_INSET_MODIFY:
251                 // Allow modification of our data.
252                 // This needs to be handled in the doDispatch method of our
253                 // instantiatable children.
254                 flag.setEnabled(true);
255                 return true;
256
257         case LFUN_INSET_INSERT:
258                 // Don't allow insertion of new insets.
259                 // Every inset that wants to allow new insets from open
260                 // dialogs needs to override this.
261                 flag.setEnabled(false);
262                 return true;
263
264         case LFUN_INSET_TOGGLE:
265                 // remove this if we dissociate toggle from edit.
266                 flag.setEnabled(editable() == IS_EDITABLE);
267                 return true;
268
269         case LFUN_INSET_SETTINGS:
270                 flag.setEnabled(false);
271                 return true;
272
273         default:
274                 break;
275         }
276         return false;
277 }
278
279
280 void Inset::edit(Cursor &, bool, EntryDirection)
281 {
282         LYXERR(Debug::INSETS, "edit left/right");
283 }
284
285
286 Inset * Inset::editXY(Cursor &, int x, int y)
287 {
288         LYXERR(Debug::INSETS, "x: " << x << " y: " << y);
289         return this;
290 }
291
292
293 Inset::idx_type Inset::index(row_type row, col_type col) const
294 {
295         if (row != 0)
296                 LYXERR0("illegal row: " << row);
297         if (col != 0)
298                 LYXERR0("illegal col: " << col);
299         return 0;
300 }
301
302
303 bool Inset::idxBetween(idx_type idx, idx_type from, idx_type to) const
304 {
305         return from <= idx && idx <= to;
306 }
307
308
309 bool Inset::idxUpDown(Cursor &, bool) const
310 {
311         return false;
312 }
313
314
315 int Inset::docbook(odocstream &, OutputParams const &) const
316 {
317         return 0;
318 }
319
320
321 bool Inset::directWrite() const
322 {
323         return false;
324 }
325
326
327 Inset::EDITABLE Inset::editable() const
328 {
329         return NOT_EDITABLE;
330 }
331
332
333 bool Inset::autoDelete() const
334 {
335         return false;
336 }
337
338
339 docstring Inset::editMessage() const
340 {
341         return _("Opened inset");
342 }
343
344
345 void Inset::cursorPos(BufferView const & /*bv*/, CursorSlice const &,
346                 bool, int & x, int & y) const
347 {
348         LYXERR0("Inset::cursorPos called directly");
349         x = 100;
350         y = 100;
351 }
352
353
354 void Inset::metricsMarkers(Dimension & dim, int framesize) const
355 {
356         dim.wid += 2 * framesize;
357         dim.des += framesize;
358 }
359
360
361 void Inset::metricsMarkers2(Dimension & dim, int framesize) const
362 {
363         dim.wid += 2 * framesize;
364         dim.asc += framesize;
365         dim.des += framesize;
366 }
367
368
369 void Inset::drawMarkers(PainterInfo & pi, int x, int y) const
370 {
371         ColorCode pen_color = mouseHovered() || editing(pi.base.bv)?
372                 Color_mathframe : Color_mathcorners;
373
374         Dimension const dim = dimension(*pi.base.bv);
375
376         int const t = x + dim.width() - 1;
377         int const d = y + dim.descent();
378         pi.pain.line(x, d - 3, x, d, pen_color);
379         pi.pain.line(t, d - 3, t, d, pen_color);
380         pi.pain.line(x, d, x + 3, d, pen_color);
381         pi.pain.line(t - 3, d, t, d, pen_color);
382         setPosCache(pi, x, y);
383 }
384
385
386 void Inset::drawMarkers2(PainterInfo & pi, int x, int y) const
387 {
388         ColorCode pen_color = mouseHovered() || editing(pi.base.bv)?
389                 Color_mathframe : Color_mathcorners;
390
391         drawMarkers(pi, x, y);
392         Dimension const dim = dimension(*pi.base.bv);
393         int const t = x + dim.width() - 1;
394         int const a = y - dim.ascent();
395         pi.pain.line(x, a + 3, x, a, pen_color);
396         pi.pain.line(t, a + 3, t, a, pen_color);
397         pi.pain.line(x, a, x + 3, a, pen_color);
398         pi.pain.line(t - 3, a, t, a, pen_color);
399         setPosCache(pi, x, y);
400 }
401
402
403 bool Inset::editing(BufferView const * bv) const
404 {
405         return bv->cursor().isInside(this);
406 }
407
408
409 int Inset::xo(BufferView const & bv) const
410 {
411         return bv.coordCache().getInsets().x(this);
412 }
413
414
415 int Inset::yo(BufferView const & bv) const
416 {
417         return bv.coordCache().getInsets().y(this);
418 }
419
420
421 bool Inset::covers(BufferView const & bv, int x, int y) const
422 {
423         return bv.coordCache().getInsets().covers(this, x, y);
424 }
425
426
427 InsetLayout const & Inset::getLayout(BufferParams const & bp) const
428 {
429         return bp.documentClass().insetLayout(name());
430 }
431
432
433 void Inset::dump() const
434 {
435         write(lyxerr);
436 }
437
438
439 ColorCode Inset::backgroundColor() const
440 {
441         return Color_none;
442 }
443
444
445 void Inset::setPosCache(PainterInfo const & pi, int x, int y) const
446 {
447         //LYXERR("Inset: set position cache to " << x << " " << y);
448         pi.base.bv->coordCache().insets().add(this, x, y);
449 }
450
451
452 void Inset::setDimCache(MetricsInfo const & mi, Dimension const & dim) const
453 {
454         mi.base.bv->coordCache().insets().add(this, dim);
455 }
456
457
458 Buffer const * Inset::updateFrontend() const
459 {
460         return theApp() ? theApp()->updateInset(this) : 0;
461 }
462
463
464 docstring Inset::completionPrefix(Cursor const &) const 
465 {
466         return docstring();
467 }
468
469 } // namespace lyx