]> git.lyx.org Git - lyx.git/blob - src/insets/InsetERT.cpp
DocBook: new logic to handle the new lines, only used in output_docbook for now.
[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 makeParagraph 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         xs << xml::CR();
120 }
121
122
123 void InsetERT::doDispatch(Cursor & cur, FuncRequest & cmd)
124 {
125         switch (cmd.action()) {
126         case LFUN_INSET_MODIFY:
127                 if (cmd.getArg(0) == "ert") {
128                         cur.recordUndoInset(this);
129                         setStatus(cur, string2params(to_utf8(cmd.argument())));
130                         break;
131                 }
132                 //fall-through
133         default:
134                 InsetCollapsible::doDispatch(cur, cmd);
135                 break;
136         }
137
138 }
139
140
141 bool InsetERT::getStatus(Cursor & cur, FuncRequest const & cmd,
142         FuncStatus & status) const
143 {
144         switch (cmd.action()) {
145         case LFUN_INSET_INSERT:
146                 status.setEnabled(false);
147                 return true;
148         case LFUN_INSET_MODIFY:
149                 if (cmd.getArg(0) == "ert") {
150                         status.setEnabled(true);
151                         return true;
152                 }
153                 //fall through
154
155         default:
156                 return InsetCollapsible::getStatus(cur, cmd, status);
157         }
158 }
159
160
161
162 docstring const InsetERT::buttonLabel(BufferView const & bv) const
163 {
164         if (decoration() == InsetLayout::CLASSIC)
165                 return isOpen(bv) ? _("ERT") : getNewLabel(_("ERT"));
166         else
167                 return getNewLabel(_("ERT"));
168 }
169
170
171 InsetCollapsible::CollapseStatus InsetERT::string2params(string const & in)
172 {
173         if (in.empty())
174                 return Collapsed;
175         istringstream data(in);
176         Lexer lex;
177         lex.setStream(data);
178         lex.setContext("InsetERT::string2params");
179         lex >> "ert";
180         int s;
181         lex >> s;
182         return static_cast<CollapseStatus>(s);
183 }
184
185
186 string InsetERT::params2string(CollapseStatus status)
187 {
188         ostringstream data;
189         data << "ert" << ' ' << status;
190         return data.str();
191 }
192
193
194 docstring InsetERT::xhtml(XMLStream &, OutputParams const &) const
195 {
196         return docstring();
197 }
198
199 } // namespace lyx