]> git.lyx.org Git - lyx.git/blob - src/insets/insetquotes.C
Forgot to add this files.
[lyx.git] / src / insets / insetquotes.C
1 /* This file is part of
2  * ======================================================
3  * 
4  *           LyX, The Document Processor
5  *       
6  *          Copyright 1995 Matthias Ettrich
7  *          Copyright 1995-2000 The LyX Team.
8  *
9  * ====================================================== */
10
11 #include <config.h>
12
13 #ifdef __GNUG__
14 #pragma implementation
15 #endif
16
17 #include "insetquotes.h"
18 #include "support/lyxlib.h"
19 #include "debug.h"
20 #include "lyxfont.h"
21 #include "lyxrc.h"
22 #include "buffer.h"
23 #include "LaTeXFeatures.h"
24 #include "support/lstrings.h"
25 #include "Painter.h"
26 #include "font.h"
27
28 using std::ostream;
29 using std::endl;
30
31 // Quotes. Used for the various quotes. German, English, French,
32 // Danish, Polish, all either double or single.
33
34 extern BufferView * current_view;
35
36 // codes used to read/write quotes to LyX files
37 static char const * const language_char = "esgpfa";
38 static char const * const side_char = "lr" ;
39 static char const * const times_char = "sd";
40
41 // List of known quote chars
42 static char const * const quote_char = ",'`<>";
43
44 // Index of chars used for the quote. Index is [side, language]
45 int quote_index[2][6] = {
46         { 2, 1, 0, 0, 3, 4 },    // "'',,<>" 
47         { 1, 1, 2, 1, 4, 3 } };  // "`'`'><"
48
49 // Corresponding LaTeX code, for double and single quotes.
50 static char const * const latex_quote_t1[2][5] = 
51 { { "\\quotesinglbase{}",  "'", "`", 
52     "\\guilsinglleft{}", "\\guilsinglright{}" }, 
53   { ",,", "''", "``", "<<", ">>" } };
54
55 static char const * const latex_quote_ot1[2][5] = 
56 { { "\\quotesinglbase{}",  "'", "`", 
57     "\\guilsinglleft{}", "\\guilsinglright{}" }, 
58   { "\\quotedblbase{}", "''", "``",
59     "\\guillemotleft{}", "\\guillemotright{}" } };
60
61 static char const * const latex_quote_babel[2][5] = 
62 { { "\\glq{}",  "'", "`", "\\flq{}", "\\frq{}" },
63   { "\\glqq{}", "''", "``", "\\flqq{}", "\\frqq{}" } };
64
65
66 InsetQuotes::InsetQuotes(string const & str)
67 {
68         ParseString(str);
69 }
70
71
72 InsetQuotes::InsetQuotes(InsetQuotes::quote_language l,
73                          InsetQuotes::quote_side s,
74                          InsetQuotes::quote_times t)
75         : language(l), side(s), times(t)
76 {}
77
78
79 InsetQuotes::InsetQuotes(char c, BufferParams const & params)
80         : language(params.quotes_language), times(params.quotes_times)
81 {
82         // Decide whether left or right 
83         switch(c) {
84         case ' ': case '(': case '{': case '[': case '-': case ':':
85         case LyXParagraph::META_HFILL:
86         case LyXParagraph::META_NEWLINE: 
87                 side = InsetQuotes::LeftQ;   // left quote 
88                 break;
89         default:
90                 side = InsetQuotes::RightQ;  // right quote
91         }
92 }
93
94
95 void InsetQuotes::ParseString(string const & s)
96 {
97         string str(s);
98         if (str.length() != 3) {
99                 lyxerr << "ERROR (InsetQuotes::InsetQuotes):"
100                         " bad string length." << endl;
101                 str = "eld";
102         }
103
104         int i;
105         
106         for (i = 0; i < 6; ++i) {
107                 if (str[0] == language_char[i]) {
108                         language = InsetQuotes::quote_language(i);
109                         break;
110                 }
111         }
112         if (i >= 6) {
113                 lyxerr << "ERROR (InsetQuotes::InsetQuotes):"
114                         " bad language specification." << endl;
115                 language = InsetQuotes::EnglishQ; 
116         }
117
118         for (i = 0; i < 2; ++i) {
119                 if (str[1] == side_char[i]) {
120                         side = InsetQuotes::quote_side(i);
121                         break;
122                 }
123         }
124         if (i >= 2) {
125                 lyxerr << "ERROR (InsetQuotes::InsetQuotes):"
126                         " bad side specification." << endl;
127                 side = InsetQuotes::LeftQ; 
128         }
129
130         for (i = 0; i < 2; ++i) {
131                 if (str[2] == times_char[i]) {
132                         times = InsetQuotes::quote_times(i);
133                         break;
134                 }
135         }
136         if (i >= 2) {
137                 lyxerr << "ERROR (InsetQuotes::InsetQuotes):"
138                         " bad times specification." << endl;
139                 times = InsetQuotes::DoubleQ; 
140         }
141 }
142
143
144 string InsetQuotes::DispString() const
145 {
146         string disp;
147         disp += quote_char[quote_index[side][language]];
148         if (times == InsetQuotes::DoubleQ)
149                 disp += disp;
150
151         if (lyxrc.font_norm == "iso8859-1") 
152                 if (disp == "<<")
153                         disp = '«';
154                 else if (disp == ">>")
155                         disp = '»';
156         
157         return disp;
158 }
159
160
161 int InsetQuotes::ascent(BufferView *, LyXFont const & font) const
162 {
163         return lyxfont::maxAscent(font);
164 }
165
166
167 int InsetQuotes::descent(BufferView *, LyXFont const & font) const
168 {
169         return lyxfont::maxDescent(font);
170 }
171
172
173 int InsetQuotes::width(BufferView *, LyXFont const & font) const
174 {
175         string text = DispString();
176         int w = 0;
177
178         for (string::size_type i = 0; i < text.length(); ++i) {
179                 if (text[i] == ' ')
180                         w += lyxfont::width('i', font);
181                 else if (i == 0 || text[i] != text[i-1])
182                         w += lyxfont::width(text[i], font);
183                 else
184                         w += lyxfont::width(',', font);
185         }
186
187         return w;
188 }
189
190
191 //LyXFont InsetQuotes::ConvertFont(LyXFont font)
192 // I really belive this should be
193 LyXFont InsetQuotes::ConvertFont(LyXFont const & f) const
194 {
195         LyXFont font(f);
196         // quotes-insets cannot be latex of any kind
197         font.setLatex(LyXFont::OFF);
198         return font;
199 }
200
201
202 void InsetQuotes::draw(BufferView * bv, LyXFont const & font,
203                        int baseline, float & x, bool) const
204 {
205         string text = DispString();
206
207         bv->painter().text(int(x), baseline, text, font);
208         x += width(bv, font);
209 }
210
211
212 void InsetQuotes::Write(Buffer const *, ostream & os) const
213 {
214         string text;
215         text += language_char[language];
216         text += side_char[side];
217         text += times_char[times]; 
218         os << "Quotes " << text;
219 }
220
221
222 void InsetQuotes::Read(Buffer const *, LyXLex & lex)
223 {
224         lex.nextToken();
225         ParseString(lex.GetString());
226         lex.next();
227         string tmp(lex.GetString());
228         if (tmp != "\\end_inset")
229                 lyxerr << "LyX Warning: Missing \\end_inset "
230                         "in InsetQuotes::Read." << endl;
231 }
232
233
234 int InsetQuotes::Latex(Buffer const *, ostream & os,
235                        bool /*fragile*/, bool) const
236 {
237         string doclang = 
238                 current_view->buffer()->GetLanguage();
239         int quoteind = quote_index[side][language];
240         string qstr;
241         
242         if (lyxrc.fontenc == "T1") {
243                 qstr = latex_quote_t1[times][quoteind];
244         } else if (doclang == "default") {
245                 qstr = latex_quote_ot1[times][quoteind];
246         } else if (language == InsetQuotes::FrenchQ 
247                  && times == InsetQuotes::DoubleQ
248                  && doclang == "frenchb") {
249                 if (side == InsetQuotes::LeftQ) 
250                         qstr = "\\og{}";
251                 else 
252                         qstr = " \\fg{}";
253         } else 
254                 qstr = latex_quote_babel[times][quoteind];
255
256         // Always guard against unfortunate ligatures (!` ?`)
257         qstr.insert(0, "{}");
258
259         os << qstr;
260         return 0;
261 }
262
263
264 int InsetQuotes::Ascii(Buffer const *, ostream & os) const
265 {
266         os << "\"";
267         return 0;
268 }
269
270
271 int InsetQuotes::Linuxdoc(Buffer const *, ostream & os) const
272 {
273         os << "\"";
274         return 0;
275 }
276
277
278 int InsetQuotes::DocBook(Buffer const *, ostream & os) const
279 {
280         if(times == InsetQuotes::DoubleQ) {
281                 if (side == InsetQuotes::LeftQ)
282                         os << "&ldquo;";
283                 else
284                         os << "&rdquo;";
285         } else {
286                 if (side == InsetQuotes::LeftQ)
287                         os << "&lsquo;";
288                 else
289                         os << "&rsquo;";
290         }
291         return 0;
292 }
293
294
295 void InsetQuotes::Validate(LaTeXFeatures & features) const 
296 {
297         char type = quote_char[quote_index[side][language]];
298
299         if (current_view->buffer()->GetLanguage() == "default" 
300             && lyxrc.fontenc != "T1") {
301                 if (times == InsetQuotes::SingleQ) 
302                         switch (type) {
303                         case ',': features.quotesinglbase = true; break;
304                         case '<': features.guilsinglleft = true; break;
305                         case '>': features.guilsinglright = true; break;
306                         default: break;
307                         }
308                 else 
309                         switch (type) {
310                         case ',': features.quotedblbase = true; break;
311                         case '<': features.guillemotleft = true; break;
312                         case '>': features.guillemotright = true; break;
313                         default: break;
314                         }
315         }
316 }
317
318
319 Inset * InsetQuotes::Clone() const
320 {
321   return new InsetQuotes(language, side, times);
322 }
323
324
325 Inset::Code InsetQuotes::LyxCode() const
326 {
327   return Inset::QUOTE_CODE;
328 }