]> git.lyx.org Git - lyx.git/blob - src/insets/InsetFlex.cpp
81bd94867a76d5e4d62e1abeef8abab6b52789e8
[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 "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         name_ = il.name;
51 }
52
53
54 InsetFlex::InsetFlex(InsetFlex const & in)
55         : InsetCollapsable(in), name_(in.name_)
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         os << "Flex " << name_ << "\n";
80         InsetCollapsable::write(buf, os);
81 }
82
83
84 void InsetFlex::read(Buffer const & buf, Lexer & lex)
85 {
86         while (lex.isOK()) {
87                 lex.next();
88                 string token = lex.getString();
89
90                 if (token == "Flex") {
91                         lex.next();
92                         name_ = lex.getString();
93                 }
94
95                 // This is handled in Collapsable
96                 else if (token == "status") {
97                         lex.pushToken(token);
98                         break;
99                 }
100         }
101         InsetCollapsable::read(buf, lex);
102 }
103
104
105 int InsetFlex::plaintext(Buffer const & buf, odocstream & os,
106                               OutputParams const & runparams) const
107 {
108         return InsetText::plaintext(buf, os, runparams);
109 }
110
111
112 int InsetFlex::docbook(Buffer const & buf, odocstream & os,
113                             OutputParams const & runparams) const
114 {
115         ParagraphList::const_iterator beg = paragraphs().begin();
116         ParagraphList::const_iterator par = paragraphs().begin();
117         ParagraphList::const_iterator end = paragraphs().end();
118
119         if (!undefined())
120                 sgml::openTag(os, layout_->latexname,
121                               par->getID(buf, runparams) + layout_->latexparam);
122
123         for (; par != end; ++par) {
124                 par->simpleDocBookOnePar(buf, os, runparams,
125                                          outerFont(std::distance(beg, par),
126                                                    paragraphs()));
127         }
128
129         if (!undefined())
130                 sgml::closeTag(os, layout_->latexname);
131
132         return 0;
133 }
134
135
136 void InsetFlex::textString(Buffer const & buf, odocstream & os) const
137 {
138         os << paragraphs().begin()->asString(buf, true);
139 }
140
141 } // namespace lyx