]> git.lyx.org Git - lyx.git/blob - src/insets/Inset.cpp
c615b78ab9d2665db88ab298c6554aeed6914c71
[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 "output_xhtml.h"
32 #include "Text.h"
33 #include "TextClass.h"
34
35 #include "frontends/Application.h"
36 #include "frontends/Painter.h"
37
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 = string(), docstring const & dn = docstring())
54                 : name(n), display_name(dn) {}
55         string name;
56         docstring display_name;
57 };
58
59
60 static InsetName insetnames[INSET_CODE_SIZE];
61
62
63 static void build_translator()
64 {
65         static bool passed = false;
66         if (passed)
67                 return;
68         insetnames[TOC_CODE] = InsetName("toc");
69         insetnames[QUOTE_CODE] = InsetName("quote");
70         insetnames[REF_CODE] = InsetName("ref");
71         insetnames[HYPERLINK_CODE] = InsetName("href");
72         insetnames[SEPARATOR_CODE] = InsetName("separator");
73         insetnames[ENDING_CODE] = InsetName("ending");
74         insetnames[LABEL_CODE] = InsetName("label");
75         insetnames[NOTE_CODE] = InsetName("note");
76         insetnames[PHANTOM_CODE] = InsetName("phantom");
77         insetnames[ACCENT_CODE] = InsetName("accent");
78         insetnames[MATH_CODE] = InsetName("math");
79         insetnames[INDEX_CODE] = InsetName("index");
80         insetnames[NOMENCL_CODE] = InsetName("nomenclature");
81         insetnames[INCLUDE_CODE] = InsetName("include");
82         insetnames[GRAPHICS_CODE] = InsetName("graphics");
83         insetnames[BIBITEM_CODE] = InsetName("bibitem");
84         insetnames[BIBTEX_CODE] = InsetName("bibtex");
85         insetnames[TEXT_CODE] = InsetName("text");
86         insetnames[ERT_CODE] = InsetName("ert", _("TeX Code"));
87         insetnames[FOOT_CODE] = InsetName("foot");
88         insetnames[MARGIN_CODE] = InsetName("margin");
89         insetnames[FLOAT_CODE] = InsetName("float", _("Float"));
90         insetnames[WRAP_CODE] = InsetName("wrap");
91         insetnames[SPECIALCHAR_CODE] = InsetName("specialchar");
92         insetnames[TABULAR_CODE] = InsetName("tabular", _("Table"));
93         insetnames[EXTERNAL_CODE] = InsetName("external");
94         insetnames[CAPTION_CODE] = InsetName("caption");
95         insetnames[MATHMACRO_CODE] = InsetName("mathmacro");
96         insetnames[CITE_CODE] = InsetName("citation");
97         insetnames[FLOAT_LIST_CODE] = InsetName("floatlist");
98         insetnames[INDEX_PRINT_CODE] = InsetName("index_print");
99         insetnames[NOMENCL_PRINT_CODE] = InsetName("nomencl_print");
100         insetnames[OPTARG_CODE] = InsetName("optarg");
101         insetnames[NEWLINE_CODE] = InsetName("newline");
102         insetnames[LINE_CODE] = InsetName("line");
103         insetnames[BRANCH_CODE] = InsetName("branch", _("Branch"));
104         insetnames[BOX_CODE] = InsetName("box", _("Box"));
105         insetnames[FLEX_CODE] = InsetName("flex");
106         insetnames[SPACE_CODE] = InsetName("space", _("Horizontal Space"));
107         insetnames[VSPACE_CODE] = InsetName("vspace", _("Vertical Space"));
108         insetnames[MATH_MACROARG_CODE] = InsetName("mathmacroarg");
109         insetnames[LISTINGS_CODE] = InsetName("listings");
110         insetnames[INFO_CODE] = InsetName("info", _("Info"));
111         insetnames[COLLAPSABLE_CODE] = InsetName("collapsable");
112         insetnames[NEWPAGE_CODE] = InsetName("newpage");
113         insetnames[CELL_CODE] = InsetName("tablecell");
114         insetnames[MATH_AMSARRAY_CODE] = InsetName("mathamsarray");
115         insetnames[MATH_ARRAY_CODE] = InsetName("matharray");
116         insetnames[MATH_BIG_CODE] = InsetName("mathbig");
117         insetnames[MATH_BOLDSYMBOL_CODE] = InsetName("mathboldsymbol");
118         insetnames[MATH_BOX_CODE] = InsetName("mathbox");
119         insetnames[MATH_BRACE_CODE] = InsetName("mathbrace");
120         insetnames[MATH_CASES_CODE] = InsetName("mathcases");
121         insetnames[MATH_CHAR_CODE] = InsetName("mathchar");
122         insetnames[MATH_COLOR_CODE] = InsetName("mathcolor");
123         insetnames[MATH_COMMENT_CODE] = InsetName("mathcomment");
124         insetnames[MATH_DECORATION_CODE] = InsetName("mathdecoration");
125         insetnames[MATH_DELIM_CODE] = InsetName("mathdelim");
126         insetnames[MATH_DIFF_CODE] = InsetName("mathdiff");
127         insetnames[MATH_DOTS_CODE] = InsetName("mathdots");
128         insetnames[MATH_ENSUREMATH_CODE] = InsetName("mathensuremath");
129         insetnames[MATH_ENV_CODE] = InsetName("mathenv");
130         insetnames[MATH_EXFUNC_CODE] = InsetName("mathexfunc");
131         insetnames[MATH_EXINT_CODE] = InsetName("mathexint");
132         insetnames[MATH_FONT_CODE] = InsetName("mathfont");
133         insetnames[MATH_FONTOLD_CODE] = InsetName("mathfontold");
134         insetnames[MATH_FRAC_CODE] = InsetName("mathfrac");
135         insetnames[MATH_GRID_CODE] = InsetName("mathgrid");
136         insetnames[MATH_CODE] = InsetName("math");
137         insetnames[MATH_HULL_CODE] = InsetName("mathhull");
138         insetnames[MATH_KERN_CODE] = InsetName("mathkern");
139         insetnames[MATH_LEFTEQN_CODE] = InsetName("mathlefteqn");
140         insetnames[MATH_LIM_CODE] = InsetName("mathlim");
141         insetnames[MATH_MATRIX_CODE] = InsetName("mathmatrix");
142         insetnames[MATH_MBOX_CODE] = InsetName("mathmbox");
143         insetnames[MATH_NEST_CODE] = InsetName("mathnest");
144         insetnames[MATH_NUMBER_CODE] = InsetName("mathnumber");
145         insetnames[MATH_OVERSET_CODE] = InsetName("mathoverset");
146         insetnames[MATH_PAR_CODE] = InsetName("mathpar");
147         insetnames[MATH_PHANTOM_CODE] = InsetName("mathphantom");
148         insetnames[MATH_REF_CODE] = InsetName("mathref");
149         insetnames[MATH_ROOT_CODE] = InsetName("mathroot");
150         insetnames[MATH_SCRIPT_CODE] = InsetName("mathscript");
151         insetnames[MATH_SIZE_CODE] = InsetName("mathsize");
152         insetnames[MATH_SPACE_CODE] = InsetName("mathspace", _("Horizontal Math Space"));
153         insetnames[MATH_SPECIALCHAR_CODE] = InsetName("mathspecialchar");
154         insetnames[MATH_SPLIT_CODE] = InsetName("mathsplit");
155         insetnames[MATH_SQRT_CODE] = InsetName("mathsqrt");
156         insetnames[MATH_STACKREL_CODE] = InsetName("mathstackrel");
157         insetnames[MATH_STRING_CODE] = InsetName("mathstring");
158         insetnames[MATH_SUBSTACK_CODE] = InsetName("mathsubstack");
159         insetnames[MATH_SYMBOL_CODE] = InsetName("mathsymbol");
160         insetnames[MATH_TABULAR_CODE] = InsetName("mathtabular");
161         insetnames[MATH_UNDERSET_CODE] = InsetName("mathunderset");
162         insetnames[MATH_UNKNOWN_CODE] = InsetName("mathunknown");
163         insetnames[MATH_XARROW_CODE] = InsetName("mathxarrow");
164         insetnames[MATH_XYARROW_CODE] = InsetName("mathxyarrow");
165         insetnames[MATH_XYMATRIX_CODE] = InsetName("mathxymatrix");
166         insetnames[MATH_MACRO_CODE] = InsetName("mathmacro");
167
168         passed = true;
169 }
170
171
172 void Inset::setBuffer(Buffer & buffer)
173 {
174         buffer_ = &buffer;
175 }
176
177
178 Buffer & Inset::buffer()
179 {
180         if (!buffer_) {
181                 odocstringstream s;
182                 lyxerr << "Inset: " << this
183                                         << " LyX Code: " << lyxCode()
184                                         << " name: " << insetName(lyxCode())
185                                         << std::endl;
186                 s << "LyX Code: " << lyxCode() << " name: " << name();
187                 LASSERT(false, /**/);
188                 throw ExceptionMessage(BufferException, 
189                         from_ascii("Inset::buffer_ member not initialized!"), s.str());
190         }
191         return *buffer_;
192 }
193
194
195 Buffer const & Inset::buffer() const
196 {
197         return const_cast<Inset *>(this)->buffer();
198 }
199
200
201 bool Inset::isBufferValid() const
202 {
203         return buffer_ && theBufferList().isLoaded(buffer_);
204 }
205
206
207 docstring Inset::name() const
208 {
209         return from_ascii("unknown");
210 }
211
212
213 bool Inset::isFreeSpacing() const 
214 {
215         return getLayout().isFreeSpacing();
216 }
217
218
219 bool Inset::allowEmpty() const
220 {
221         return getLayout().isKeepEmpty();
222 }
223
224 bool Inset::forceLTR() const
225 {
226         return getLayout().forceLTR();
227 }
228
229 void Inset::initView()
230 {
231         if (isLabeled())
232                 buffer().updateLabels();
233 }
234
235
236 docstring Inset::toolTip(BufferView const &, int, int) const
237 {
238         return docstring();
239 }
240
241
242 docstring Inset::contextMenu(BufferView const &, int, int) const
243 {
244         return docstring();
245 }
246
247
248 Dimension const Inset::dimension(BufferView const & bv) const
249 {
250         return bv.coordCache().getInsets().dim(this);
251 }
252
253
254 InsetCode insetCode(string const & name)
255 {
256         build_translator();
257         for (int i = 1; i != int(INSET_CODE_SIZE); ++i) {
258                 if (insetnames[i].name == name)
259                         return InsetCode(i);
260         }
261         return NO_CODE;
262 }
263
264
265 string insetName(InsetCode c) 
266 {
267         build_translator();
268         return insetnames[c].name;
269 }
270
271
272 docstring insetDisplayName(InsetCode c) 
273 {
274         build_translator();
275         return insetnames[c].display_name;
276 }
277
278
279 void Inset::dispatch(Cursor & cur, FuncRequest & cmd)
280 {
281         if (buffer_ == 0) {
282                 lyxerr << "Unassigned buffer_ member in Inset::dispatch()" << std::endl;
283                 lyxerr << "LyX Code: " << lyxCode() << " name: " << insetName(lyxCode()) << std::endl;
284         } else if (cur.buffer() != buffer_)
285                 lyxerr << "cur.buffer() != buffer_ in Inset::dispatch()" << std::endl;
286         cur.updateFlags(Update::Force | Update::FitCursor);
287         cur.dispatched();
288         doDispatch(cur, cmd);
289 }
290
291
292 bool Inset::showInsetDialog(BufferView * bv) const
293 {
294         InsetCode const code = lyxCode();
295         switch (code){
296         case ERT_CODE:
297         case FLOAT_CODE:
298         case BOX_CODE:
299         case BRANCH_CODE:
300         case INFO_CODE:
301         case MATH_SPACE_CODE:
302         case SPACE_CODE:
303         case TABULAR_CODE:
304         case VSPACE_CODE:
305                 bv->showDialog(insetName(code));
306                 break;
307         default:
308                 return false;
309         }
310         return true;
311 }
312
313
314 void Inset::doDispatch(Cursor & cur, FuncRequest &cmd)
315 {
316         switch (cmd.action) {
317         case LFUN_MOUSE_RELEASE:
318                 // if the derived inset did not explicitly handle mouse_release,
319                 // we assume we request the settings dialog
320                 if (!cur.selection() && cmd.button() == mouse_button::button1
321                           && hasSettings()) {
322                         FuncRequest tmpcmd(LFUN_INSET_SETTINGS);
323                         dispatch(cur, tmpcmd);
324                 }
325                 break;
326
327         case LFUN_INSET_SETTINGS:
328                 if (cmd.argument().empty() || cmd.getArg(0) == insetName(lyxCode())) {
329                         showInsetDialog(&cur.bv());
330                         cur.dispatched();
331                 } else
332                         cur.undispatched();
333                 break;
334
335         default:
336                 cur.noUpdate();
337                 cur.undispatched();
338                 break;
339         }
340 }
341
342
343 bool Inset::getStatus(Cursor &, FuncRequest const & cmd,
344         FuncStatus & flag) const
345 {
346         // LFUN_INSET_APPLY is sent from the dialogs when the data should
347         // be applied. This is either changed to LFUN_INSET_MODIFY (if the
348         // dialog belongs to us) or LFUN_INSET_INSERT (if the dialog does
349         // not belong to us, i. e. the dialog was open, and the user moved
350         // the cursor in our inset) in lyx::getStatus().
351         // Dialogs::checkStatus() ensures that the dialog is deactivated if
352         // LFUN_INSET_APPLY is disabled.
353
354         switch (cmd.action) {
355         case LFUN_INSET_MODIFY:
356                 // Allow modification of our data.
357                 // This needs to be handled in the doDispatch method of our
358                 // instantiatable children.
359                 flag.setEnabled(true);
360                 return true;
361
362         case LFUN_INSET_INSERT:
363                 // Don't allow insertion of new insets.
364                 // Every inset that wants to allow new insets from open
365                 // dialogs needs to override this.
366                 flag.setEnabled(false);
367                 return true;
368
369         case LFUN_INSET_SETTINGS:
370                 if (cmd.argument().empty() || cmd.getArg(0) == insetName(lyxCode())) {
371                         bool const enable = hasSettings();
372                         flag.setEnabled(enable);
373                         return true;
374                 } else {
375                         flag.setEnabled(false);
376                         return false;
377                 }
378
379         default:
380                 break;
381         }
382         return false;
383 }
384
385
386 void Inset::edit(Cursor &, bool, EntryDirection)
387 {
388         LYXERR(Debug::INSETS, "edit left/right");
389 }
390
391
392 Inset * Inset::editXY(Cursor &, int x, int y)
393 {
394         LYXERR(Debug::INSETS, "x: " << x << " y: " << y);
395         return this;
396 }
397
398
399 Inset::idx_type Inset::index(row_type row, col_type col) const
400 {
401         if (row != 0)
402                 LYXERR0("illegal row: " << row);
403         if (col != 0)
404                 LYXERR0("illegal col: " << col);
405         return 0;
406 }
407
408
409 bool Inset::idxBetween(idx_type idx, idx_type from, idx_type to) const
410 {
411         return from <= idx && idx <= to;
412 }
413
414
415 bool Inset::idxUpDown(Cursor &, bool) const
416 {
417         return false;
418 }
419
420
421 int Inset::docbook(odocstream &, OutputParams const &) const
422 {
423         return 0;
424 }
425
426
427 docstring Inset::xhtml(XHTMLStream & xs, OutputParams const &) const
428 {
429         xs << "[[Inset: " << from_ascii(insetName(lyxCode())) << "]]";
430         return docstring();
431 }
432
433
434 bool Inset::directWrite() const
435 {
436         return false;
437 }
438
439
440 bool Inset::editable() const
441 {
442         return false;
443 }
444
445
446 bool Inset::hasSettings() const
447 {
448         return false;
449 }
450
451
452
453 bool Inset::autoDelete() const
454 {
455         return false;
456 }
457
458
459 void Inset::cursorPos(BufferView const & /*bv*/, CursorSlice const &,
460                 bool, int & x, int & y) const
461 {
462         LYXERR0("Inset::cursorPos called directly");
463         x = 100;
464         y = 100;
465 }
466
467
468 void Inset::metricsMarkers(Dimension & dim, int framesize) const
469 {
470         dim.wid += 2 * framesize;
471         dim.des += framesize;
472 }
473
474
475 void Inset::metricsMarkers2(Dimension & dim, int framesize) const
476 {
477         dim.wid += 2 * framesize;
478         dim.asc += framesize;
479         dim.des += framesize;
480 }
481
482
483 void Inset::drawMarkers(PainterInfo & pi, int x, int y) const
484 {
485         ColorCode pen_color = mouseHovered() || editing(pi.base.bv)?
486                 Color_mathframe : Color_mathcorners;
487
488         Dimension const dim = dimension(*pi.base.bv);
489
490         int const t = x + dim.width() - 1;
491         int const d = y + dim.descent();
492         pi.pain.line(x, d - 3, x, d, pen_color);
493         pi.pain.line(t, d - 3, t, d, pen_color);
494         pi.pain.line(x, d, x + 3, d, pen_color);
495         pi.pain.line(t - 3, d, t, d, pen_color);
496         setPosCache(pi, x, y);
497 }
498
499
500 void Inset::drawMarkers2(PainterInfo & pi, int x, int y) const
501 {
502         ColorCode pen_color = mouseHovered() || editing(pi.base.bv)?
503                 Color_mathframe : Color_mathcorners;
504
505         drawMarkers(pi, x, y);
506         Dimension const dim = dimension(*pi.base.bv);
507         int const t = x + dim.width() - 1;
508         int const a = y - dim.ascent();
509         pi.pain.line(x, a + 3, x, a, pen_color);
510         pi.pain.line(t, a + 3, t, a, pen_color);
511         pi.pain.line(x, a, x + 3, a, pen_color);
512         pi.pain.line(t - 3, a, t, a, pen_color);
513         setPosCache(pi, x, y);
514 }
515
516
517 bool Inset::editing(BufferView const * bv) const
518 {
519         return bv->cursor().isInside(this);
520 }
521
522
523 int Inset::xo(BufferView const & bv) const
524 {
525         return bv.coordCache().getInsets().x(this);
526 }
527
528
529 int Inset::yo(BufferView const & bv) const
530 {
531         return bv.coordCache().getInsets().y(this);
532 }
533
534
535 bool Inset::covers(BufferView const & bv, int x, int y) const
536 {
537         return bv.coordCache().getInsets().covers(this, x, y);
538 }
539
540
541 InsetLayout const & Inset::getLayout() const
542 {
543         if (!buffer_)
544                 return DocumentClass::plainInsetLayout();
545         return buffer().params().documentClass().insetLayout(name());
546 }
547
548
549 bool Inset::undefined() const
550 {
551         docstring const & n = getLayout().name();
552         return n.empty() || n == DocumentClass::plainInsetLayout().name();
553 }
554
555
556 void Inset::dump() const
557 {
558         write(lyxerr);
559 }
560
561
562 ColorCode Inset::backgroundColor(PainterInfo const & /*pi*/) const
563 {
564         return Color_none;
565 }
566
567
568 ColorCode Inset::labelColor() const
569 {
570         return Color_foreground;
571 }
572
573
574 void Inset::setPosCache(PainterInfo const & pi, int x, int y) const
575 {
576         //LYXERR("Inset: set position cache to " << x << " " << y);
577         pi.base.bv->coordCache().insets().add(this, x, y);
578 }
579
580
581 void Inset::setDimCache(MetricsInfo const & mi, Dimension const & dim) const
582 {
583         mi.base.bv->coordCache().insets().add(this, dim);
584 }
585
586
587 Buffer const * Inset::updateFrontend() const
588 {
589         return theApp() ? theApp()->updateInset(this) : 0;
590 }
591
592
593 docstring Inset::completionPrefix(Cursor const &) const 
594 {
595         return docstring();
596 }
597
598 } // namespace lyx