]> git.lyx.org Git - lyx.git/blob - src/bufferview_funcs.C
merge decDepth(), killing some non-parlist code
[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
33 #include "support/lstrings.h"
34 #include "Lsstream.h"
35
36 #include "insets/updatableinset.h"
37
38 #include "support/BoostFormat.h"
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 = 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(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 void changeDepth(BufferView * bv, LyXText * text, DEPTH_CHANGE type)
221 {
222         if (!bv->available() || !text)
223             return;
224
225         bv->hideCursor();
226         bv->update(BufferView::SELECT);
227         text->changeDepth(type);
228         if (text->inset_owner)
229                 bv->updateInset((Inset *)text->inset_owner);
230         bv->update(BufferView::SELECT);
231 }
232
233
234 void code(BufferView * bv)
235 {
236         LyXFont font(LyXFont::ALL_IGNORE);
237         font.setFamily(LyXFont::TYPEWRITER_FAMILY); // no good
238         toggleAndShow(bv, font);
239 }
240
241
242 void sans(BufferView * bv)
243 {
244         LyXFont font(LyXFont::ALL_IGNORE);
245         font.setFamily(LyXFont::SANS_FAMILY);
246         toggleAndShow(bv, font);
247 }
248
249
250 void roman(BufferView * bv)
251 {
252         LyXFont font(LyXFont::ALL_IGNORE);
253         font.setFamily(LyXFont::ROMAN_FAMILY);
254         toggleAndShow(bv, font);
255 }
256
257
258 void styleReset(BufferView * bv)
259 {
260         LyXFont font(LyXFont::ALL_INHERIT, ignore_language);
261         toggleAndShow(bv, font);
262 }
263
264
265 void underline(BufferView * bv)
266 {
267         LyXFont font(LyXFont::ALL_IGNORE);
268         font.setUnderbar(LyXFont::TOGGLE);
269         toggleAndShow(bv, font);
270 }
271
272
273 void fontSize(BufferView * bv, string const & size)
274 {
275         LyXFont font(LyXFont::ALL_IGNORE);
276         font.setLyXSize(size);
277         toggleAndShow(bv, font);
278 }
279
280
281 // Returns the current font and depth as a message.
282 string const currentState(BufferView * bv)
283 {
284         if (!bv->available())
285                 return string();
286
287         ostringstream state;
288
289         LyXText * text = bv->getLyXText();
290         Buffer * buffer = bv->buffer();
291         LyXCursor const & c(text->cursor);
292
293         bool const show_change = buffer->params.tracking_changes
294                 && c.pos() != c.par()->size()
295                 && c.par()->lookupChange(c.pos()) != Change::UNCHANGED;
296
297         if (show_change) {
298                 Change change(c.par()->lookupChangeFull(c.pos()));
299                 Author const & a(bv->buffer()->authors().get(change.author));
300                 state << _("Change: ") << a.name();
301                 if (!a.email().empty()) {
302                         state << " (" << a.email() << ")";
303                 }
304                 if (change.changetime)
305                         state << _(" at ") << ctime(&change.changetime);
306                 state << " : ";
307         }
308
309         // I think we should only show changes from the default
310         // font. (Asger)
311         LyXFont font = text->real_current_font;
312         LyXFont const & defaultfont =
313                 buffer->params.getLyXTextClass().defaultfont();
314         font.reduce(defaultfont);
315
316 #if USE_BOOST_FORMAT
317         state << boost::format(_("Font: %1$s")) % font.stateText(&buffer->params);
318 #else
319         state << _("Font: ") << font.stateText(&buffer->params);
320 #endif
321
322         // The paragraph depth
323         int depth = text->getDepth();
324         if (depth > 0) {
325 #if USE_BOOST_FORMAT
326                 state << boost::format(_(", Depth: %1$d")) % depth;
327 #else
328                 state << _(", Depth: ") << depth;
329 #endif
330         }
331
332
333         // The paragraph spacing, but only if different from
334         // buffer spacing.
335         if (!text->cursor.par()->params().spacing().isDefault()) {
336                 Spacing::Space cur_space =
337                         text->cursor.par()->params().spacing().getSpace();
338                 state << _(", Spacing: ");
339
340                 switch (cur_space) {
341                 case Spacing::Single:
342                         state << _("Single");
343                         break;
344                 case Spacing::Onehalf:
345                         state << _("OneHalf");
346                         break;
347                 case Spacing::Double:
348                         state << _("Double");
349                         break;
350                 case Spacing::Other:
351                         state << _("Other (")
352                               << text->cursor.par()->params().spacing().getValue()
353                               << ')';
354                         break;
355                 case Spacing::Default:
356                         // should never happen, do nothing
357                         break;
358                 }
359         }
360 #ifdef DEVEL_VERSION
361         state << _(", Paragraph: ") << text->cursor.par()->id();
362 #endif
363         return STRCONV(state.str());
364 }
365
366
367 /* Does the actual toggle job of the calls above.
368  * Also shows the current font state.
369  */
370 void toggleAndShow(BufferView * bv, LyXFont const & font, bool toggleall)
371 {
372         if (!bv->available())
373                 return;
374
375         if (bv->theLockingInset()) {
376                 bv->theLockingInset()->setFont(bv, font, toggleall);
377                 return;
378         }
379
380         LyXText * text = bv->getLyXText();
381         // FIXME: can this happen ??
382         if (!text)
383                 return;
384
385         bv->hideCursor();
386         bv->update(text, BufferView::SELECT);
387         text->toggleFree(font, toggleall);
388         bv->update(text, BufferView::SELECT);
389
390         if (font.language() != ignore_language ||
391             font.number() != LyXFont::IGNORE) {
392                 LyXCursor & cursor = text->cursor;
393                 text->computeBidiTables(bv->buffer(), cursor.row());
394                 if (cursor.boundary() !=
395                     text->isBoundary(bv->buffer(), cursor.par(), cursor.pos(),
396                                      text->real_current_font))
397                         text->setCursor(cursor.par(), cursor.pos(),
398                                         false, !cursor.boundary());
399         }
400 }
401
402 }; // namespace bv_funcs