]> git.lyx.org Git - lyx.git/blob - src/insets/InsetLine.cpp
listerrors.lyx : Update a link.
[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 Abdelrazak Younes
7  * \author André Pönitz
8  * \author Uwe Stöhr
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #include <config.h>
14
15 #include "InsetLine.h"
16
17 #include "Buffer.h"
18 #include "Cursor.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)
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(to_utf8(cmd.argument()), p);
76                 if (p.getCmdName().empty()) {
77                         cur.noScreenUpdate();
78                         break;
79                 }
80                 cur.recordUndo();
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         int const max_width = mi.base.textwidth;
110
111         Length const width(to_ascii(getParam("width")));
112         dim.wid = width.inPixels(max_width, fm.width(char_type('M')));
113
114         // assure that the line inset is not outside of the window
115         // check that it doesn't exceed the outer boundary
116         if (dim.wid > max_width)
117                 dim.wid = max_width;
118
119         // set a minimal width
120         int const minw = (dim.wid < 0) ? 24 : 4;
121         dim.wid = max(minw, max(dim.wid, -dim.wid));
122
123         Length height = Length(to_ascii(getParam("height")));
124         height_ = height.inPixels(max_width, fm.width(char_type('M')));
125
126         // get the length of the parameters in pixels
127         Length offset = Length(to_ascii(getParam("offset")));
128         offset_ = offset.inPixels(max_width, fm.width(char_type('M')));
129
130         dim.asc = max(fm.maxAscent(), offset_ + height_);
131         dim.des = max(fm.maxDescent(), - offset_);
132
133         // Cache the inset dimension
134         setDimCache(mi, dim);
135 }
136
137
138 Dimension const InsetLine::dimension(BufferView const & bv) const
139 {
140         // We cannot use InsetCommand::dimension() as this returns the dimension
141         // of the button, which is not used here.
142         return Inset::dimension(bv);
143 }
144
145
146 void InsetLine::draw(PainterInfo & pi, int x, int y) const
147 {
148         Dimension const dim = dimension(*pi.base.bv);
149
150         // get the surrounding text color
151         Color Line_color = pi.base.font.realColor();
152
153         // the offset is a vertical one
154         // the horizontal dimension must be corrected with the heigth because
155         // of left and right border of the painted line for big heigth.
156         pi.pain.line(x + height_/2 + 1,
157                      y - offset_ - height_/2,
158                      x + dim.wid - height_/2 - 2,
159                      y - offset_ - height_/2,
160                      Line_color, Painter::line_solid, float(height_));
161 }
162
163
164 void InsetLine::latex(otexstream & os, OutputParams const &) const
165 {
166         bool have_offset = true;
167         Length offset_len = Length(to_ascii(getParam("offset")));
168         if (offset_len.value() == 0)
169                 have_offset = false;
170
171         string const offset =
172                 Length(to_ascii(getParam("offset"))).asLatexString();
173         string const width =
174                 Length(to_ascii(getParam("width"))).asLatexString();
175         string const height =
176                 Length(to_ascii(getParam("height"))).asLatexString();
177
178         os << "\\rule";
179         // only output the optional parameter if the offset is not 0
180         if (have_offset)
181                 os      << "[" << from_ascii(offset) << "]";
182         os << "{" << from_ascii(width) << "}{" << from_ascii(height) << '}';
183 }
184
185
186 int InsetLine::plaintext(odocstream & os, OutputParams const &) const
187 {
188         os << "\n-------------------------------------------\n";
189         return PLAINTEXT_NEWLINE;
190 }
191
192
193 int InsetLine::docbook(odocstream & os, OutputParams const &) const
194 {
195         os << '\n';
196         return 0;
197 }
198
199
200 docstring InsetLine::xhtml(XHTMLStream & xs, OutputParams const &) const
201 {
202         xs << html::CompTag("hr") << html::CR();
203         return docstring();
204 }
205
206
207 } // namespace lyx