]> git.lyx.org Git - lyx.git/blob - src/insets/InsetFlex.cpp
4ef9581353b9e36969c19a170285503ede8d5df5
[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 bool 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         bool changed = InsetCollapsable::metrics(mi, dim);
106         mi.base.font = tmpfont;
107         return changed;
108 }
109
110
111 void InsetFlex::draw(PainterInfo & pi, int x, int y) const
112 {
113         setPosCache(pi, x, y);
114
115         Font tmpfont = pi.base.font;
116         getDrawFont(pi.base.font);
117         // I don't understand why the above .reduce and .realize aren't
118         //needed, or even wanted, here. It just works. -- MV 10.04.2005
119         InsetCollapsable::draw(pi, x, y);
120         pi.base.font = tmpfont;
121 }
122
123
124 void InsetFlex::getDrawFont(Font & font) const
125 {
126         font = layout_.font;
127 }
128
129
130 void InsetFlex::doDispatch(Cursor & cur, FuncRequest & cmd)
131 {
132         InsetCollapsable::doDispatch(cur, cmd);
133 }
134
135
136 bool InsetFlex::getStatus(Cursor & cur, FuncRequest const & cmd,
137         FuncStatus & status) const
138 {
139         switch (cmd.action) {
140                 // paragraph breaks not allowed in flex insets
141                 case LFUN_BREAK_PARAGRAPH:
142                 case LFUN_BREAK_PARAGRAPH_KEEP_LAYOUT:
143                 case LFUN_BREAK_PARAGRAPH_SKIP:
144                         status.enabled(false);
145                         return true;
146
147                 default:
148                         return InsetCollapsable::getStatus(cur, cmd, status);
149                 }
150 }
151
152
153 int InsetFlex::plaintext(Buffer const & buf, odocstream & os,
154                               OutputParams const & runparams) const
155 {
156         return InsetText::plaintext(buf, os, runparams);
157 }
158
159
160 int InsetFlex::docbook(Buffer const & buf, odocstream & os,
161                             OutputParams const & runparams) const
162 {
163         ParagraphList::const_iterator beg = paragraphs().begin();
164         ParagraphList::const_iterator par = paragraphs().begin();
165         ParagraphList::const_iterator end = paragraphs().end();
166
167         if (!undefined())
168                 // FIXME UNICODE
169                 sgml::openTag(os, layout_.latexname,
170                               par->getID(buf, runparams) + layout_.latexparam);
171
172         for (; par != end; ++par) {
173                 par->simpleDocBookOnePar(buf, os, runparams,
174                                          outerFont(std::distance(beg, par),
175                                                    paragraphs()));
176         }
177
178         if (!undefined())
179                 sgml::closeTag(os, layout_.latexname);
180
181         return 0;
182 }
183
184
185 void InsetFlex::textString(Buffer const & buf, odocstream & os) const
186 {
187         os << paragraphs().begin()->asString(buf, true);
188 }
189
190
191 void InsetFlexParams::write(ostream & os) const
192 {
193         os << "Flex " << name << "\n";
194 }
195
196
197 void InsetFlexParams::read(Lexer & lex)
198 {
199         while (lex.isOK()) {
200                 lex.next();
201                 string token = lex.getString();
202
203                 if (token == "Flex") {
204                         lex.next();
205                         name = lex.getString();
206                 }
207
208                 // This is handled in Collapsable
209                 else if (token == "status") {
210                         lex.pushToken(token);
211                         break;
212                 }
213         }
214 }
215
216
217 } // namespace lyx