]> git.lyx.org Git - lyx.git/blob - src/bufferview_funcs.C
non-templated tostr in separate files
[lyx.git] / src / bufferview_funcs.C
1 /**
2  * \file bufferview_funcs.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author Jean-Marc Lasgouttes
8  * \author John Levon
9  * \author Angus Leeming
10  *
11  * Full author contact details are available in file CREDITS
12  */
13
14 #include <config.h>
15
16 #include "bufferview_funcs.h"
17 #include "BufferView.h"
18 #include "paragraph.h"
19 #include "lyxfont.h"
20 #include "lyxlex.h"
21 #include "lyxtext.h"
22 #include "buffer.h"
23 #include "lyx_cb.h"
24 #include "language.h"
25 #include "gettext.h"
26 #include "ParagraphParameters.h"
27 #include "author.h"
28 #include "changes.h"
29
30 #include "frontends/LyXView.h"
31 #include "frontends/Alert.h"
32 #include "mathed/math_cursor.h"
33
34 #include "support/tostr.h"
35 #include "Lsstream.h"
36
37 #include "insets/updatableinset.h"
38
39
40 namespace {
41
42 LyXFont freefont(LyXFont::ALL_IGNORE);
43 bool toggleall(false);
44
45 }
46
47 namespace bv_funcs {
48
49 // Set data using font and toggle
50 // If successful, returns true
51 bool font2string(LyXFont const & font, bool toggle, string & data)
52 {
53         string lang = "ignore";
54         if (font.language())
55                 lang = font.language()->lang();
56
57         ostringstream os;
58         os << "family " << font.family() << '\n'
59            << "series " << font.series() << '\n'
60            << "shape " << font.shape() << '\n'
61            << "size " << font.size() << '\n'
62            << "emph " << font.emph() << '\n'
63            << "underbar " << font.underbar() << '\n'
64            << "noun " << font.noun() << '\n'
65            << "number " << font.number() << '\n'
66            << "color " << font.color() << '\n'
67            << "language " << lang << '\n'
68            << "toggleall " << tostr(toggle);
69         data = STRCONV(os.str());
70         return true;
71 }
72
73
74 // Set font and toggle using data
75 // If successful, returns true
76 bool string2font(string const & data, LyXFont & font, bool & toggle)
77 {
78         istringstream is(STRCONV(data));
79         LyXLex lex(0,0);
80         lex.setStream(is);
81
82         int nset = 0;
83         while (lex.isOK()) {
84                 string token;
85                 if (lex.next())
86                         token = lex.getString();
87
88                 if (token.empty() || !lex.next())
89                         break;
90
91                 if (token == "family") {
92                         int const next = lex.getInteger();
93                         font.setFamily(LyXFont::FONT_FAMILY(next));
94
95                 } else if (token == "series") {
96                         int const next = lex.getInteger();
97                         font.setSeries(LyXFont::FONT_SERIES(next));
98
99                 } else if (token == "shape") {
100                         int const next = lex.getInteger();
101                         font.setShape(LyXFont::FONT_SHAPE(next));
102
103                 } else if (token == "size") {
104                         int const next = lex.getInteger();
105                         font.setSize(LyXFont::FONT_SIZE(next));
106
107                 } else if (token == "emph" || token == "underbar" ||
108                            token == "noun" || token == "number") {
109
110                         int const next = lex.getInteger();
111                         LyXFont::FONT_MISC_STATE const misc =
112                                 LyXFont::FONT_MISC_STATE(next);
113
114                         if (token == "emph")
115                             font.setEmph(misc);
116                         else if (token == "underbar")
117                                 font.setUnderbar(misc);
118                         else if (token == "noun")
119                                 font.setNoun(misc);
120                         else if (token == "number")
121                                 font.setNumber(misc);
122
123                 } else if (token == "color") {
124                         int const next = lex.getInteger();
125                         font.setColor(LColor::color(next));
126
127                 } else if (token == "language") {
128                         string const next = lex.getString();
129                         if (next == "ignore")
130                                 font.setLanguage(ignore_language);
131                         else
132                                 font.setLanguage(languages.getLanguage(next));
133
134                 } else if (token == "toggleall") {
135                         toggle = lex.getBool();
136
137                 } else {
138                         // Unrecognised token
139                         break;
140                 }
141
142                 ++nset;
143         }
144         return (nset > 0);
145 }
146
147
148 string const freefont2string()
149 {
150         string data;
151         if (font2string(freefont, toggleall, data))
152                 return data;
153         return string();
154 }
155
156
157 void update_and_apply_freefont(BufferView * bv, string const & data)
158 {
159         LyXFont font;
160         bool toggle;
161         if (string2font(data, font, toggle)) {
162                 freefont = font;
163                 toggleall = toggle;
164                 apply_freefont(bv);
165         }
166 }
167
168
169 void apply_freefont(BufferView * bv)
170 {
171         toggleAndShow(bv, freefont, toggleall);
172         bv->owner()->view_state_changed();
173         bv->owner()->message(_("Character set"));
174 }
175
176
177 void emph(BufferView * bv)
178 {
179         LyXFont font(LyXFont::ALL_IGNORE);
180         font.setEmph(LyXFont::TOGGLE);
181         toggleAndShow(bv, font);
182 }
183
184
185 void bold(BufferView * bv)
186 {
187         LyXFont font(LyXFont::ALL_IGNORE);
188         font.setSeries(LyXFont::BOLD_SERIES);
189         toggleAndShow(bv, font);
190 }
191
192
193 void noun(BufferView * bv)
194 {
195         LyXFont font(LyXFont::ALL_IGNORE);
196         font.setNoun(LyXFont::TOGGLE);
197         toggleAndShow(bv, font);
198 }
199
200
201 void number(BufferView * bv)
202 {
203         LyXFont font(LyXFont::ALL_IGNORE);
204         font.setNumber(LyXFont::TOGGLE);
205         toggleAndShow(bv, font);
206 }
207
208 void lang(BufferView * bv, string const & l)
209 {
210         LyXFont font(LyXFont::ALL_IGNORE);
211         Language const * lang = languages.getLanguage(l);
212         if (!lang)
213                 return;
214
215         font.setLanguage(lang);
216         toggleAndShow(bv, font);
217 }
218
219
220 bool changeDepth(BufferView * bv, LyXText * text, DEPTH_CHANGE type, bool test_only)
221 {
222         if (!bv->available() || !text)
223             return false;
224
225         if (test_only)
226                 return text->changeDepth(type, true);
227
228         bv->update(BufferView::SELECT);
229         bool const changed = text->changeDepth(type, false);
230         if (text->inset_owner)
231                 bv->updateInset((Inset *)text->inset_owner);
232         bv->update(BufferView::SELECT);
233         return changed;
234 }
235
236
237 void code(BufferView * bv)
238 {
239         LyXFont font(LyXFont::ALL_IGNORE);
240         font.setFamily(LyXFont::TYPEWRITER_FAMILY); // no good
241         toggleAndShow(bv, font);
242 }
243
244
245 void sans(BufferView * bv)
246 {
247         LyXFont font(LyXFont::ALL_IGNORE);
248         font.setFamily(LyXFont::SANS_FAMILY);
249         toggleAndShow(bv, font);
250 }
251
252
253 void roman(BufferView * bv)
254 {
255         LyXFont font(LyXFont::ALL_IGNORE);
256         font.setFamily(LyXFont::ROMAN_FAMILY);
257         toggleAndShow(bv, font);
258 }
259
260
261 void styleReset(BufferView * bv)
262 {
263         LyXFont font(LyXFont::ALL_INHERIT, ignore_language);
264         toggleAndShow(bv, font);
265 }
266
267
268 void underline(BufferView * bv)
269 {
270         LyXFont font(LyXFont::ALL_IGNORE);
271         font.setUnderbar(LyXFont::TOGGLE);
272         toggleAndShow(bv, font);
273 }
274
275
276 void fontSize(BufferView * bv, string const & size)
277 {
278         LyXFont font(LyXFont::ALL_IGNORE);
279         font.setLyXSize(size);
280         toggleAndShow(bv, font);
281 }
282
283
284 // Returns the current font and depth as a message.
285 string const currentState(BufferView * bv)
286 {
287         if (!bv->available())
288                 return string();
289
290         if (mathcursor)
291                 return mathcursor->info();
292
293         ostringstream state;
294
295         LyXText * text = bv->getLyXText();
296         Buffer * buffer = bv->buffer();
297         LyXCursor const & c(text->cursor);
298
299         bool const show_change = buffer->params.tracking_changes
300                 && c.pos() != c.par()->size()
301                 && c.par()->lookupChange(c.pos()) != Change::UNCHANGED;
302
303         if (show_change) {
304                 Change change(c.par()->lookupChangeFull(c.pos()));
305                 Author const & a(bv->buffer()->authors().get(change.author));
306                 state << _("Change: ") << a.name();
307                 if (!a.email().empty()) {
308                         state << " (" << a.email() << ")";
309                 }
310                 if (change.changetime)
311                         state << _(" at ") << ctime(&change.changetime);
312                 state << " : ";
313         }
314
315         // I think we should only show changes from the default
316         // font. (Asger)
317         LyXFont font = text->real_current_font;
318         LyXFont const & defaultfont =
319                 buffer->params.getLyXTextClass().defaultfont();
320         font.reduce(defaultfont);
321
322         state << bformat(_("Font: %1$s"), font.stateText(&buffer->params));
323
324         // The paragraph depth
325         int depth = text->getDepth();
326         if (depth > 0)
327                 state << bformat(_(", Depth: %1$s"), tostr(depth));
328
329         // The paragraph spacing, but only if different from
330         // buffer spacing.
331         if (!text->cursor.par()->params().spacing().isDefault()) {
332                 Spacing::Space cur_space =
333                         text->cursor.par()->params().spacing().getSpace();
334                 state << _(", Spacing: ");
335
336                 switch (cur_space) {
337                 case Spacing::Single:
338                         state << _("Single");
339                         break;
340                 case Spacing::Onehalf:
341                         state << _("OneHalf");
342                         break;
343                 case Spacing::Double:
344                         state << _("Double");
345                         break;
346                 case Spacing::Other:
347                         state << _("Other (")
348                               << text->cursor.par()->params().spacing().getValue()
349                               << ')';
350                         break;
351                 case Spacing::Default:
352                         // should never happen, do nothing
353                         break;
354                 }
355         }
356 #ifdef DEVEL_VERSION
357         state << _(", Paragraph: ") << text->cursor.par()->id();
358 #endif
359         return STRCONV(state.str());
360 }
361
362
363 /* Does the actual toggle job of the calls above.
364  * Also shows the current font state.
365  */
366 void toggleAndShow(BufferView * bv, LyXFont const & font, bool toggleall)
367 {
368         if (!bv->available())
369                 return;
370
371         if (bv->theLockingInset()) {
372                 bv->theLockingInset()->setFont(bv, font, toggleall);
373                 return;
374         }
375
376         LyXText * text = bv->getLyXText();
377         // FIXME: can this happen ??
378         if (!text)
379                 return;
380
381         bv->update(text, BufferView::SELECT);
382         text->toggleFree(font, toggleall);
383         bv->update(text, BufferView::SELECT);
384
385         if (font.language() != ignore_language ||
386             font.number() != LyXFont::IGNORE) {
387                 LyXCursor & cursor = text->cursor;
388                 text->computeBidiTables(bv->buffer(), cursor.row());
389                 if (cursor.boundary() !=
390                     text->isBoundary(bv->buffer(), *cursor.par(), cursor.pos(),
391                                      text->real_current_font))
392                         text->setCursor(cursor.par(), cursor.pos(),
393                                         false, !cursor.boundary());
394         }
395 }
396
397 }; // namespace bv_funcs