]> git.lyx.org Git - lyx.git/blob - src/insets/inseterror.C
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / inseterror.C
1 /**
2  * \file inseterror.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #include <config.h>
12
13 #include "inseterror.h"
14
15 #include "BufferView.h"
16 #include "dimension.h"
17 #include "funcrequest.h"
18 #include "gettext.h"
19 #include "lyxfont.h"
20
21 #include "frontends/Dialogs.h"
22 #include "frontends/font_metrics.h"
23 #include "frontends/LyXView.h"
24 #include "frontends/Painter.h"
25
26 #include "support/LAssert.h"
27
28 using std::ostream;
29
30
31 InsetError::InsetError(string const & str, bool)
32         : contents(str)
33 {}
34
35
36 InsetError::~InsetError()
37 {
38         Dialogs::hide("error", this);
39 }
40
41
42 dispatch_result InsetError::localDispatch(FuncRequest const & cmd)
43 {
44         // UNUSED: dispatch_result result = UNDISPATCHED;
45
46         switch (cmd.action) {
47         case LFUN_MOUSE_RELEASE:
48         case LFUN_INSET_EDIT:
49                 cmd.view()->owner()->getDialogs().show("error", getContents(), this);
50                 return DISPATCHED;
51
52         default:
53                 return Inset::localDispatch(cmd);
54         }
55 }
56
57
58 void InsetError::dimension(BufferView *, LyXFont const & font,
59         Dimension & dim) const
60 {
61         LyXFont efont;
62         efont.setSize(font.size()).decSize();
63         dim.a = font_metrics::maxAscent(efont) + 1;
64         dim.d = font_metrics::maxDescent(efont) + 1;
65         dim.w = 6 + font_metrics::width(_("Error"), efont);
66 }
67
68
69 void InsetError::draw(BufferView * bv, LyXFont const & font,
70                       int baseline, float & x) const
71 {
72         lyx::Assert(bv);
73         cache(bv);
74
75         Painter & pain = bv->painter();
76         LyXFont efont;
77         efont.setSize(font.size()).decSize();
78         efont.setColor(LColor::error);
79
80         // Draw as "Error" in a framed box
81         x += 1;
82         pain.fillRectangle(int(x), baseline - ascent(bv, font) + 1,
83                           width(bv, font) - 2,
84                           ascent(bv, font) + descent(bv, font) - 2,
85                            LColor::insetbg);
86         pain.rectangle(int(x), baseline - ascent(bv, font) + 1,
87                        width(bv, font) - 2,
88                        ascent(bv, font) + descent(bv, font) - 2,
89                        LColor::error);
90         pain.text(int(x + 2), baseline, _("Error"), efont);
91
92         x +=  width(bv, font) - 1;
93 }
94
95
96 string const InsetError::editMessage() const
97 {
98         return _("Opened error");
99 }