]> git.lyx.org Git - lyx.git/blob - src/insets/InsetNote.cpp
Change inset label from ": filename" to "Program Listing: filename" for listings...
[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 "support/gettext.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/Translator.h"
39
40 #include "frontends/Application.h"
41
42 #include <algorithm>
43 #include <sstream>
44
45 using namespace std;
46
47 namespace lyx {
48
49 namespace {
50
51 typedef Translator<string, InsetNoteParams::Type> NoteTranslator;
52 typedef Translator<docstring, InsetNoteParams::Type> NoteTranslatorLoc;
53
54 NoteTranslator const init_notetranslator()
55 {
56         NoteTranslator translator("Note", InsetNoteParams::Note);
57         translator.addPair("Comment", InsetNoteParams::Comment);
58         translator.addPair("Greyedout", InsetNoteParams::Greyedout);
59         return translator;
60 }
61
62
63 NoteTranslatorLoc const init_notetranslator_loc()
64 {
65         NoteTranslatorLoc translator(_("Note[[InsetNote]]"), InsetNoteParams::Note);
66         translator.addPair(_("Comment"), InsetNoteParams::Comment);
67         translator.addPair(_("Greyed out"), InsetNoteParams::Greyedout);
68         return translator;
69 }
70
71
72 NoteTranslator const & notetranslator()
73 {
74         static NoteTranslator translator = init_notetranslator();
75         return translator;
76 }
77
78
79 NoteTranslatorLoc const & notetranslator_loc()
80 {
81         static NoteTranslatorLoc translator = init_notetranslator_loc();
82         return translator;
83 }
84
85 } // anon
86
87
88
89
90 InsetNoteParams::InsetNoteParams()
91         : type(Note)
92 {}
93
94
95 void InsetNoteParams::write(ostream & os) const
96 {
97         string const label = notetranslator().find(type);
98         os << "Note " << label << "\n";
99 }
100
101
102 void InsetNoteParams::read(Lexer & lex)
103 {
104         string label;
105         lex >> label;
106         if (lex)
107                 type = notetranslator().find(label);
108 }
109
110
111 /////////////////////////////////////////////////////////////////////
112 //
113 // InsetNode
114 //
115 /////////////////////////////////////////////////////////////////////
116
117 InsetNote::InsetNote(Buffer const & buf, string const & label)
118         : InsetCollapsable(buf)
119 {
120         params_.type = notetranslator().find(label);
121 }
122
123
124 InsetNote::~InsetNote()
125 {
126         hideDialogs("note", this);
127 }
128
129
130 docstring InsetNote::editMessage() const
131 {
132         return _("Opened Note Inset");
133 }
134
135
136 docstring InsetNote::name() const 
137 {
138         return from_ascii("Note:" + notetranslator().find(params_.type));
139 }
140
141
142 Inset::DisplayType InsetNote::display() const
143 {
144         return Inline;
145 }
146
147
148 void InsetNote::write(ostream & os) const
149 {
150         params_.write(os);
151         InsetCollapsable::write(os);
152 }
153
154
155 void InsetNote::read(Lexer & lex)
156 {
157         params_.read(lex);
158         InsetCollapsable::read(lex);
159 }
160
161
162 void InsetNote::setButtonLabel()
163 {
164         docstring const label = notetranslator_loc().find(params_.type);
165         setLabel(label);
166 }
167
168
169 bool InsetNote::showInsetDialog(BufferView * bv) const
170 {
171         bv->showDialog("note", params2string(params()),
172                 const_cast<InsetNote *>(this));
173         return true;
174 }
175
176
177 void InsetNote::doDispatch(Cursor & cur, FuncRequest & cmd)
178 {
179         switch (cmd.action) {
180
181         case LFUN_INSET_MODIFY:
182                 string2params(to_utf8(cmd.argument()), params_);
183                 // get a bp from cur:
184                 setLayout(cur.buffer().params());
185                 break;
186
187         case LFUN_INSET_DIALOG_UPDATE:
188                 cur.bv().updateDialog("note", params2string(params()));
189                 break;
190
191         default:
192                 InsetCollapsable::doDispatch(cur, cmd);
193                 break;
194         }
195 }
196
197
198 bool InsetNote::getStatus(Cursor & cur, FuncRequest const & cmd,
199                 FuncStatus & flag) const
200 {
201         switch (cmd.action) {
202
203         case LFUN_INSET_MODIFY:
204                 // disallow comment and greyed out in commands
205                 flag.setEnabled(!cur.paragraph().layout().isCommand() ||
206                                 cmd.getArg(2) == "Note");
207                 if (cmd.getArg(0) == "note") {
208                         InsetNoteParams params;
209                         string2params(to_utf8(cmd.argument()), params);
210                         flag.setOnOff(params_.type == params.type);
211                 }
212                 return true;
213
214         case LFUN_INSET_DIALOG_UPDATE:
215                 flag.setEnabled(true);
216                 return true;
217
218         default:
219                 return InsetCollapsable::getStatus(cur, cmd, flag);
220         }
221 }
222
223
224 void InsetNote::addToToc(DocIterator const & cpit)
225 {
226         DocIterator pit = cpit;
227         pit.push_back(CursorSlice(*this));
228
229         Toc & toc = buffer().tocBackend().toc("note");
230         docstring str;
231         str = notetranslator_loc().find(params_.type) + from_ascii(": ")
232                 + getNewLabel(str);
233         toc.push_back(TocItem(pit, 0, str));
234 }
235
236
237 bool InsetNote::isMacroScope() const
238 {
239         // LyX note has no latex output
240         if (params_.type == InsetNoteParams::Note)
241                 return true;
242
243         return InsetCollapsable::isMacroScope();
244 }
245
246
247 int InsetNote::latex(odocstream & os, OutputParams const & runparams_in) const
248 {
249         if (params_.type == InsetNoteParams::Note)
250                 return 0;
251
252         OutputParams runparams(runparams_in);
253         if (params_.type == InsetNoteParams::Comment) {
254                 runparams.inComment = true;
255                 // Ignore files that are exported inside a comment
256                 runparams.exportdata.reset(new ExportData);
257         } 
258
259         odocstringstream ss;
260         InsetCollapsable::latex(ss, runparams);
261         // the space after the comment in 'a[comment] b' will be eaten by the
262         // comment environment since the space before b is ignored with the
263         // following latex output:
264         //
265         // a%
266         // \begin{comment}
267         // comment
268         // \end{comment}
269         //  b
270         //
271         // Adding {} before ' b' fixes this.
272         if (params_.type == InsetNoteParams::Comment)
273                 ss << "{}";
274
275         docstring const str = ss.str();
276         os << str;
277         runparams_in.encoding = runparams.encoding;
278         // Return how many newlines we issued.
279         return int(count(str.begin(), str.end(), '\n'));
280 }
281
282
283 int InsetNote::plaintext(odocstream & os,
284                          OutputParams const & runparams_in) const
285 {
286         if (params_.type == InsetNoteParams::Note)
287                 return 0;
288
289         OutputParams runparams(runparams_in);
290         if (params_.type == InsetNoteParams::Comment) {
291                 runparams.inComment = true;
292                 // Ignore files that are exported inside a comment
293                 runparams.exportdata.reset(new ExportData);
294         }
295         os << '[' << buffer().B_("note") << ":\n";
296         InsetText::plaintext(os, runparams);
297         os << "\n]";
298
299         return PLAINTEXT_NEWLINE + 1; // one char on a separate line
300 }
301
302
303 int InsetNote::docbook(odocstream & os, 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(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 docstring InsetNote::contextMenu(BufferView const &, int, int) const
340 {
341         return from_ascii("context-note");
342 }
343
344
345 string InsetNote::params2string(InsetNoteParams const & params)
346 {
347         ostringstream data;
348         data << "note" << ' ';
349         params.write(data);
350         return data.str();
351 }
352
353
354 void InsetNote::string2params(string const & in, InsetNoteParams & params)
355 {
356         params = InsetNoteParams();
357
358         if (in.empty())
359                 return;
360
361         istringstream data(in);
362         Lexer lex;
363         lex.setStream(data);
364         lex.setContext("InsetNote::string2params");
365         lex >> "note" >> "Note";
366
367         params.read(lex);
368 }
369
370
371 } // namespace lyx