]> git.lyx.org Git - lyx.git/blob - src/insets/InsetERT.cpp
Does not compile on older gcc.
[lyx.git] / src / insets / InsetERT.cpp
1 /**
2  * \file InsetERT.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Jürgen Vigna
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "InsetERT.h"
15
16 #include "Buffer.h"
17 #include "BufferParams.h"
18 #include "BufferView.h"
19 #include "Cursor.h"
20 #include "DispatchResult.h"
21 #include "FuncRequest.h"
22 #include "FuncStatus.h"
23 #include "Language.h"
24 #include "Layout.h"
25 #include "Lexer.h"
26 #include "LyXAction.h"
27 #include "OutputParams.h"
28 #include "xml.h"
29 #include "ParagraphParameters.h"
30 #include "Paragraph.h"
31 #include <output_docbook.h>
32
33 #include "support/docstream.h"
34 #include "support/gettext.h"
35 #include "support/lstrings.h"
36 #include "support/TempFile.h"
37
38 #include <sstream>
39
40 using namespace std;
41 using namespace lyx::support;
42
43 namespace lyx {
44
45 InsetERT::InsetERT(Buffer * buf, CollapseStatus status)
46         : InsetCollapsible(buf)
47 {
48         status_ = status;
49 }
50
51
52 InsetERT::InsetERT(InsetERT const & old)
53         : InsetCollapsible(old)
54 {}
55
56
57 void InsetERT::write(ostream & os) const
58 {
59         os << "ERT" << "\n";
60         InsetCollapsible::write(os);
61 }
62
63
64 int InsetERT::plaintext(odocstringstream & os,
65         OutputParams const & rp, size_t max_length) const
66 {
67         if (!rp.inIndexEntry)
68                 // do not output TeX code
69                 return 0;
70
71         ParagraphList::const_iterator par = paragraphs().begin();
72         ParagraphList::const_iterator end = paragraphs().end();
73
74         while (par != end && os.str().size() <= max_length) {
75                 pos_type siz = par->size();
76                 for (pos_type i = 0; i < siz; ++i) {
77                         char_type const c = par->getChar(i);
78                         // output the active characters
79                         switch (c) {
80                         case '|':
81                         case '!':
82                         case '@':
83                                 os.put(c);
84                                 break;
85                         default:
86                                 break;
87                         }
88                 }
89                 ++par;
90         }
91         return 0;
92 }
93
94
95 void InsetERT::docbook(XMLStream & xs, OutputParams const & runparams) const
96 {
97         auto const begin = paragraphs().begin();
98         auto par = begin;
99         auto const end = paragraphs().end();
100
101         odocstringstream os2;
102         XMLStream xs2(os2);
103
104         // Recreate the logic of makeParagraphs in output_docbook.cpp, but much simplified: never open <para>
105         // in an ERT, use simple line breaks.
106         while (par != end) {
107                 par->simpleDocBookOnePar(buffer(), xs2, runparams, text().outerFont(distance(begin, par)));
108
109                 // New line after each paragraph of the ERT, save the last one.
110                 ++par;
111                 if (par != end)
112                         xs << "\n";
113         }
114
115         // Output the ERT as a comment with the appropriate escaping.
116         xs << XMLStream::ESCAPE_NONE << "<!-- ";
117         xs << XMLStream::ESCAPE_COMMENTS << os2.str();
118         xs << XMLStream::ESCAPE_NONE << " -->";
119 }
120
121
122 void InsetERT::doDispatch(Cursor & cur, FuncRequest & cmd)
123 {
124         switch (cmd.action()) {
125         case LFUN_INSET_MODIFY:
126                 if (cmd.getArg(0) == "ert") {
127                         cur.recordUndoInset(this);
128                         setStatus(cur, string2params(to_utf8(cmd.argument())));
129                         break;
130                 }
131                 //fall-through
132         default:
133                 InsetCollapsible::doDispatch(cur, cmd);
134                 break;
135         }
136
137 }
138
139
140 bool InsetERT::getStatus(Cursor & cur, FuncRequest const & cmd,
141         FuncStatus & status) const
142 {
143         switch (cmd.action()) {
144         case LFUN_INSET_INSERT:
145                 status.setEnabled(false);
146                 return true;
147         case LFUN_INSET_MODIFY:
148                 if (cmd.getArg(0) == "ert") {
149                         status.setEnabled(true);
150                         return true;
151                 }
152                 //fall through
153
154         default:
155                 return InsetCollapsible::getStatus(cur, cmd, status);
156         }
157 }
158
159
160
161 docstring const InsetERT::buttonLabel(BufferView const & bv) const
162 {
163         if (decoration() == InsetLayout::CLASSIC)
164                 return isOpen(bv) ? _("ERT") : getNewLabel(_("ERT"));
165         else
166                 return getNewLabel(_("ERT"));
167 }
168
169
170 InsetCollapsible::CollapseStatus InsetERT::string2params(string const & in)
171 {
172         if (in.empty())
173                 return Collapsed;
174         istringstream data(in);
175         Lexer lex;
176         lex.setStream(data);
177         lex.setContext("InsetERT::string2params");
178         lex >> "ert";
179         int s;
180         lex >> s;
181         return static_cast<CollapseStatus>(s);
182 }
183
184
185 string InsetERT::params2string(CollapseStatus status)
186 {
187         ostringstream data;
188         data << "ert" << ' ' << status;
189         return data.str();
190 }
191
192
193 docstring InsetERT::xhtml(XMLStream &, OutputParams const &) const
194 {
195         return docstring();
196 }
197
198 } // namespace lyx