]> git.lyx.org Git - lyx.git/blob - src/insets/InsetFlex.cpp
GuiBox: fix bug 3242 http://bugzilla.lyx.org/show_bug.cgi?id=3242:
[lyx.git] / src / insets / InsetFlex.cpp
1 /**
2  * \file InsetFlex.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Angus Leeming
7  * \author Martin Vermeer
8  * \author Jürgen Spitzmüller
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #include <config.h>
14
15 #include "InsetFlex.h"
16
17 #include "Buffer.h"
18 #include "BufferParams.h"
19 #include "BufferView.h"
20 #include "DispatchResult.h"
21 #include "FuncRequest.h"
22 #include "FuncStatus.h"
23 #include "Cursor.h"
24 #include "gettext.h"
25 #include "Color.h"
26 #include "Lexer.h"
27 #include "Text.h"
28 #include "MetricsInfo.h"
29 #include "Paragraph.h"
30 #include "paragraph_funcs.h"
31 #include "sgml.h"
32
33 #include "frontends/FontMetrics.h"
34 #include "frontends/Painter.h"
35
36 #include "support/convert.h"
37
38 #include <sstream>
39
40
41 namespace lyx {
42
43 using std::string;
44 using std::ostream;
45
46
47 InsetFlex::InsetFlex(BufferParams const & bp,
48                                 InsetLayout il)
49         : InsetCollapsable(bp, Collapsed)
50 {
51         params_.name = il.name;
52         setLayout(il);
53 }
54
55
56 InsetFlex::InsetFlex(InsetFlex const & in)
57         : InsetCollapsable(in), params_(in.params_)
58 {}
59
60
61 Inset * InsetFlex::clone() const
62 {
63         return new InsetFlex(*this);
64 }
65
66
67 bool InsetFlex::undefined() const
68 {
69         return layout_.labelstring == from_utf8("UNDEFINED");
70 }
71
72
73 void InsetFlex::setLayout(InsetLayout il)
74 {
75         layout_ = il;
76 }
77
78
79 docstring const InsetFlex::editMessage() const
80 {
81         return _("Opened Flex Inset");
82 }
83
84
85 void InsetFlex::write(Buffer const & buf, ostream & os) const
86 {
87         params_.write(os);
88         InsetCollapsable::write(buf, os);
89 }
90
91
92 void InsetFlex::read(Buffer const & buf, Lexer & lex)
93 {
94         params_.read(lex);
95         InsetCollapsable::read(buf, lex);
96 }
97
98
99 void InsetFlex::metrics(MetricsInfo & mi, Dimension & dim) const
100 {
101         Font tmpfont = mi.base.font;
102         getDrawFont(mi.base.font);
103         mi.base.font.reduce(Font(Font::ALL_SANE));
104         mi.base.font.realize(tmpfont);
105         InsetCollapsable::metrics(mi, dim);
106         mi.base.font = tmpfont;
107 }
108
109
110 void InsetFlex::draw(PainterInfo & pi, int x, int y) const
111 {
112         Font tmpfont = pi.base.font;
113         getDrawFont(pi.base.font);
114         // I don't understand why the above .reduce and .realize aren't
115         //needed, or even wanted, here. It just works. -- MV 10.04.2005
116         InsetCollapsable::draw(pi, x, y);
117         pi.base.font = tmpfont;
118 }
119
120
121 void InsetFlex::getDrawFont(Font & font) const
122 {
123         font = layout_.font;
124 }
125
126
127 void InsetFlex::doDispatch(Cursor & cur, FuncRequest & cmd)
128 {
129         InsetCollapsable::doDispatch(cur, cmd);
130 }
131
132
133 bool InsetFlex::getStatus(Cursor & cur, FuncRequest const & cmd,
134         FuncStatus & status) const
135 {
136         switch (cmd.action) {
137                 // paragraph breaks not allowed in flex insets
138                 case LFUN_BREAK_PARAGRAPH:
139                 case LFUN_BREAK_PARAGRAPH_KEEP_LAYOUT:
140                 case LFUN_BREAK_PARAGRAPH_SKIP:
141                         status.enabled(false);
142                         return true;
143
144                 default:
145                         return InsetCollapsable::getStatus(cur, cmd, status);
146                 }
147 }
148
149
150 int InsetFlex::plaintext(Buffer const & buf, odocstream & os,
151                               OutputParams const & runparams) const
152 {
153         return InsetText::plaintext(buf, os, runparams);
154 }
155
156
157 int InsetFlex::docbook(Buffer const & buf, odocstream & os,
158                             OutputParams const & runparams) const
159 {
160         ParagraphList::const_iterator beg = paragraphs().begin();
161         ParagraphList::const_iterator par = paragraphs().begin();
162         ParagraphList::const_iterator end = paragraphs().end();
163
164         if (!undefined())
165                 // FIXME UNICODE
166                 sgml::openTag(os, layout_.latexname,
167                               par->getID(buf, runparams) + layout_.latexparam);
168
169         for (; par != end; ++par) {
170                 par->simpleDocBookOnePar(buf, os, runparams,
171                                          outerFont(std::distance(beg, par),
172                                                    paragraphs()));
173         }
174
175         if (!undefined())
176                 sgml::closeTag(os, layout_.latexname);
177
178         return 0;
179 }
180
181
182 void InsetFlex::textString(Buffer const & buf, odocstream & os) const
183 {
184         os << paragraphs().begin()->asString(buf, true);
185 }
186
187
188 void InsetFlexParams::write(ostream & os) const
189 {
190         os << "Flex " << name << "\n";
191 }
192
193
194 void InsetFlexParams::read(Lexer & lex)
195 {
196         while (lex.isOK()) {
197                 lex.next();
198                 string token = lex.getString();
199
200                 if (token == "Flex") {
201                         lex.next();
202                         name = lex.getString();
203                 }
204
205                 // This is handled in Collapsable
206                 else if (token == "status") {
207                         lex.pushToken(token);
208                         break;
209                 }
210         }
211 }
212
213
214 } // namespace lyx