]> git.lyx.org Git - lyx.git/blob - src/bufferview_funcs.C
Rob's latest and greatest dialog tweaking.
[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 }
94
95
96 void code(BufferView * bv)
97 {
98         LyXFont font(LyXFont::ALL_IGNORE);
99         font.setFamily(LyXFont::TYPEWRITER_FAMILY); // no good
100         toggleAndShow(bv, font);
101 }
102
103
104 void sans(BufferView * bv)
105 {
106         LyXFont font(LyXFont::ALL_IGNORE);
107         font.setFamily(LyXFont::SANS_FAMILY);
108         toggleAndShow(bv, font);
109 }
110
111
112 void roman(BufferView * bv)
113 {
114         LyXFont font(LyXFont::ALL_IGNORE);
115         font.setFamily(LyXFont::ROMAN_FAMILY);
116         toggleAndShow(bv, font);
117 }
118
119
120 void styleReset(BufferView * bv)
121 {
122         LyXFont font(LyXFont::ALL_INHERIT, ignore_language);
123         toggleAndShow(bv, font);
124 }
125
126
127 void underline(BufferView * bv)
128 {
129         LyXFont font(LyXFont::ALL_IGNORE);
130         font.setUnderbar(LyXFont::TOGGLE);
131         toggleAndShow(bv, font);
132 }
133
134
135 void fontSize(BufferView * bv, string const & size)
136 {
137         LyXFont font(LyXFont::ALL_IGNORE);
138         font.setLyXSize(size);
139         toggleAndShow(bv, font);
140 }
141
142
143 // Returns the current font and depth as a message.
144 string const currentState(BufferView * bv)
145 {
146         ostringstream state;
147
148         if (!bv->available())
149                 return "";
150
151         // I think we should only show changes from the default
152         // font. (Asger)
153         LyXText * text = bv->getLyXText();
154         Buffer * buffer = bv->buffer();
155         LyXFont font = text->real_current_font;
156         LyXFont const & defaultfont =
157                 buffer->params.getLyXTextClass().defaultfont();
158         font.reduce(defaultfont);
159
160         state << _("Font:") << ' ' << font.stateText(&buffer->params);
161
162         // The paragraph depth
163         int depth = text->getDepth();
164         if (depth > 0)
165                 state << _(", Depth: ") << depth;
166
167         // The paragraph spacing, but only if different from
168         // buffer spacing.
169         if (!text->cursor.par()->params().spacing().isDefault()) {
170                 Spacing::Space cur_space =
171                         text->cursor.par()->params().spacing().getSpace();
172                 state << _(", Spacing: ");
173
174                 switch (cur_space) {
175                 case Spacing::Single:
176                         state << _("Single");
177                         break;
178                 case Spacing::Onehalf:
179                         state << _("Onehalf");
180                         break;
181                 case Spacing::Double:
182                         state << _("Double");
183                         break;
184                 case Spacing::Other:
185                         state << _("Other (")
186                               << text->cursor.par()->params().spacing().getValue()
187                               << ")";
188                         break;
189                 case Spacing::Default:
190                         // should never happen, do nothing
191                         break;
192                 }
193         }
194 #ifdef DEVEL_VERSION
195         state << _(", Paragraph: ") << text->cursor.par()->id();
196 #endif
197         return state.str().c_str();
198 }
199
200
201 /* Does the actual toggle job of the calls above.
202  * Also shows the current font state.
203  */
204 void toggleAndShow(BufferView * bv, LyXFont const & font, bool toggleall)
205 {
206         if (!bv->available())
207                 return;
208
209         if (bv->theLockingInset()) {
210                 bv->theLockingInset()->setFont(bv, font, toggleall);
211                 return;
212         }
213
214         LyXText * text = bv->getLyXText();
215         // FIXME: can this happen ??
216         if (!text)
217                 return;
218
219         bv->hideCursor();
220         bv->update(text, BufferView::SELECT | BufferView::FITCUR);
221         text->toggleFree(bv, font, toggleall);
222         bv->update(text, BufferView::SELECT | BufferView::FITCUR | BufferView::CHANGE);
223
224         if (font.language() != ignore_language ||
225             font.number() != LyXFont::IGNORE) {
226                 LyXCursor & cursor = text->cursor;
227                 text->computeBidiTables(bv->buffer(), cursor.row());
228                 if (cursor.boundary() !=
229                     text->isBoundary(bv->buffer(), cursor.par(), cursor.pos(),
230                                      text->real_current_font))
231                         text->setCursor(bv, cursor.par(), cursor.pos(),
232                                         false, !cursor.boundary());
233         }
234 }