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