]> git.lyx.org Git - lyx.git/blob - src/insets/InsetNote.cpp
Warnings
[lyx.git] / src / insets / InsetNote.cpp
1 /**
2  * \file InsetNote.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 "InsetNote.h"
16
17 #include "Buffer.h"
18 #include "BufferParams.h"
19 #include "BufferView.h"
20 #include "BufferParams.h"
21 #include "Counters.h"
22 #include "Cursor.h"
23 #include "support/debug.h"
24 #include "DispatchResult.h"
25 #include "Exporter.h"
26 #include "FuncRequest.h"
27 #include "FuncStatus.h"
28 #include "support/gettext.h"
29 #include "LaTeXFeatures.h"
30 #include "Lexer.h"
31 #include "MetricsInfo.h"
32 #include "OutputParams.h"
33 #include "ParIterator.h"
34 #include "TextClass.h"
35 #include "TocBackend.h"
36
37 #include "support/docstream.h"
38 #include "support/Translator.h"
39
40 #include <algorithm>
41 #include <sstream>
42
43 using namespace std;
44
45 namespace lyx {
46
47 namespace {
48
49 typedef Translator<string, InsetNoteParams::Type> NoteTranslator;
50 typedef Translator<docstring, InsetNoteParams::Type> NoteTranslatorLoc;
51
52 NoteTranslator const init_notetranslator()
53 {
54         NoteTranslator translator("Note", InsetNoteParams::Note);
55         translator.addPair("Comment", InsetNoteParams::Comment);
56         translator.addPair("Greyedout", InsetNoteParams::Greyedout);
57         return translator;
58 }
59
60
61 NoteTranslatorLoc const init_notetranslator_loc()
62 {
63         NoteTranslatorLoc translator(_("Note[[InsetNote]]"), InsetNoteParams::Note);
64         translator.addPair(_("Comment"), InsetNoteParams::Comment);
65         translator.addPair(_("Greyed out"), InsetNoteParams::Greyedout);
66         return translator;
67 }
68
69
70 NoteTranslator const & notetranslator()
71 {
72         static NoteTranslator translator = init_notetranslator();
73         return translator;
74 }
75
76
77 NoteTranslatorLoc const & notetranslator_loc()
78 {
79         static NoteTranslatorLoc translator = init_notetranslator_loc();
80         return translator;
81 }
82
83 } // anon
84
85
86
87
88 InsetNoteParams::InsetNoteParams()
89         : type(Note)
90 {}
91
92
93 void InsetNoteParams::write(ostream & os) const
94 {
95         string const label = notetranslator().find(type);
96         os << "Note " << label << "\n";
97 }
98
99
100 void InsetNoteParams::read(Lexer & lex)
101 {
102         string label;
103         lex >> label;
104         if (lex)
105                 type = notetranslator().find(label);
106 }
107
108
109 InsetNote::InsetNote(BufferParams const & bp, string const & label)
110         : InsetCollapsable(bp)
111 {
112         params_.type = notetranslator().find(label);
113 }
114
115
116 InsetNote::InsetNote(InsetNote const & in)
117         : InsetCollapsable(in), params_(in.params_)
118 {}
119
120
121 InsetNote::~InsetNote()
122 {
123         InsetNoteMailer(*this).hideDialog();
124 }
125
126
127 Inset * InsetNote::clone() const
128 {
129         return new InsetNote(*this);
130 }
131
132
133 docstring const InsetNote::editMessage() const
134 {
135         return _("Opened Note Inset");
136 }
137
138
139 docstring InsetNote::name() const 
140 {
141         return from_ascii(string("Note") + string(":") + string(notetranslator().find(params_.type)));
142 }
143
144
145 Inset::DisplayType InsetNote::display() const
146 {
147         return Inline;
148 }
149
150
151 void InsetNote::write(Buffer const & buf, ostream & os) const
152 {
153         params_.write(os);
154         InsetCollapsable::write(buf, os);
155 }
156
157
158 void InsetNote::read(Buffer const & buf, Lexer & lex)
159 {
160         params_.read(lex);
161         InsetCollapsable::read(buf, lex);
162 }
163
164
165 void InsetNote::setButtonLabel()
166 {
167         docstring const label = notetranslator_loc().find(params_.type);
168         setLabel(label);
169 }
170
171
172 bool InsetNote::showInsetDialog(BufferView * bv) const
173 {
174         InsetNoteMailer(const_cast<InsetNote &>(*this)).showDialog(bv);
175         return true;
176 }
177
178
179 void InsetNote::doDispatch(Cursor & cur, FuncRequest & cmd)
180 {
181         switch (cmd.action) {
182
183         case LFUN_INSET_MODIFY:
184                 InsetNoteMailer::string2params(to_utf8(cmd.argument()), params_);
185                 // get a bp from cur:
186                 setLayout(cur.buffer().params());
187                 break;
188
189         case LFUN_INSET_DIALOG_UPDATE:
190                 InsetNoteMailer(*this).updateDialog(&cur.bv());
191                 break;
192         default:
193                 InsetCollapsable::doDispatch(cur, cmd);
194                 break;
195         }
196 }
197
198
199 bool InsetNote::getStatus(Cursor & cur, FuncRequest const & cmd,
200                 FuncStatus & flag) const
201 {
202         switch (cmd.action) {
203
204         case LFUN_INSET_MODIFY:
205         case LFUN_INSET_DIALOG_UPDATE:
206                 flag.enabled(true);
207                 return true;
208
209         default:
210                 return InsetCollapsable::getStatus(cur, cmd, flag);
211         }
212 }
213
214 void InsetNote::updateLabels(Buffer const & buf, ParIterator const & it)
215 {
216         TextClass const & tclass = buf.params().getTextClass();
217         Counters savecnt = tclass.counters();
218         InsetCollapsable::updateLabels(buf, it);
219         tclass.counters() = savecnt;
220 }
221
222
223 void InsetNote::addToToc(TocList & toclist, Buffer const & /*buf*/, ParConstIterator const &) const
224 {
225         ParConstIterator pit = par_const_iterator_begin(*this);
226
227         Toc & toc = toclist["note"];
228         // FIXME: we probably want the note type too.
229         docstring str;
230         str = getNewLabel(str);
231         toc.push_back(TocItem(pit, 0, str));
232 }
233
234
235 bool InsetNote::isMacroScope(Buffer const & buf) const
236 {
237         // LyX note has no latex output
238         if (params_.type == InsetNoteParams::Note)
239                 return true;
240
241         return InsetCollapsable::isMacroScope(buf);
242 }
243
244
245 int InsetNote::latex(Buffer const & buf, odocstream & os,
246                      OutputParams const & runparams_in) const
247 {
248         if (params_.type == InsetNoteParams::Note)
249                 return 0;
250
251         OutputParams runparams(runparams_in);
252         if (params_.type == InsetNoteParams::Comment) {
253                 runparams.inComment = true;
254                 // Ignore files that are exported inside a comment
255                 runparams.exportdata.reset(new ExportData);
256         } 
257
258         odocstringstream ss;
259         InsetCollapsable::latex(buf, ss, runparams);
260         // the space after the comment in 'a[comment] b' will be eaten by the
261         // comment environment since the space before b is ignored with the
262         // following latex output:
263         //
264         // a%
265         // \begin{comment}
266         // comment
267         // \end{comment}
268         //  b
269         //
270         // Adding {} before ' b' fixes this.
271         if (params_.type == InsetNoteParams::Comment)
272                 ss << "{}";
273
274         docstring const str = ss.str();
275         os << str;
276         runparams_in.encoding = runparams.encoding;
277         // Return how many newlines we issued.
278         return int(count(str.begin(), str.end(), '\n'));
279 }
280
281
282 int InsetNote::plaintext(Buffer const & buf, odocstream & os,
283                          OutputParams const & runparams_in) const
284 {
285         if (params_.type == InsetNoteParams::Note)
286                 return 0;
287
288         OutputParams runparams(runparams_in);
289         if (params_.type == InsetNoteParams::Comment) {
290                 runparams.inComment = true;
291                 // Ignore files that are exported inside a comment
292                 runparams.exportdata.reset(new ExportData);
293         }
294         os << '[' << buf.B_("note") << ":\n";
295         InsetText::plaintext(buf, os, runparams);
296         os << "\n]";
297
298         return PLAINTEXT_NEWLINE + 1; // one char on a separate line
299 }
300
301
302 int InsetNote::docbook(Buffer const & buf, odocstream & os,
303                        OutputParams const & runparams_in) const
304 {
305         if (params_.type == InsetNoteParams::Note)
306                 return 0;
307
308         OutputParams runparams(runparams_in);
309         if (params_.type == InsetNoteParams::Comment) {
310                 os << "<remark>\n";
311                 runparams.inComment = true;
312                 // Ignore files that are exported inside a comment
313                 runparams.exportdata.reset(new ExportData);
314         }
315
316         int const n = InsetText::docbook(buf, os, runparams);
317
318         if (params_.type == InsetNoteParams::Comment)
319                 os << "\n</remark>\n";
320
321         // Return how many newlines we issued.
322         //return int(count(str.begin(), str.end(), '\n'));
323         return n + 1 + 2;
324 }
325
326
327 void InsetNote::validate(LaTeXFeatures & features) const
328 {
329         if (params_.type == InsetNoteParams::Comment)
330                 features.require("verbatim");
331         if (params_.type == InsetNoteParams::Greyedout) {
332                 features.require("color");
333                 features.require("lyxgreyedout");
334         }
335         InsetText::validate(features);
336 }
337
338
339
340 string const InsetNoteMailer::name_("note");
341
342 InsetNoteMailer::InsetNoteMailer(InsetNote & inset)
343         : inset_(inset)
344 {}
345
346
347 string const InsetNoteMailer::inset2string(Buffer const &) const
348 {
349         return params2string(inset_.params());
350 }
351
352
353 string const InsetNoteMailer::params2string(InsetNoteParams const & params)
354 {
355         ostringstream data;
356         data << name_ << ' ';
357         params.write(data);
358         return data.str();
359 }
360
361
362 void InsetNoteMailer::string2params(string const & in,
363                                     InsetNoteParams & params)
364 {
365         params = InsetNoteParams();
366
367         if (in.empty())
368                 return;
369
370         istringstream data(in);
371         Lexer lex(0,0);
372         lex.setStream(data);
373
374         string name;
375         lex >> name;
376         if (!lex || name != name_)
377                 return print_mailer_error("InsetNoteMailer", in, 1, name_);
378
379         // This is part of the inset proper that is usually swallowed
380         // by Text::readInset
381         string id;
382         lex >> id;
383         if (!lex || id != "Note")
384                 return print_mailer_error("InsetBoxMailer", in, 2, "Note");
385
386         params.read(lex);
387 }
388
389
390 } // namespace lyx