]> git.lyx.org Git - lyx.git/blob - src/insets/InsetNote.cpp
Do not check again and again for non existing files
[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 "ColorSet.h"
22 #include "Counters.h"
23 #include "Cursor.h"
24 #include "DispatchResult.h"
25 #include "Exporter.h"
26 #include "FuncRequest.h"
27 #include "FuncStatus.h"
28 #include "InsetIterator.h"
29 #include "LaTeXFeatures.h"
30 #include "Lexer.h"
31 #include "LyXRC.h"
32 #include "OutputParams.h"
33 #include "ParIterator.h"
34 #include "TextClass.h"
35 #include "TocBackend.h"
36
37 #include "support/debug.h"
38 #include "support/docstream.h"
39 #include "support/gettext.h"
40 #include "support/lstrings.h"
41 #include "support/Translator.h"
42
43 #include "frontends/Application.h"
44
45 #include <algorithm>
46 #include <sstream>
47
48 using namespace std;
49
50 namespace lyx {
51
52 namespace {
53
54 typedef Translator<string, InsetNoteParams::Type> NoteTranslator;
55
56 NoteTranslator const init_notetranslator()
57 {
58         NoteTranslator translator("Note", InsetNoteParams::Note);
59         translator.addPair("Comment", InsetNoteParams::Comment);
60         translator.addPair("Greyedout", InsetNoteParams::Greyedout);
61         return translator;
62 }
63
64
65 NoteTranslator const & notetranslator()
66 {
67         static NoteTranslator const translator = init_notetranslator();
68         return translator;
69 }
70
71
72 } // namespace
73
74
75 InsetNoteParams::InsetNoteParams()
76         : type(Note)
77 {}
78
79
80 void InsetNoteParams::write(ostream & os) const
81 {
82         string const label = notetranslator().find(type);
83         os << "Note " << label << "\n";
84 }
85
86
87 void InsetNoteParams::read(Lexer & lex)
88 {
89         string label;
90         lex >> label;
91         if (lex)
92                 type = notetranslator().find(label);
93 }
94
95
96 /////////////////////////////////////////////////////////////////////
97 //
98 // InsetNote
99 //
100 /////////////////////////////////////////////////////////////////////
101
102 InsetNote::InsetNote(Buffer * buf, string const & label)
103         : InsetCollapsible(buf)
104 {
105         params_.type = notetranslator().find(label);
106 }
107
108
109 InsetNote::~InsetNote()
110 {
111         hideDialogs("note", this);
112 }
113
114
115 docstring InsetNote::layoutName() const
116 {
117         return from_ascii("Note:" + notetranslator().find(params_.type));
118 }
119
120
121 Inset::DisplayType InsetNote::display() const
122 {
123         return Inline;
124 }
125
126
127 void InsetNote::write(ostream & os) const
128 {
129         params_.write(os);
130         InsetCollapsible::write(os);
131 }
132
133
134 void InsetNote::read(Lexer & lex)
135 {
136         params_.read(lex);
137         InsetCollapsible::read(lex);
138 }
139
140
141 bool InsetNote::showInsetDialog(BufferView * bv) const
142 {
143         bv->showDialog("note", params2string(params()),
144                 const_cast<InsetNote *>(this));
145         return true;
146 }
147
148
149 void InsetNote::doDispatch(Cursor & cur, FuncRequest & cmd)
150 {
151         switch (cmd.action()) {
152
153         case LFUN_INSET_MODIFY: {
154                 // Do not do anything if converting to the same type of Note.
155                 // A quick break here is done instead of disabling the LFUN
156                 // because disabling the LFUN would lead to a greyed out
157                 // entry, which might confuse users.
158                 // In the future, we might want to have a radio button for
159                 // switching between notes.
160                 InsetNoteParams params;
161                 string2params(to_utf8(cmd.argument()), params);
162                 if (params_.type == params.type)
163                   break;
164
165                 cur.recordUndoInset(this);
166                 string2params(to_utf8(cmd.argument()), params_);
167                 setButtonLabel();
168                 // what we really want here is a TOC update, but that means
169                 // a full buffer update
170                 cur.forceBufferUpdate();
171                 break;
172         }
173
174         case LFUN_INSET_DIALOG_UPDATE:
175                 cur.bv().updateDialog("note", params2string(params()));
176                 break;
177
178         default:
179                 InsetCollapsible::doDispatch(cur, cmd);
180                 break;
181         }
182 }
183
184
185 bool InsetNote::getStatus(Cursor & cur, FuncRequest const & cmd,
186                 FuncStatus & flag) const
187 {
188         switch (cmd.action()) {
189
190         case LFUN_INSET_MODIFY:
191                 // disallow comment and greyed out in commands
192                 flag.setEnabled(!cur.paragraph().layout().isCommand() ||
193                                 cmd.getArg(2) == "Note");
194                 if (cmd.getArg(0) == "note") {
195                         InsetNoteParams params;
196                         string2params(to_utf8(cmd.argument()), params);
197                         flag.setOnOff(params_.type == params.type);
198                 }
199                 return true;
200
201         case LFUN_INSET_DIALOG_UPDATE:
202                 flag.setEnabled(true);
203                 return true;
204
205         default:
206                 return InsetCollapsible::getStatus(cur, cmd, flag);
207         }
208 }
209
210
211 bool InsetNote::isMacroScope() const
212 {
213         // LyX note has no latex output
214         if (params_.type == InsetNoteParams::Note)
215                 return true;
216
217         return InsetCollapsible::isMacroScope();
218 }
219
220
221 void InsetNote::latex(otexstream & os, OutputParams const & runparams_in) const
222 {
223         if (params_.type == InsetNoteParams::Note)
224                 return;
225
226         OutputParams runparams(runparams_in);
227         if (params_.type == InsetNoteParams::Comment) {
228                 runparams.inComment = true;
229                 // Ignore files that are exported inside a comment
230                 runparams.exportdata.reset(new ExportData);
231         }
232
233         // the space after the comment in 'a[comment] b' will be eaten by the
234         // comment environment since the space before b is ignored with the
235         // following latex output:
236         //
237         // a%
238         // \begin{comment}
239         // comment
240         // \end{comment}
241         //  b
242         //
243         // Adding {} before ' b' fixes this.
244         // The {} will be automatically added, but only if needed, for all
245         // insets whose InsetLayout Display tag is false. This is achieved
246         // by telling otexstream to protect an immediately following space
247         // and is done for both comment and greyedout insets.
248         InsetCollapsible::latex(os, runparams);
249
250         runparams_in.encoding = runparams.encoding;
251 }
252
253
254 int InsetNote::plaintext(odocstringstream & os,
255                          OutputParams const & runparams_in, size_t max_length) const
256 {
257         if (params_.type == InsetNoteParams::Note)
258                 return 0;
259
260         OutputParams runparams(runparams_in);
261         if (params_.type == InsetNoteParams::Comment) {
262                 runparams.inComment = true;
263                 // Ignore files that are exported inside a comment
264                 runparams.exportdata.reset(new ExportData);
265         }
266         os << '[' << buffer().B_("note") << ":\n";
267         InsetText::plaintext(os, runparams, max_length);
268         os << "\n]";
269
270         return PLAINTEXT_NEWLINE + 1; // one char on a separate line
271 }
272
273
274 int InsetNote::docbook(odocstream & os, OutputParams const & runparams_in) const
275 {
276         if (params_.type == InsetNoteParams::Note)
277                 return 0;
278
279         OutputParams runparams(runparams_in);
280         if (params_.type == InsetNoteParams::Comment) {
281                 os << "<remark>\n";
282                 runparams.inComment = true;
283                 // Ignore files that are exported inside a comment
284                 runparams.exportdata.reset(new ExportData);
285         }
286
287         int const n = InsetText::docbook(os, runparams);
288
289         if (params_.type == InsetNoteParams::Comment)
290                 os << "\n</remark>\n";
291
292         // Return how many newlines we issued.
293         //return int(count(str.begin(), str.end(), '\n'));
294         return n + 1 + 2;
295 }
296
297
298 docstring InsetNote::xhtml(XHTMLStream & xs, OutputParams const & rp) const
299 {
300         if (params_.type == InsetNoteParams::Note)
301                 return docstring();
302
303         return InsetCollapsible::xhtml(xs, rp);
304 }
305
306
307 void InsetNote::validate(LaTeXFeatures & features) const
308 {
309         switch (params_.type) {
310         case InsetNoteParams::Comment:
311                 if (features.runparams().flavor == OutputParams::HTML)
312                         // we do output this but set display to "none" by default,
313                         // but people might want to use it.
314                         InsetCollapsible::validate(features);
315                 else
316                         // Only do the requires
317                         features.useInsetLayout(getLayout());
318                 break;
319         case InsetNoteParams::Greyedout:
320                 if (features.hasRTLLanguage())
321                         features.require("environ");
322                 InsetCollapsible::validate(features);
323                 break;
324         case InsetNoteParams::Note:
325                 break;
326         }
327 }
328
329
330 string InsetNote::contextMenuName() const
331 {
332         return "context-note";
333 }
334
335 bool InsetNote::allowSpellCheck() const
336 {
337         return (params_.type == InsetNoteParams::Greyedout || lyxrc.spellcheck_notes);
338 }
339
340 FontInfo InsetNote::getFont() const
341 {
342         FontInfo font = getLayout().font();
343         // FIXME: This hardcoded color is a hack!
344         if (params_.type == InsetNoteParams::Greyedout
345             && buffer().params().notefontcolor != lyx::rgbFromHexName("#cccccc")) {
346                 ColorCode c = lcolor.getFromLyXName("notefontcolor");
347                 if (c != Color_none)
348                         font.setColor(c);
349         }
350         return font;
351 }
352
353
354 string InsetNote::params2string(InsetNoteParams const & params)
355 {
356         ostringstream data;
357         data << "note" << ' ';
358         params.write(data);
359         return data.str();
360 }
361
362
363 void InsetNote::string2params(string const & in, InsetNoteParams & params)
364 {
365         params = InsetNoteParams();
366
367         if (in.empty())
368                 return;
369
370         istringstream data(in);
371         Lexer lex;
372         lex.setStream(data);
373         lex.setContext("InsetNote::string2params");
374         lex >> "note";
375         // There are cases, such as when we are called via getStatus() from
376         // Dialog::canApply(), where we are just called with "note" rather
377         // than a full "note Note TYPE".
378         if (!lex.isOK())
379                 return;
380         lex >> "Note";
381
382         params.read(lex);
383 }
384
385
386 } // namespace lyx