]> git.lyx.org Git - lyx.git/blob - src/insets/InsetLine.cpp
Fix InsetLine metrics and drawing.
[lyx.git] / src / insets / InsetLine.cpp
1 /**
2  * \file InsetLine.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  * \author Uwe Stöhr
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "InsetLine.h"
15
16 #include "Buffer.h"
17 #include "BufferView.h"
18 #include "CoordCache.h"
19 #include "Dimension.h"
20 #include "DispatchResult.h"
21 #include "FuncRequest.h"
22 #include "FuncStatus.h"
23 #include "LaTeXFeatures.h"
24 #include "Length.h"
25 #include "MetricsInfo.h"
26 #include "OutputParams.h"
27 #include "output_xhtml.h"
28 #include "Text.h"
29
30 #include "frontends/FontMetrics.h"
31 #include "frontends/Painter.h"
32
33 #include "support/debug.h"
34 #include "support/docstream.h"
35 #include "support/gettext.h"
36 #include "support/lstrings.h"
37
38 using namespace std;
39
40 namespace lyx {
41
42 using frontend::Painter;
43
44
45 InsetLine::InsetLine(Buffer * buf, InsetCommandParams const & p)
46         : InsetCommand(buf, p, "line")
47 {}
48
49
50 ParamInfo const & InsetLine::findInfo(string const & /* cmdName */)
51 {
52         static ParamInfo param_info_;
53         if (param_info_.empty()) {
54                 param_info_.add("offset", ParamInfo::LYX_INTERNAL);
55                 param_info_.add("width", ParamInfo::LYX_INTERNAL);
56                 param_info_.add("height", ParamInfo::LYX_INTERNAL);
57         }
58         return param_info_;
59 }
60
61
62 docstring InsetLine::screenLabel() const
63 {
64         return _("Horizontal line");
65 }
66
67
68 void InsetLine::doDispatch(Cursor & cur, FuncRequest & cmd)
69 {
70         switch (cmd.action()) {
71
72         case LFUN_INSET_MODIFY: {
73                 InsetCommandParams p(LINE_CODE);
74                 // FIXME UNICODE
75                 InsetCommand::string2params("line",
76                         to_utf8(cmd.argument()), p);
77                 if (p.getCmdName().empty()) {
78                         cur.noScreenUpdate();
79                         break;
80                 }
81                 setParams(p);
82                 break;
83         }
84
85         default:
86                 InsetCommand::doDispatch(cur, cmd);
87                 break;
88         }
89 }
90
91
92 bool InsetLine::getStatus(Cursor & cur, FuncRequest const & cmd,
93         FuncStatus & status) const
94 {
95         switch (cmd.action()) {
96         case LFUN_INSET_DIALOG_UPDATE:
97         case LFUN_INSET_MODIFY:
98                 status.setEnabled(true);
99                 return true;
100         default:
101                 return InsetCommand::getStatus(cur, cmd, status);
102         }
103 }
104
105
106 void InsetLine::metrics(MetricsInfo & mi, Dimension & dim) const
107 {
108         frontend::FontMetrics const & fm = theFontMetrics(mi.base.font);
109         dim.asc = fm.maxAscent();
110         dim.des = fm.maxDescent();
111
112         Length const width(to_ascii(getParam("width")));
113         int w = width.inPixels(mi.base.textwidth,
114                                fm.width(char_type('M')));
115
116         // assure that the line inset is not outside of the window
117         // check that it doesn't exceed the outer boundary
118         if (w > mi.base.textwidth)
119                 w = mi.base.textwidth;
120
121         // set a minimal width
122         int const minw = (w < 0) ? 24 : 4;
123         dim.wid = max(minw, max(w, -w));
124
125         // Cache the inset dimension
126         setDimCache(mi, dim);
127 }
128
129
130 void InsetLine::draw(PainterInfo & pi, int x, int y) const
131 {
132         // We cannot use InsetCommand::dimension() as this returns the dimension
133         // of the button, which is not used here!
134         Dimension const dim = pi.base.bv->coordCache().getInsets().dim(this);
135         int const max_width = dim.width();
136
137         frontend::FontMetrics const & fm = theFontMetrics(pi.base.font);
138
139         // get the length of the parameters in pixels
140         Length offset = Length(to_ascii(getParam("offset")));
141         int o = offset.inPixels(max_width,
142                                 fm.width(char_type('M')));
143         Length const width(to_ascii(getParam("width")));
144         int w = width.inPixels(max_width,
145                 fm.width(char_type('M')));
146         Length height = Length(to_ascii(getParam("height")));
147         int h = height.inPixels(max_width,
148                 fm.width(char_type('M')));
149
150         // get the surrounding text color
151         FontInfo f = pi.base.font;
152         Color Line_color = f.realColor();
153
154         // assure that the drawn line is not outside of the window
155         // check that it doesn't exceed the outer boundary
156         if (w > max_width)
157                 w = max_width;
158         // check that it doesn't exceed the upper boundary
159         if (y - o - h/2 < 0)
160                 o = y - h/2 - 2;
161
162         // the offset is a vertical one
163         pi.pain.line(x, y - o - h/2, x + w, y - o - h/2,
164                 Line_color, Painter::line_solid, float(h));
165 }
166
167
168 int InsetLine::latex(odocstream & os, OutputParams const &) const
169 {
170         bool have_offset = true;
171         Length offset_len = Length(to_ascii(getParam("offset")));
172         if (offset_len.value() == 0)
173                 have_offset = false;
174
175         string const offset =
176                 Length(to_ascii(getParam("offset"))).asLatexString();
177         string const width =
178                 Length(to_ascii(getParam("width"))).asLatexString();
179         string const height =
180                 Length(to_ascii(getParam("height"))).asLatexString();
181
182         os << "\\rule";
183         // only output the optional parameter if the offset is not 0
184         if (have_offset)
185                 os      << "[" << from_ascii(offset) << "]";
186         os << "{" << from_ascii(width) << "}{" << from_ascii(height) << '}';
187
188         return 0;
189 }
190
191
192 int InsetLine::plaintext(odocstream & os, OutputParams const &) const
193 {
194         os << "\n-------------------------------------------\n";
195         return PLAINTEXT_NEWLINE;
196 }
197
198
199 int InsetLine::docbook(odocstream & os, OutputParams const &) const
200 {
201         os << '\n';
202         return 0;
203 }
204
205
206 docstring InsetLine::xhtml(XHTMLStream & xs, OutputParams const &) const
207 {
208         xs << html::CompTag("hr");
209         xs.cr();
210         return docstring();
211 }
212
213
214 } // namespace lyx