]> git.lyx.org Git - lyx.git/blob - src/bufferview_funcs.C
d275b1c4ba90385996463e3bf6763d1a695f4fce
[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
18 #include "author.h"
19 #include "buffer.h"
20 #include "bufferparams.h"
21 #include "BufferView.h"
22 #include "gettext.h"
23 #include "language.h"
24 #include "LColor.h"
25 #include "lyxlex.h"
26 #include "lyxrow.h"
27 #include "paragraph.h"
28 #include "ParagraphParameters.h"
29 #include "PosIterator.h"
30 #include "iterators.h"
31
32 #include "frontends/Alert.h"
33 #include "frontends/LyXView.h"
34
35 #include "insets/insettext.h"
36
37 #include "mathed/math_cursor.h"
38
39 #include "support/tostr.h"
40
41 #include "support/std_sstream.h"
42
43 using lyx::support::bformat;
44
45 using std::istringstream;
46 using std::ostringstream;
47 using std::string;
48
49
50 namespace bv_funcs {
51
52 // Set data using font and toggle
53 // If successful, returns true
54 bool font2string(LyXFont const & font, bool toggle, string & data)
55 {
56         string lang = "ignore";
57         if (font.language())
58                 lang = font.language()->lang();
59
60         ostringstream os;
61         os << "family " << font.family() << '\n'
62            << "series " << font.series() << '\n'
63            << "shape " << font.shape() << '\n'
64            << "size " << font.size() << '\n'
65            << "emph " << font.emph() << '\n'
66            << "underbar " << font.underbar() << '\n'
67            << "noun " << font.noun() << '\n'
68            << "number " << font.number() << '\n'
69            << "color " << font.color() << '\n'
70            << "language " << lang << '\n'
71            << "toggleall " << tostr(toggle);
72         data = os.str();
73         return true;
74 }
75
76
77 // Set font and toggle using data
78 // If successful, returns true
79 bool string2font(string const & data, LyXFont & font, bool & toggle)
80 {
81         istringstream is(data);
82         LyXLex lex(0,0);
83         lex.setStream(is);
84
85         int nset = 0;
86         while (lex.isOK()) {
87                 string token;
88                 if (lex.next())
89                         token = lex.getString();
90
91                 if (token.empty() || !lex.next())
92                         break;
93
94                 if (token == "family") {
95                         int const next = lex.getInteger();
96                         font.setFamily(LyXFont::FONT_FAMILY(next));
97
98                 } else if (token == "series") {
99                         int const next = lex.getInteger();
100                         font.setSeries(LyXFont::FONT_SERIES(next));
101
102                 } else if (token == "shape") {
103                         int const next = lex.getInteger();
104                         font.setShape(LyXFont::FONT_SHAPE(next));
105
106                 } else if (token == "size") {
107                         int const next = lex.getInteger();
108                         font.setSize(LyXFont::FONT_SIZE(next));
109
110                 } else if (token == "emph" || token == "underbar" ||
111                            token == "noun" || token == "number") {
112
113                         int const next = lex.getInteger();
114                         LyXFont::FONT_MISC_STATE const misc =
115                                 LyXFont::FONT_MISC_STATE(next);
116
117                         if (token == "emph")
118                             font.setEmph(misc);
119                         else if (token == "underbar")
120                                 font.setUnderbar(misc);
121                         else if (token == "noun")
122                                 font.setNoun(misc);
123                         else if (token == "number")
124                                 font.setNumber(misc);
125
126                 } else if (token == "color") {
127                         int const next = lex.getInteger();
128                         font.setColor(LColor::color(next));
129
130                 } else if (token == "language") {
131                         string const next = lex.getString();
132                         if (next == "ignore")
133                                 font.setLanguage(ignore_language);
134                         else
135                                 font.setLanguage(languages.getLanguage(next));
136
137                 } else if (token == "toggleall") {
138                         toggle = lex.getBool();
139
140                 } else {
141                         // Unrecognised token
142                         break;
143                 }
144
145                 ++nset;
146         }
147         return (nset > 0);
148 }
149
150
151 bool changeDepth(BufferView * bv, LyXText * text, DEPTH_CHANGE type, bool test_only)
152 {
153         if (!bv->available() || !text)
154                 return false;
155
156         if (test_only)
157                 return text->changeDepth(type, true);
158
159         bool const changed = text->changeDepth(type, false);
160         bv->update();
161         return changed;
162 }
163
164
165 // Returns the current font and depth as a message.
166 string const currentState(BufferView * bv)
167 {
168         if (!bv->available())
169                 return string();
170
171         if (mathcursor)
172                 return mathcursor->info();
173
174         ostringstream state;
175
176         LyXText * text = bv->getLyXText();
177         Buffer * buffer = bv->buffer();
178         LyXCursor const & c = text->cursor;
179
180         bool const show_change = buffer->params().tracking_changes
181                 && text->cursor.pos() != text->cursorPar()->size()
182                 && text->cursorPar()->lookupChange(c.pos()) != Change::UNCHANGED;
183
184         if (show_change) {
185                 Change change = text->cursorPar()->lookupChangeFull(c.pos());
186                 Author const & a = bv->buffer()->params().authors().get(change.author);
187                 state << _("Change: ") << a.name();
188                 if (!a.email().empty())
189                         state << " (" << a.email() << ")";
190                 if (change.changetime)
191                         state << _(" at ") << ctime(&change.changetime);
192                 state << " : ";
193         }
194
195         // I think we should only show changes from the default
196         // font. (Asger)
197         LyXFont font = text->real_current_font;
198         font.reduce(buffer->params().getLyXTextClass().defaultfont());
199
200         // avoid _(...) re-entrance problem
201         string const s = font.stateText(&buffer->params());
202         state << bformat(_("Font: %1$s"), s);
203
204         // state << bformat(_("Font: %1$s"), font.stateText(&buffer->params));
205
206         // The paragraph depth
207         int depth = text->getDepth();
208         if (depth > 0)
209                 state << bformat(_(", Depth: %1$s"), tostr(depth));
210
211         // The paragraph spacing, but only if different from
212         // buffer spacing.
213         if (!text->cursorPar()->params().spacing().isDefault()) {
214                 Spacing::Space cur_space =
215                         text->cursorPar()->params().spacing().getSpace();
216                 state << _(", Spacing: ");
217
218                 switch (cur_space) {
219                 case Spacing::Single:
220                         state << _("Single");
221                         break;
222                 case Spacing::Onehalf:
223                         state << _("OneHalf");
224                         break;
225                 case Spacing::Double:
226                         state << _("Double");
227                         break;
228                 case Spacing::Other:
229                         state << _("Other (")
230                               << text->cursorPar()->params().spacing().getValue()
231                               << ')';
232                         break;
233                 case Spacing::Default:
234                         // should never happen, do nothing
235                         break;
236                 }
237         }
238 #ifdef DEVEL_VERSION
239         ParagraphList::iterator pit = text->cursorPar();
240         state << _(", Paragraph: ") << pit->id();
241         state << _(", Position: ") << text->cursor.pos();
242         RowList::iterator rit = pit->getRow(text->cursor.pos());
243         state << bformat(_(", Row b:%1$d e:%2$d"), rit->pos(), rit->endpos());
244         state << _(", Inset: ");
245         InsetOld * inset = pit->inInset();
246         if (inset)
247                 state << inset << " owner: " << inset->owner();
248         else
249                 state << -1;
250 #endif
251         return state.str();
252 }
253
254
255
256 // deletes a selection during an insertion
257 void replaceSelection(LyXText * text)
258 {
259         if (text->selection.set()) {
260                 text->cutSelection(true, false);
261                 text->bv()->update();
262         }
263 }
264
265
266 void put_selection_at(BufferView * bv, PosIterator const & cur,
267                       int length, bool backwards)
268 {
269         ParIterator par(cur);
270         
271         bv->getLyXText()->clearSelection();
272
273         LyXText * text = par.text(bv);
274         par.lockPath(bv);
275
276         text->setCursor(cur.pit(), cur.pos());
277
278         if (length) {
279                 text->setSelectionRange(length);
280                 text->setSelection();
281                 if (backwards)
282                         text->cursor = text->selection.start;
283         }
284         
285         bv->fitCursor();
286         bv->update();
287 }
288
289
290 }; // namespace bv_funcs