]> git.lyx.org Git - features.git/blob - src/insets/InsetFlex.cpp
remove two FIXME.
[features.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 "Lexer.h"
26 #include "Text.h"
27 #include "MetricsInfo.h"
28 #include "Paragraph.h"
29 #include "paragraph_funcs.h"
30 #include "sgml.h"
31
32 #include "frontends/FontMetrics.h"
33 #include "frontends/Painter.h"
34
35 #include "support/convert.h"
36
37 #include <sstream>
38
39
40 namespace lyx {
41
42 using std::string;
43 using std::ostream;
44
45
46 InsetFlex::InsetFlex(BufferParams const & bp,
47                                 InsetLayout const & il)
48         : InsetCollapsable(bp, Collapsed, &il)
49 {
50         params_.name = il.name;
51 }
52
53
54 InsetFlex::InsetFlex(InsetFlex const & in)
55         : InsetCollapsable(in), params_(in.params_)
56 {}
57
58
59 Inset * InsetFlex::clone() const
60 {
61         return new InsetFlex(*this);
62 }
63
64
65 bool InsetFlex::undefined() const
66 {
67         return layout_->labelstring == from_utf8("UNDEFINED");
68 }
69
70
71 docstring const InsetFlex::editMessage() const
72 {
73         return _("Opened Flex Inset");
74 }
75
76
77 void InsetFlex::write(Buffer const & buf, ostream & os) const
78 {
79         params_.write(os);
80         InsetCollapsable::write(buf, os);
81 }
82
83
84 void InsetFlex::read(Buffer const & buf, Lexer & lex)
85 {
86         params_.read(lex);
87         InsetCollapsable::read(buf, lex);
88 }
89
90
91 int InsetFlex::plaintext(Buffer const & buf, odocstream & os,
92                               OutputParams const & runparams) const
93 {
94         return InsetText::plaintext(buf, os, runparams);
95 }
96
97
98 int InsetFlex::docbook(Buffer const & buf, odocstream & os,
99                             OutputParams const & runparams) const
100 {
101         ParagraphList::const_iterator beg = paragraphs().begin();
102         ParagraphList::const_iterator par = paragraphs().begin();
103         ParagraphList::const_iterator end = paragraphs().end();
104
105         if (!undefined())
106                 sgml::openTag(os, layout_->latexname,
107                               par->getID(buf, runparams) + layout_->latexparam);
108
109         for (; par != end; ++par) {
110                 par->simpleDocBookOnePar(buf, os, runparams,
111                                          outerFont(std::distance(beg, par),
112                                                    paragraphs()));
113         }
114
115         if (!undefined())
116                 sgml::closeTag(os, layout_->latexname);
117
118         return 0;
119 }
120
121
122 void InsetFlex::textString(Buffer const & buf, odocstream & os) const
123 {
124         os << paragraphs().begin()->asString(buf, true);
125 }
126
127
128 void InsetFlexParams::write(ostream & os) const
129 {
130         os << "Flex " << name << "\n";
131 }
132
133
134 void InsetFlexParams::read(Lexer & lex)
135 {
136         while (lex.isOK()) {
137                 lex.next();
138                 string token = lex.getString();
139
140                 if (token == "Flex") {
141                         lex.next();
142                         name = lex.getString();
143                 }
144
145                 // This is handled in Collapsable
146                 else if (token == "status") {
147                         lex.pushToken(token);
148                         break;
149                 }
150         }
151 }
152
153
154 } // namespace lyx