]> git.lyx.org Git - lyx.git/blob - src/insets/InsetERT.cpp
57fc1e3419ebc1c9f281ebe76dde0aa93dae38a5
[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         xs << XMLStream::ESCAPE_NONE << "<!-- ";
102         while (par != end) {
103                 // Recreate the logic of makeParagraphs in output_docbook.cpp, but much simplified: never open <para>
104                 // in an ERT, use simple line breaks.
105                 par->simpleDocBookOnePar(buffer(), xs, runparams, text().outerFont(distance(begin, par)));
106
107                 // New line after each paragraph of the ERT, save the last one.
108                 ++par;
109                 if (par != end)
110                         xs << "\n";
111         }
112         xs << XMLStream::ESCAPE_NONE << " -->";
113 }
114
115
116 void InsetERT::doDispatch(Cursor & cur, FuncRequest & cmd)
117 {
118         switch (cmd.action()) {
119         case LFUN_INSET_MODIFY:
120                 if (cmd.getArg(0) == "ert") {
121                         cur.recordUndoInset(this);
122                         setStatus(cur, string2params(to_utf8(cmd.argument())));
123                         break;
124                 }
125                 //fall-through
126         default:
127                 InsetCollapsible::doDispatch(cur, cmd);
128                 break;
129         }
130
131 }
132
133
134 bool InsetERT::getStatus(Cursor & cur, FuncRequest const & cmd,
135         FuncStatus & status) const
136 {
137         switch (cmd.action()) {
138         case LFUN_INSET_INSERT:
139                 status.setEnabled(false);
140                 return true;
141         case LFUN_INSET_MODIFY:
142                 if (cmd.getArg(0) == "ert") {
143                         status.setEnabled(true);
144                         return true;
145                 }
146                 //fall through
147
148         default:
149                 return InsetCollapsible::getStatus(cur, cmd, status);
150         }
151 }
152
153
154
155 docstring const InsetERT::buttonLabel(BufferView const & bv) const
156 {
157         if (decoration() == InsetLayout::CLASSIC)
158                 return isOpen(bv) ? _("ERT") : getNewLabel(_("ERT"));
159         else
160                 return getNewLabel(_("ERT"));
161 }
162
163
164 InsetCollapsible::CollapseStatus InsetERT::string2params(string const & in)
165 {
166         if (in.empty())
167                 return Collapsed;
168         istringstream data(in);
169         Lexer lex;
170         lex.setStream(data);
171         lex.setContext("InsetERT::string2params");
172         lex >> "ert";
173         int s;
174         lex >> s;
175         return static_cast<CollapseStatus>(s);
176 }
177
178
179 string InsetERT::params2string(CollapseStatus status)
180 {
181         ostringstream data;
182         data << "ert" << ' ' << status;
183         return data.str();
184 }
185
186
187 docstring InsetERT::xhtml(XMLStream &, OutputParams const &) const
188 {
189         return docstring();
190 }
191
192 } // namespace lyx