]> git.lyx.org Git - lyx.git/blob - src/bufferview_funcs.C
Some stuff.
[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 void emph(BufferView * bv)
34 {
35         LyXFont font(LyXFont::ALL_IGNORE);
36         font.setEmph(LyXFont::TOGGLE);
37         toggleAndShow(bv, font);
38 }
39
40
41 void bold(BufferView * bv)
42 {
43         LyXFont font(LyXFont::ALL_IGNORE);
44         font.setSeries(LyXFont::BOLD_SERIES);
45         toggleAndShow(bv, font);
46 }
47
48
49 void noun(BufferView * bv)
50 {
51         LyXFont font(LyXFont::ALL_IGNORE);
52         font.setNoun(LyXFont::TOGGLE);
53         toggleAndShow(bv, font);
54 }
55
56
57 void number(BufferView * bv)
58 {
59         LyXFont font(LyXFont::ALL_IGNORE);
60         font.setNumber(LyXFont::TOGGLE);
61         toggleAndShow(bv, font);
62 }
63
64 void lang(BufferView * bv, string const & l)
65 {
66         LyXFont font(LyXFont::ALL_IGNORE);
67         Language const * lang = languages.getLanguage(l);
68         if (lang) {
69                 font.setLanguage(lang);
70                 toggleAndShow(bv, font);
71         } else
72                 Alert::alert(_("Error! unknown language"),l);
73 }
74
75
76 // Change environment depth.
77 // if decInc >= 0, increment depth
78 // if decInc <  0, decrement depth
79 void changeDepth(BufferView * bv, LyXText * text, int decInc)
80 {
81         if (!bv->available() || !text)
82             return;
83
84         bv->hideCursor();
85         bv->update(bv->text, BufferView::SELECT|BufferView::FITCUR);
86         if (decInc >= 0)
87                 text->incDepth(bv);
88         else
89                 text->decDepth(bv);
90         if (text->inset_owner)
91             bv->updateInset((Inset *)text->inset_owner, true);
92         bv->update(bv->text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
93         bv->owner()->message(_("Changed environment depth "
94                                "(in possible range, maybe not)"));
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 #ifndef INHERIT_LANG
125         LyXFont font(LyXFont::ALL_INHERIT, ignore_language);
126 #else
127         LyXFont font(LyXFont::ALL_INHERIT);
128 #endif
129         toggleAndShow(bv, font);
130 }
131
132
133 void underline(BufferView * bv)
134 {
135         LyXFont font(LyXFont::ALL_IGNORE);
136         font.setUnderbar(LyXFont::TOGGLE);
137         toggleAndShow(bv, font);
138 }
139
140
141 void fontSize(BufferView * bv, string const & size)
142 {
143         LyXFont font(LyXFont::ALL_IGNORE);
144         font.setLyXSize(size);
145         toggleAndShow(bv, font);
146 }
147
148
149 // Returns the current font and depth as a message.
150 string const currentState(BufferView * bv)
151 {
152         ostringstream state;
153
154         if (!bv->available())
155                 return "";
156  
157         // I think we should only show changes from the default
158         // font. (Asger)
159         LyXText * text = bv->getLyXText();
160         Buffer * buffer = bv->buffer();
161         LyXFont font = text->real_current_font;
162         LyXFont const & defaultfont =
163                 buffer->params.getLyXTextClass().defaultfont();
164         font.reduce(defaultfont);
165
166         state << _("Font:") << ' ' << font.stateText(&buffer->params);
167
168         // The paragraph depth
169         int depth = text->getDepth();
170         if (depth > 0)
171                 state << _(", Depth: ") << depth;
172
173         // The paragraph spacing, but only if different from
174         // buffer spacing.
175         if (!text->cursor.par()->params().spacing().isDefault()) {
176                 Spacing::Space cur_space =
177                         text->cursor.par()->params().spacing().getSpace();
178                 state << _(", Spacing: ");
179
180                 switch (cur_space) {
181                 case Spacing::Single:
182                         state << _("Single");
183                         break;
184                 case Spacing::Onehalf:
185                         state << _("Onehalf");
186                         break;
187                 case Spacing::Double:
188                         state << _("Double");
189                         break;
190                 case Spacing::Other:
191                         state << _("Other (")
192                               << text->cursor.par()->params().spacing().getValue()
193                               << ")";
194                         break;
195                 case Spacing::Default:
196                         // should never happen, do nothing
197                         break;
198                 }
199         }
200 #ifdef DEVEL_VERSION
201         state << _(", Paragraph: ") << text->cursor.par()->id();
202 #endif
203         return state.str().c_str();
204 }
205
206
207 /* Does the actual toggle job of the calls above.
208  * Also shows the current font state.
209  */
210 void toggleAndShow(BufferView * bv, LyXFont const & font, bool toggleall)
211 {
212         if (!bv->available())
213                 return;
214  
215         if (bv->theLockingInset()) {
216                 bv->theLockingInset()->setFont(bv, font, toggleall);
217                 return;
218         }
219  
220         LyXText * text = bv->getLyXText();
221         // FIXME: can this happen ?? 
222         if (!text)
223                 return;
224
225         bv->hideCursor();
226         bv->update(text, BufferView::SELECT | BufferView::FITCUR);
227         text->toggleFree(bv, font, toggleall);
228         bv->update(text, BufferView::SELECT | BufferView::FITCUR | BufferView::CHANGE);
229
230         if (font.language() != ignore_language ||
231             font.number() != LyXFont::IGNORE) {
232                 LyXCursor & cursor = text->cursor;
233                 text->computeBidiTables(bv->buffer(), cursor.row());
234                 if (cursor.boundary() !=
235                     text->isBoundary(bv->buffer(), cursor.par(), cursor.pos(),
236                                      text->real_current_font))
237                         text->setCursor(bv, cursor.par(), cursor.pos(),
238                                         false, !cursor.boundary());
239         }
240 }