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