]> git.lyx.org Git - lyx.git/blob - src/insets/insetnote.C
change "support/std_sstream.h" to <sstream>
[lyx.git] / src / insets / insetnote.C
1 /**
2  * \file insetnote.C
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 "BufferView.h"
18 #include "cursor.h"
19 #include "debug.h"
20 #include "dispatchresult.h"
21 #include "funcrequest.h"
22 #include "gettext.h"
23 #include "LaTeXFeatures.h"
24 #include "LColor.h"
25 #include "lyxlex.h"
26 #include "metricsinfo.h"
27 #include "paragraph.h"
28
29 #include "support/lyxalgo.h"
30 #include "support/translator.h"
31
32 #include <sstream>
33
34 using std::string;
35 using std::auto_ptr;
36 using std::istringstream;
37 using std::ostream;
38 using std::ostringstream;
39
40
41 namespace {
42
43 typedef Translator<std::string, InsetNoteParams::Type> NoteTranslator;
44
45 NoteTranslator const init_notetranslator() {
46         NoteTranslator translator("Note", InsetNoteParams::Note);
47         translator.addPair("Comment", InsetNoteParams::Comment);
48         translator.addPair("Greyedout", InsetNoteParams::Greyedout);
49         return translator;
50 }
51
52
53 NoteTranslator const init_notetranslator_loc() {
54         NoteTranslator translator(_("Note"), InsetNoteParams::Note);
55         translator.addPair(_("Comment"), InsetNoteParams::Comment);
56         translator.addPair(_("Greyed out"), InsetNoteParams::Greyedout);
57         return translator;
58 }
59
60
61 NoteTranslator const & notetranslator() {
62         static NoteTranslator translator = init_notetranslator();
63         return translator;
64 }
65
66
67 NoteTranslator const & notetranslator_loc() {
68         static NoteTranslator translator = init_notetranslator_loc();
69         return translator;
70 }
71
72 } // anon
73
74
75
76
77 InsetNoteParams::InsetNoteParams()
78         : type(Note)
79 {}
80
81
82 void InsetNoteParams::write(ostream & os) const
83 {
84         string const label = notetranslator().find(type);
85         os << "Note " << label << "\n";
86 }
87
88
89 void InsetNoteParams::read(LyXLex & lex)
90 {
91         string label;
92         lex >> label;
93         if (lex)
94                 type = notetranslator().find(label);
95 }
96
97
98 void InsetNote::init()
99 {
100         setInsetName("Note");
101         setButtonLabel();
102 }
103
104
105 InsetNote::InsetNote(BufferParams const & bp, string const & label)
106         : InsetCollapsable(bp)
107 {
108         params_.type = notetranslator().find(label);
109         init();
110 }
111
112
113 InsetNote::InsetNote(InsetNote const & in)
114         : InsetCollapsable(in), params_(in.params_)
115 {
116         init();
117 }
118
119
120 InsetNote::~InsetNote()
121 {
122         InsetNoteMailer(*this).hideDialog();
123 }
124
125
126 auto_ptr<InsetBase> InsetNote::clone() const
127 {
128         return auto_ptr<InsetBase>(new InsetNote(*this));
129 }
130
131
132 string const InsetNote::editMessage() const
133 {
134         return _("Opened Note Inset");
135 }
136
137
138 void InsetNote::write(Buffer const & buf, ostream & os) const
139 {
140         params_.write(os);
141         InsetCollapsable::write(buf, os);
142 }
143
144
145 void InsetNote::read(Buffer const & buf, LyXLex & lex)
146 {
147         params_.read(lex);
148         InsetCollapsable::read(buf, lex);
149         setButtonLabel();
150 }
151
152
153 void InsetNote::setButtonLabel()
154 {
155         string const label = notetranslator_loc().find(params_.type);
156         setLabel(label);
157
158         LyXFont font(LyXFont::ALL_SANE);
159         font.decSize();
160         font.decSize();
161
162         switch (params_.type) {
163         case InsetNoteParams::Note:
164                 font.setColor(LColor::note);
165                 setBackgroundColor(LColor::notebg);
166                 break;
167         case InsetNoteParams::Comment:
168                 font.setColor(LColor::comment);
169                 setBackgroundColor(LColor::commentbg);
170                 break;
171         case InsetNoteParams::Greyedout:
172                 font.setColor(LColor::greyedout);
173                 setBackgroundColor(LColor::greyedoutbg);
174                 break;
175         }
176         setLabelFont(font);
177 }
178
179
180 bool InsetNote::showInsetDialog(BufferView * bv) const
181 {
182         InsetNoteMailer(const_cast<InsetNote &>(*this)).showDialog(bv);
183         return true;
184 }
185
186
187 void InsetNote::priv_dispatch(LCursor & cur, FuncRequest & cmd)
188 {
189         switch (cmd.action) {
190
191         case LFUN_INSET_MODIFY:
192                 InsetNoteMailer::string2params(cmd.argument, params_);
193                 setButtonLabel();
194                 cur.bv().update();
195                 break;
196
197         case LFUN_INSET_DIALOG_UPDATE:
198                 InsetNoteMailer(*this).updateDialog(&cur.bv());
199                 break;
200
201         case LFUN_MOUSE_RELEASE:
202                 if (cmd.button() == mouse_button::button3 && hitButton(cmd))
203                         InsetNoteMailer(*this).showDialog(&cur.bv());
204                 else
205                         InsetCollapsable::priv_dispatch(cur, cmd);
206                 break;
207
208         default:
209                 InsetCollapsable::priv_dispatch(cur, cmd);
210                 break;
211         }
212 }
213
214
215 int InsetNote::latex(Buffer const & buf, ostream & os,
216                      OutputParams const & runparams) const
217 {
218         if (params_.type == InsetNoteParams::Note)
219                 return 0;
220
221         string type;
222         if (params_.type == InsetNoteParams::Comment)
223                 type = "comment";
224         else if (params_.type == InsetNoteParams::Greyedout)
225                 type = "lyxgreyedout";
226
227         ostringstream ss;
228         ss << "%\n\\begin{" << type << "}\n";
229         InsetText::latex(buf, ss, runparams);
230         ss << "%\n\\end{" << type << "}\n";
231
232         string const str = ss.str();
233         os << str;
234         // Return how many newlines we issued.
235         return int(lyx::count(str.begin(), str.end(),'\n') + 1);
236 }
237
238
239 int InsetNote::linuxdoc(Buffer const & buf, std::ostream & os,
240                         OutputParams const & runparams) const
241 {
242         if (params_.type == InsetNoteParams::Note)
243                 return 0;
244
245         ostringstream ss;
246         if (params_.type == InsetNoteParams::Comment)
247                 ss << "<comment>\n";
248
249         InsetText::linuxdoc(buf, ss, runparams);
250
251         if (params_.type == InsetNoteParams::Comment)
252                 ss << "\n</comment>\n";
253
254         string const str = ss.str();
255         os << str;
256         // Return how many newlines we issued.
257         return int(lyx::count(str.begin(), str.end(),'\n') + 1);
258 }
259
260
261 int InsetNote::docbook(Buffer const & buf, std::ostream & os,
262                        OutputParams const & runparams) const
263 {
264         if (params_.type == InsetNoteParams::Note)
265                 return 0;
266
267         ostringstream ss;
268         if (params_.type == InsetNoteParams::Comment)
269                 ss << "<remark>\n";
270
271         InsetText::docbook(buf, ss, runparams);
272
273         if (params_.type == InsetNoteParams::Comment)
274                 ss << "\n</remark>\n";
275
276         string const str = ss.str();
277         os << str;
278         // Return how many newlines we issued.
279         return int(lyx::count(str.begin(), str.end(),'\n') + 1);
280 }
281
282
283 int InsetNote::plaintext(Buffer const & buf, std::ostream & os,
284                      OutputParams const & runparams) const
285 {
286         if (params_.type == InsetNoteParams::Note)
287                 return 0;
288
289         ostringstream ss;
290         ss << "[";
291         InsetText::plaintext(buf, ss, runparams);
292         ss << "]";
293
294         string const str = ss.str();
295         os << str;
296         // Return how many newlines we issued.
297         return int(lyx::count(str.begin(), str.end(),'\n') + 1);
298 }
299
300
301 void InsetNote::validate(LaTeXFeatures & features) const
302 {
303         if (params_.type == InsetNoteParams::Comment)
304                 features.require("verbatim");
305         if (params_.type == InsetNoteParams::Greyedout) {
306                 features.require("color");
307                 features.require("lyxgreyedout");
308         }
309         InsetText::validate(features);
310 }
311
312
313
314 string const InsetNoteMailer::name_("note");
315
316 InsetNoteMailer::InsetNoteMailer(InsetNote & inset)
317         : inset_(inset)
318 {}
319
320
321 string const InsetNoteMailer::inset2string(Buffer const &) const
322 {
323         return params2string(inset_.params());
324 }
325
326
327 string const InsetNoteMailer::params2string(InsetNoteParams const & params)
328 {
329         ostringstream data;
330         data << name_ << ' ';
331         params.write(data);
332         return data.str();
333 }
334
335
336 void InsetNoteMailer::string2params(string const & in,
337                                     InsetNoteParams & params)
338 {
339         params = InsetNoteParams();
340
341         if (in.empty())
342                 return;
343
344         istringstream data(in);
345         LyXLex lex(0,0);
346         lex.setStream(data);
347
348         string name;
349         lex >> name;
350         if (!lex || name != name_)
351                 return print_mailer_error("InsetNoteMailer", in, 1, name_);
352
353         // This is part of the inset proper that is usually swallowed
354         // by LyXText::readInset
355         string id;
356         lex >> id;
357         if (!lex || id != "Note")
358                 return print_mailer_error("InsetBoxMailer", in, 2, "Note");
359
360         params.read(lex);
361 }