]> git.lyx.org Git - lyx.git/blob - src/bufferview_funcs.C
b7b0d17a7d894e02425fd4892dc823b19f64818c
[lyx.git] / src / bufferview_funcs.C
1 /* This file is part of
2  * ======================================================
3  *
4  *           LyX, The Document Processor
5  *
6  *           Copyright 1995 Matthias Ettrich
7  *           Copyright 1995-2001 The LyX Team.
8  *
9  * ====================================================== */
10
11 #include <config.h>
12
13 #ifdef __GNUG__
14 #pragma implementation
15 #endif
16
17 #include "bufferview_funcs.h"
18 #include "frontends/LyXView.h"
19 #include "BufferView.h"
20 #include "paragraph.h"
21 #include "lyxfont.h"
22 #include "lyxtext.h"
23 #include "buffer.h"
24 #include "lyx_cb.h"
25 #include "language.h"
26 #include "gettext.h"
27 #include "ParagraphParameters.h"
28
29 #include "frontends/Alert.h"
30
31 #include "support/lstrings.h"
32
33 #include "BoostFormat.h"
34
35 void emph(BufferView * bv)
36 {
37         LyXFont font(LyXFont::ALL_IGNORE);
38         font.setEmph(LyXFont::TOGGLE);
39         toggleAndShow(bv, font);
40 }
41
42
43 void bold(BufferView * bv)
44 {
45         LyXFont font(LyXFont::ALL_IGNORE);
46         font.setSeries(LyXFont::BOLD_SERIES);
47         toggleAndShow(bv, font);
48 }
49
50
51 void noun(BufferView * bv)
52 {
53         LyXFont font(LyXFont::ALL_IGNORE);
54         font.setNoun(LyXFont::TOGGLE);
55         toggleAndShow(bv, font);
56 }
57
58
59 void number(BufferView * bv)
60 {
61         LyXFont font(LyXFont::ALL_IGNORE);
62         font.setNumber(LyXFont::TOGGLE);
63         toggleAndShow(bv, font);
64 }
65
66 void lang(BufferView * bv, string const & l)
67 {
68         LyXFont font(LyXFont::ALL_IGNORE);
69         Language const * lang = languages.getLanguage(l);
70         if (lang) {
71                 font.setLanguage(lang);
72                 toggleAndShow(bv, font);
73         } else
74                 Alert::alert(_("Error! unknown language"),l);
75 }
76
77
78 // Change environment depth.
79 // if decInc >= 0, increment depth
80 // if decInc <  0, decrement depth
81 void changeDepth(BufferView * bv, LyXText * text, int decInc)
82 {
83         if (!bv->available() || !text)
84             return;
85
86         bv->hideCursor();
87         bv->update(bv->text, BufferView::SELECT|BufferView::FITCUR);
88         if (decInc >= 0)
89                 text->incDepth(bv);
90         else
91                 text->decDepth(bv);
92         if (text->inset_owner)
93                 bv->updateInset((Inset *)text->inset_owner, true);
94         bv->update(bv->text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
95 }
96
97
98 void code(BufferView * bv)
99 {
100         LyXFont font(LyXFont::ALL_IGNORE);
101         font.setFamily(LyXFont::TYPEWRITER_FAMILY); // no good
102         toggleAndShow(bv, font);
103 }
104
105
106 void sans(BufferView * bv)
107 {
108         LyXFont font(LyXFont::ALL_IGNORE);
109         font.setFamily(LyXFont::SANS_FAMILY);
110         toggleAndShow(bv, font);
111 }
112
113
114 void roman(BufferView * bv)
115 {
116         LyXFont font(LyXFont::ALL_IGNORE);
117         font.setFamily(LyXFont::ROMAN_FAMILY);
118         toggleAndShow(bv, font);
119 }
120
121
122 void styleReset(BufferView * bv)
123 {
124         LyXFont font(LyXFont::ALL_INHERIT, ignore_language);
125         toggleAndShow(bv, font);
126 }
127
128
129 void underline(BufferView * bv)
130 {
131         LyXFont font(LyXFont::ALL_IGNORE);
132         font.setUnderbar(LyXFont::TOGGLE);
133         toggleAndShow(bv, font);
134 }
135
136
137 void fontSize(BufferView * bv, string const & size)
138 {
139         LyXFont font(LyXFont::ALL_IGNORE);
140         font.setLyXSize(size);
141         toggleAndShow(bv, font);
142 }
143
144
145 // Returns the current font and depth as a message.
146 string const currentState(BufferView * bv)
147 {
148         ostringstream state;
149
150         if (!bv->available())
151                 return "";
152
153         // I think we should only show changes from the default
154         // font. (Asger)
155         LyXText * text = bv->getLyXText();
156         Buffer * buffer = bv->buffer();
157         LyXFont font = text->real_current_font;
158         LyXFont const & defaultfont =
159                 buffer->params.getLyXTextClass().defaultfont();
160         font.reduce(defaultfont);
161
162         state << boost::format(_("Font: %1$s")) % font.stateText(&buffer->params);
163
164         // The paragraph depth
165         int depth = text->getDepth();
166         if (depth > 0)
167                 state << boost::format(_(", Depth: %1$d")) % depth;
168
169         // The paragraph spacing, but only if different from
170         // buffer spacing.
171         if (!text->cursor.par()->params().spacing().isDefault()) {
172                 Spacing::Space cur_space =
173                         text->cursor.par()->params().spacing().getSpace();
174                 state << _(", Spacing: ");
175
176                 switch (cur_space) {
177                 case Spacing::Single:
178                         state << _("Single");
179                         break;
180                 case Spacing::Onehalf:
181                         state << _("Onehalf");
182                         break;
183                 case Spacing::Double:
184                         state << _("Double");
185                         break;
186                 case Spacing::Other:
187                         state << _("Other (")
188                               << text->cursor.par()->params().spacing().getValue()
189                               << ")";
190                         break;
191                 case Spacing::Default:
192                         // should never happen, do nothing
193                         break;
194                 }
195         }
196 #ifdef DEVEL_VERSION
197         state << _(", Paragraph: ") << text->cursor.par()->id();
198 #endif
199         return STRCONV(state.str());
200 }
201
202
203 /* Does the actual toggle job of the calls above.
204  * Also shows the current font state.
205  */
206 void toggleAndShow(BufferView * bv, LyXFont const & font, bool toggleall)
207 {
208         if (!bv->available())
209                 return;
210
211         if (bv->theLockingInset()) {
212                 bv->theLockingInset()->setFont(bv, font, toggleall);
213                 return;
214         }
215
216         LyXText * text = bv->getLyXText();
217         // FIXME: can this happen ??
218         if (!text)
219                 return;
220
221         bv->hideCursor();
222         bv->update(text, BufferView::SELECT | BufferView::FITCUR);
223         text->toggleFree(bv, font, toggleall);
224         bv->update(text, BufferView::SELECT | BufferView::FITCUR | BufferView::CHANGE);
225
226         if (font.language() != ignore_language ||
227             font.number() != LyXFont::IGNORE) {
228                 LyXCursor & cursor = text->cursor;
229                 text->computeBidiTables(bv->buffer(), cursor.row());
230                 if (cursor.boundary() !=
231                     text->isBoundary(bv->buffer(), cursor.par(), cursor.pos(),
232                                      text->real_current_font))
233                         text->setCursor(bv, cursor.par(), cursor.pos(),
234                                         false, !cursor.boundary());
235         }
236 }