]> git.lyx.org Git - lyx.git/blob - src/insets/InsetQuotes.cpp
Remove unused Counters::copy
[lyx.git] / src / insets / InsetQuotes.cpp
1 /**
2  * \file InsetQuotes.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Jean-Marc Lasgouttes
7  * \author Jürgen Spitzmüller
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "InsetQuotes.h"
15
16 #include "Buffer.h"
17 #include "BufferParams.h"
18 #include "BufferView.h"
19 #include "Cursor.h"
20 #include "Dimension.h"
21 #include "Encoding.h"
22 #include "Font.h"
23 #include "FuncStatus.h"
24 #include "FuncRequest.h"
25 #include "Language.h"
26 #include "LaTeXFeatures.h"
27 #include "Lexer.h"
28 #include "LyXRC.h"
29 #include "MetricsInfo.h"
30 #include "OutputParams.h"
31 #include "Paragraph.h"
32 #include "ParIterator.h"
33 #include "texstream.h"
34 #include "xml.h"
35
36 #include "frontends/FontMetrics.h"
37 #include "frontends/Painter.h"
38
39 #include "support/debug.h"
40 #include "support/docstring.h"
41 #include "support/docstream.h"
42 #include "support/gettext.h"
43 #include "support/lstrings.h"
44 #include "support/textutils.h"
45
46 #include <string.h>
47
48 using namespace std;
49 using namespace lyx::support;
50
51 namespace lyx {
52
53 namespace {
54
55 /* codes used to read/write quotes to LyX files
56  * available styles:
57  * e    ``english''  (`inner quotation')
58  * s    ''swedish''  ('inner quotation')
59  * g    ,,german``   (,inner quotation`)
60  * p    ,,polish''   (,inner quotation')
61  * c    <<swiss>>    (<inner quotation>)
62  * a    >>danish<<   (>inner quotation<)
63  * q    "plain"      ('inner quotation')
64  * b    `british'    (``inner quotation'')
65  * w    >>swedishg>> ('inner quotation') ["g" = Guillemets]
66  * f    <<french>>   (``inner quotation'')
67  * i    <<frenchin>> (<<inner quotation>>) ["in" = Imprimerie Nationale]
68  * r    <<russian>>  (,,inner quotation``)
69  * j    [U+300C]cjk[U+300D]  ([U+300E]inner quotation[U+300F]) [CORNER BRACKETS]
70  * k    [U+300A]cjkangle[U+300B]  ([U+3008]inner quotation[U+3009]) [ANGLE BRACKETS]
71  * x    dynamic style (inherits document settings)
72  */
73
74 char const * const style_char = "esgpcaqbwfirjkx";
75 char const * const side_char = "lr" ;
76 char const * const level_char = "sd";
77
78 } // namespace
79
80
81 /////////////////////////////////////////////////////////////////////
82 //
83 // InsetQuotesParams
84 //
85 ///////////////////////////////////////////////////////////////////////
86
87 InsetQuotesParams quoteparams;
88
89
90 int InsetQuotesParams::stylescount() const
91 {
92         return strlen(style_char);
93 }
94
95
96 char InsetQuotesParams::getStyleChar(QuoteStyle const & style) const
97 {
98         return style_char[style];
99 }
100
101
102 InsetQuotesParams::QuoteStyle InsetQuotesParams::getQuoteStyle(string const & s,
103                             bool const allow_wildcards, QuoteStyle fb) const
104 {
105         QuoteStyle res = fb;
106
107         string str = s;
108         if (str.length() != 3) {
109                 LYXERR0("ERROR (InsetQuotes::InsetQuotes):"
110                         " bad string length.");
111                 str = "eld";
112         }
113
114         // '.' wildcard means: keep current style
115         if (!allow_wildcards || str[0] != '.') {
116                 int i;
117                 for (i = 0; i < stylescount(); ++i) {
118                         if (str[0] == style_char[i]) {
119                                 res = QuoteStyle(i);
120                                 break;
121                         }
122                 }
123                 if (i >= stylescount()) {
124                         LYXERR0("ERROR (InsetQuotes::InsetQuotes):"
125                                 " bad style specification.");
126                         res = EnglishQuotes;
127                 }
128         }
129
130         return res;
131 }
132
133
134 InsetQuotesParams::QuoteSide InsetQuotesParams::getQuoteSide(string const & s,
135                         bool const allow_wildcards, QuoteSide fb) const
136 {
137         QuoteSide res = fb;
138
139         string str = s;
140         if (str.length() != 3) {
141                 LYXERR0("ERROR (InsetQuotes::InsetQuotes):"
142                         " bad string length.");
143                 str = "eld";
144         }
145
146         // '.' wildcard means: keep current side
147         if (!allow_wildcards || str[1] != '.') {
148                 int i;
149                 for (i = 0; i < 2; ++i) {
150                         if (str[1] == side_char[i]) {
151                                 res = InsetQuotesParams::QuoteSide(i);
152                                 break;
153                         }
154                 }
155                 if (i >= 2) {
156                         LYXERR0("ERROR (InsetQuotes::InsetQuotes):"
157                                 " bad side specification.");
158                         res = OpeningQuote;
159                 }
160         }
161
162         return res;
163 }
164
165
166 InsetQuotesParams::QuoteLevel InsetQuotesParams::getQuoteLevel(string const & s,
167                         bool const allow_wildcards, QuoteLevel fb) const
168 {
169         QuoteLevel res = fb;
170
171         string str = s;
172         if (str.length() != 3) {
173                 LYXERR0("ERROR (InsetQuotes::InsetQuotes):"
174                         " bad string length.");
175                 str = "eld";
176         }
177
178         // '.' wildcard means: keep current level
179         if (!allow_wildcards || str[2] != '.') {
180                 int i;
181                 for (i = 0; i < 2; ++i) {
182                         if (str[2] == level_char[i]) {
183                                 res = InsetQuotesParams::QuoteLevel(i);
184                                 break;
185                         }
186                 }
187                 if (i >= 2) {
188                         LYXERR0("ERROR (InsetQuotes::InsetQuotes):"
189                                 " bad level specification.");
190                         res = InsetQuotesParams::PrimaryQuotes;
191                 }
192         }
193
194         return res;
195 }
196
197
198 char_type InsetQuotesParams::getQuoteChar(QuoteStyle const & style, QuoteLevel const & level,
199                                     QuoteSide const & side, bool const rtl) const
200 {
201         // main opening quotation mark
202         char_type left_primary;
203         // main closing quotation mark
204         char_type right_primary;
205         // secondary (inner, 'single') opening quotation mark
206         char_type left_secondary;
207         // secondary (inner, 'single') closing quotation mark
208         char_type right_secondary;
209
210         switch (style) {
211         case EnglishQuotes: {
212                 left_primary = 0x201c; // ``
213                 right_primary = 0x201d; // ''
214                 left_secondary = 0x2018; // `
215                 right_secondary = 0x2019; // '
216                 break;
217         }
218         case SwedishQuotes: {
219                 left_primary = 0x201d; // ''
220                 right_primary = 0x201d; // ''
221                 left_secondary = 0x2019; // '
222                 right_secondary = 0x2019; // '
223                 break;
224         }
225         case GermanQuotes: {
226                 left_primary = 0x201e; // ,,
227                 right_primary = 0x201c; // ``
228                 left_secondary = 0x201a; // ,
229                 right_secondary = 0x2018; // `
230                 break;
231         }
232         case PolishQuotes: {
233                 left_primary =  0x201e; // ,,
234                 right_primary = 0x201d; // ''
235                 left_secondary = 0x201a; // ,
236                 right_secondary = 0x2019; // '
237                 break;
238         }
239         case SwissQuotes: {
240                 left_primary = 0x00ab; // <<
241                 right_primary = 0x00bb; // >>
242                 left_secondary = 0x2039; // <
243                 right_secondary = 0x203a; // >
244                 break;
245         }
246         case DanishQuotes: {
247                 left_primary = 0x00bb; // >>
248                 right_primary = 0x00ab; // <<
249                 left_secondary = 0x203a; // >
250                 right_secondary = 0x2039; // <
251                 break;
252         }
253         case PlainQuotes: {
254                 left_primary = 0x0022; // "
255                 right_primary = 0x0022; // "
256                 left_secondary = 0x0027; // '
257                 right_secondary = 0x0027; // '
258                 break;
259         }
260         case BritishQuotes: {
261                 left_primary = 0x2018; // `
262                 right_primary = 0x2019; // '
263                 left_secondary = 0x201c; // ``
264                 right_secondary = 0x201d; // ''
265                 break;
266         }
267         case SwedishGQuotes: {
268                 left_primary = 0x00bb; // >>
269                 right_primary = 0x00bb; // >>
270                 left_secondary = 0x2019; // '
271                 right_secondary = 0x2019; // '
272                 break;
273         }
274         case FrenchQuotes: {
275                 left_primary = 0x00ab; // <<
276                 right_primary = 0x00bb; // >>
277                 left_secondary = 0x201c; // ``
278                 right_secondary = 0x201d; // ''
279                 break;
280         }
281         case FrenchINQuotes:{
282                 left_primary = 0x00ab; // <<
283                 right_primary = 0x00bb; // >>
284                 left_secondary =  0x00ab; // <<
285                 right_secondary = 0x00bb; // >>
286                 break;
287         }
288         case RussianQuotes:{
289                 left_primary = 0x00ab; // <<
290                 right_primary = 0x00bb; // >>
291                 left_secondary =  0x201e; // ,,
292                 right_secondary = 0x201c; // ``
293                 break;
294         }
295         case CJKQuotes:{
296                 left_primary = 0x300c; // LEFT CORNER BRACKET
297                 right_primary = 0x300d; // RIGHT CORNER BRACKET
298                 left_secondary =  0x300e; // LEFT WHITE CORNER BRACKET
299                 right_secondary = 0x300f; // RIGHT WHITE CORNER BRACKET
300                 break;
301         }
302         case CJKAngleQuotes:{
303                 left_primary = 0x300a; // LEFT DOUBLE ANGLE BRACKET
304                 right_primary = 0x300b; // RIGHT DOUBLE ANGLE BRACKET
305                 left_secondary =  0x3008; // LEFT ANGLE BRACKET
306                 right_secondary = 0x3009; // RIGHT ANGLE BRACKET
307                 break;
308         }
309         case DynamicQuotes:
310         default:
311                 // should not happen
312                 left_primary = 0x003f; // ?
313                 right_primary = 0x003f; // ?
314                 left_secondary =  0x003f; // ?
315                 right_secondary = 0x003f; // ?
316                 break;
317         }
318
319         switch (level) {
320         case SecondaryQuotes:
321                 if (rtl)
322                         return (side == ClosingQuote) ? left_secondary : right_secondary;
323                 return (side == OpeningQuote) ? left_secondary : right_secondary;
324         case PrimaryQuotes:
325                 if (rtl)
326                         return (side == ClosingQuote) ? left_primary : right_primary;
327                 return (side == OpeningQuote) ? left_primary : right_primary;
328         default:
329                 break;
330         }
331
332         // should not happen
333         return 0x003f;
334 }
335
336
337 docstring InsetQuotesParams::getLaTeXQuote(char_type c, string const & op,
338                                            bool const rtl) const
339 {
340         string res;
341
342         switch (c){
343         case 0x201a: {// ,
344                 if (op == "babel")
345                         res = "\\glq";
346                 else
347                         res = "\\quotesinglbase";
348                 break;
349         }
350         case 0x2019: {// '
351                 if (op == "int")
352                         // This macro is redefined in rtl mode
353                         res = rtl ? "\\textquoteleft" : "\\textquoteright";
354                 else
355                         res = "'";
356                 break;
357         }
358         case 0x2018: {// `
359                 if (op == "int")
360                         // This macro is redefined in rtl mode
361                         res = rtl ? "\\textquoteright" : "\\textquoteleft";
362                 else
363                         res = "`";
364                 break;
365         }
366         case 0x2039: {// <
367                 if (op == "babel")
368                         res = "\\flq";
369                 else
370                         res = "\\guilsinglleft";
371                 break;
372         }
373         case 0x203a: {// >
374                 if (op == "babel")
375                         res = "\\frq";
376                 else
377                         res = "\\guilsinglright";
378                 break;
379         }
380         case 0x0027: {// ' (plain)
381                 res = "\\textquotesingle";
382                 break;
383         }
384         case 0x201e: {// ,,
385                 if (op == "t1")
386                         res = ",,";
387                 else if (op == "babel")
388                         res = "\\glqq";
389                 else
390                         res = "\\quotedblbase";
391                 break;
392         }
393         case 0x201d: {// ''
394                 if (op == "int")
395                         // This macro is redefined in rtl mode
396                         res = rtl ? "\\textquotedblleft" : "\\textquotedblright";
397                 else
398                         res = "''";
399                 break;
400         }
401         case 0x201c: {// ``
402                 if (op == "int")
403                         // This macro is redefined in rtl mode
404                         res = rtl ? "\\textquotedblright" : "\\textquotedblleft";
405                 else
406                         res = "``";
407                 break;
408         }
409         case 0x00ab: {// <<
410                 if (op == "t1")
411                         res = "<<";
412                 else if (op == "babel")
413                         res = "\\flqq";
414                 else
415                         res = "\\guillemotleft";
416                 break;
417         }
418         case 0x00bb: {// >>
419                 if (op == "t1")
420                         res = ">>";
421                 else if (op == "babel")
422                         res = "\\frqq";
423                 else
424                         res = "\\guillemotright";
425                 break;
426         }
427         case 0x0022: {// "
428                 res = "\\textquotedbl";
429                 break;
430         }
431         // The following are fakes
432         // This is just to get something symbolic
433         // in encodings where this chars would not be used anyway
434         case 0x300c: // LEFT CORNER BRACKET
435                 res = "\\ensuremath{\\lceil}";
436                 break;
437         case 0x300d: // RIGHT CORNER BRACKET
438                 res = "\\ensuremath{\\rfloor}";
439                 break;
440         case 0x300e: // LEFT WHITE CORNER BRACKET
441                 res = "\\ensuremath{\\llceil}";
442                 break;
443         case 0x300f: // RIGHT WHITE CORNER BRACKET
444                 res = "\\ensuremath{\\rrfloor}";
445                 break;
446         case 0x300a: // LEFT DOUBLE ANGLE BRACKET
447                 res = "\\ensuremath{\\langle\\kern-2.5pt\\langle}";
448                 break;
449         case 0x300b: // RIGHT DOUBLE ANGLE BRACKET
450                 res = "\\ensuremath{\\rangle\\kern-2.5pt\\rangle}";
451                 break;
452         case 0x3008: // LEFT ANGLE BRACKET
453                 res = "\\ensuremath{\\langle}";
454                 break;
455         case 0x3009: // RIGHT ANGLE BRACKET
456                 res = "\\ensuremath{\\rangle}";
457                 break;
458         default:
459                 break;
460         }
461
462         return from_ascii(res);
463 }
464
465
466 docstring InsetQuotesParams::getHTMLQuote(char_type c) const
467 {
468         string res;
469
470         switch (c){
471         case 0x201a: // ,
472                 res = "&sbquo;";
473                 break;
474         case 0x2019: // '
475                 res = "&rsquo;";
476                 break;
477         case 0x2018: // `
478                 res = "&lsquo;";
479                 break;
480         case 0x2039: // <
481                 res = "&lsaquo;";
482                 break;
483         case 0x203a: // >
484                 res = "&rsaquo;";
485                 break;
486         case 0x0027: // ' (plain)
487                 res = "&#x27;";
488                 break;
489         case 0x201e: // ,,
490                 res = "&bdquo;";
491                 break;
492         case 0x201d: // ''
493                 res = "&rdquo;";
494                 break;
495         case 0x201c: // ``
496                 res = "&ldquo;";
497                 break;
498         case 0x00ab: // <<
499                 res = "&laquo;";
500                 break;
501         case 0x00bb: // >>
502                 res = "&raquo;";
503                 break;
504         case 0x0022: // "
505                 res = "&quot;";
506                 break;
507         case 0x300c: // LEFT CORNER BRACKET
508                 res = "&#x300c;";
509                 break;
510         case 0x300d: // RIGHT CORNER BRACKET
511                 res = "&#x300d;";
512                 break;
513         case 0x300e: // LEFT WHITE CORNER BRACKET
514                 res = "&#x300e;";
515                 break;
516         case 0x300f: // RIGHT WHITE CORNER BRACKET
517                 res = "&#x300f;";
518                 break;
519         case 0x300a: // LEFT DOUBLE ANGLE BRACKET
520                 res = "&#x300a;";
521                 break;
522         case 0x300b: // RIGHT DOUBLE ANGLE BRACKET
523                 res = "&#x300b;";
524                 break;
525         case 0x3008: // LEFT ANGLE BRACKET
526                 res = "&#x3008;";
527                 break;
528         case 0x3009: // RIGHT ANGLE BRACKET
529                 res = "&#x3009;";
530                 break;
531         default:
532                 break;
533         }
534
535         return from_ascii(res);
536 }
537
538
539 docstring InsetQuotesParams::getXMLQuote(char_type c) const
540 {
541         // Directly output the character Unicode form.
542         return from_ascii("&#" + to_string(c) + ";");
543 }
544
545
546 map<string, docstring> InsetQuotesParams::getTypes() const
547 {
548         map<string, docstring> res;
549
550         int sty, sid, lev;
551         QuoteStyle style;
552         QuoteSide side;
553         QuoteLevel level;
554         string type;
555
556         // get all quote types
557         for (sty = 0; sty < stylescount(); ++sty) {
558                 style = QuoteStyle(sty);
559                 if (style == DynamicQuotes)
560                         continue;
561                 for (sid = 0; sid < 2; ++sid) {
562                         side = QuoteSide(sid);
563                         for (lev = 0; lev < 2; ++lev) {
564                                 type += style_char[style];
565                                 type += side_char[sid];
566                                 level = QuoteLevel(lev);
567                                 type += level_char[lev];
568                                 res[type] = docstring(1, getQuoteChar(style, level, side));
569                                 type.clear();
570                         }
571                 }
572         }
573         return res;
574 }
575
576
577 docstring const InsetQuotesParams::getGuiLabel(QuoteStyle const & qs, bool langdef) const
578 {
579         docstring const styledesc =
580                 bformat(_("%1$souter%2$s and %3$sinner%4$s[[quotation marks]]"),
581                         docstring(1, getQuoteChar(qs, PrimaryQuotes, OpeningQuote)),
582                         docstring(1, getQuoteChar(qs, PrimaryQuotes, ClosingQuote)),
583                         docstring(1, getQuoteChar(qs, SecondaryQuotes, OpeningQuote)),
584                         docstring(1, getQuoteChar(qs, SecondaryQuotes, ClosingQuote))
585                         );
586
587         if (!langdef)
588                 return styledesc;
589
590         return bformat(_("%1$s[[quot. mark description]] (language default)"),
591                         styledesc);
592 }
593
594
595 docstring const InsetQuotesParams::getShortGuiLabel(docstring const & str) const
596 {
597         string const s = to_ascii(str);
598         QuoteStyle const style = getQuoteStyle(s);
599         QuoteSide const side = getQuoteSide(s);
600         QuoteLevel const level = getQuoteLevel(s);
601
602         return (side == OpeningQuote) ?
603                 bformat(_("%1$stext"),
604                        docstring(1, getQuoteChar(style, level, side))) :
605                 bformat(_("text%1$s"),
606                        docstring(1, getQuoteChar(style, level, side)));
607 }
608
609
610 /////////////////////////////////////////////////////////////////////
611 //
612 // InsetQuotes
613 //
614 ///////////////////////////////////////////////////////////////////////
615
616 InsetQuotes::InsetQuotes(Buffer * buf, string const & str)
617         : Inset(buf)
618 {
619         if (buf) {
620                 global_style_ = buf->masterBuffer()->params().quotes_style;
621                 fontspec_ = buf->masterBuffer()->params().useNonTeXFonts;
622         }
623
624         parseString(str);
625 }
626
627
628 InsetQuotes::InsetQuotes(Buffer * buf, char_type c, InsetQuotesParams::QuoteLevel level,
629                          string const & side, string const & style)
630         : Inset(buf), level_(level)
631 {
632         bool dynamic = false;
633         if (buf) {
634                 global_style_ = buf->masterBuffer()->params().quotes_style;
635                 fontenc_ = buf->masterBuffer()->params().main_font_encoding();
636                 dynamic = buf->masterBuffer()->params().dynamic_quotes;
637                 fontspec_ = buf->masterBuffer()->params().useNonTeXFonts;
638         } else {
639                 fontenc_ = "OT1";
640         }
641         if (style.empty())
642                 style_ = dynamic ? InsetQuotesParams::DynamicQuotes : global_style_;
643         else
644                 style_ = getStyle(style);
645
646         if (side == "left" || side == "opening")
647                 side_ = InsetQuotesParams::OpeningQuote;
648         else if (side == "right" || side == "closing")
649                 side_ = InsetQuotesParams::ClosingQuote;
650         else
651                 setSide(c);
652 }
653
654
655 docstring InsetQuotes::layoutName() const
656 {
657         return from_ascii("Quotes");
658 }
659
660
661 void InsetQuotes::setSide(char_type c)
662 {
663         // Decide whether opening or closing quote
664         if (lyx::isSpace(c) || isOpenPunctuation(c))
665                 side_ = InsetQuotesParams::OpeningQuote;// opening quote
666         else
667                 side_ = InsetQuotesParams::ClosingQuote;// closing quote
668 }
669
670
671 void InsetQuotes::parseString(string const & s, bool const allow_wildcards)
672 {
673         style_ = quoteparams.getQuoteStyle(s, allow_wildcards, style_);
674         side_ = quoteparams.getQuoteSide(s, allow_wildcards, side_);
675         level_ = quoteparams.getQuoteLevel(s, allow_wildcards, level_);
676 }
677
678
679 InsetQuotesParams::QuoteStyle InsetQuotes::getStyle(string const & s)
680 {
681         InsetQuotesParams::QuoteStyle qs = InsetQuotesParams::EnglishQuotes;
682
683         if (s == "english")
684                 qs = InsetQuotesParams::EnglishQuotes;
685         else if (s == "swedish")
686                 qs = InsetQuotesParams::SwedishQuotes;
687         else if (s == "german")
688                 qs = InsetQuotesParams::GermanQuotes;
689         else if (s == "polish")
690                 qs = InsetQuotesParams::PolishQuotes;
691         else if (s == "swiss")
692                 qs = InsetQuotesParams::SwissQuotes;
693         else if (s == "danish")
694                 qs = InsetQuotesParams::DanishQuotes;
695         else if (s == "plain")
696                 qs = InsetQuotesParams::PlainQuotes;
697         else if (s == "british")
698                 qs = InsetQuotesParams::BritishQuotes;
699         else if (s == "swedishg")
700                 qs = InsetQuotesParams::SwedishGQuotes;
701         else if (s == "french")
702                 qs = InsetQuotesParams::FrenchQuotes;
703         else if (s == "frenchin")
704                 qs = InsetQuotesParams::FrenchINQuotes;
705         else if (s == "russian")
706                 qs = InsetQuotesParams::RussianQuotes;
707         else if (s == "cjk")
708                 qs = InsetQuotesParams::CJKQuotes;
709         else if (s == "cjkangle")
710                 qs = InsetQuotesParams::CJKAngleQuotes;
711         else if (s == "dynamic")
712                 qs = InsetQuotesParams::DynamicQuotes;
713
714         return qs;
715 }
716
717
718 docstring InsetQuotes::displayString() const
719 {
720         // In PassThru, we use straight quotes
721         if (pass_thru_)
722                 return (level_ == InsetQuotesParams::PrimaryQuotes) ?
723                                         from_ascii("\"") : from_ascii("'");
724
725         InsetQuotesParams::QuoteStyle style =
726                         (style_ == InsetQuotesParams::DynamicQuotes) ? global_style_ : style_;
727
728         docstring retdisp = docstring(1, quoteparams.getQuoteChar(style, level_, side_, rtl_));
729
730         // in French, thin spaces are added inside double guillemets
731         if (prefixIs(context_lang_, "fr")
732             && level_ == InsetQuotesParams::PrimaryQuotes
733             && (style == InsetQuotesParams::SwissQuotes
734                 || style == InsetQuotesParams::FrenchQuotes
735                 || style == InsetQuotesParams::FrenchINQuotes)) {
736                 // THIN SPACE (U+2009)
737                 char_type const thin_space = 0x2009;
738                 if (side_ == InsetQuotesParams::OpeningQuote)
739                         retdisp += thin_space;
740                 else
741                         retdisp = thin_space + retdisp;
742         }
743
744         return retdisp;
745 }
746
747
748 void InsetQuotes::metrics(MetricsInfo & mi, Dimension & dim) const
749 {
750         FontInfo & font = mi.base.font;
751         frontend::FontMetrics const & fm = theFontMetrics(font);
752         dim.asc = fm.maxAscent();
753         dim.des = fm.maxDescent();
754         dim.wid = fm.width(displayString());
755 }
756
757
758 void InsetQuotes::draw(PainterInfo & pi, int x, int y) const
759 {
760         FontInfo font = pi.base.font;
761         if (style_ == InsetQuotesParams::DynamicQuotes)
762                 font.setPaintColor(Color_special);
763         else
764                 font.setPaintColor(pi.textColor(font.realColor()));
765         pi.pain.text(x, y, displayString(), font);
766 }
767
768
769 string InsetQuotes::getType() const
770 {
771         string text;
772         text += style_char[style_];
773         text += side_char[side_];
774         text += level_char[level_];
775         return text;
776 }
777
778
779 void InsetQuotes::write(ostream & os) const
780 {
781         os << "Quotes " << getType();
782 }
783
784
785 void InsetQuotes::read(Lexer & lex)
786 {
787         lex.setContext("InsetQuotes::read");
788         lex.next();
789         parseString(lex.getString());
790         lex >> "\\end_inset";
791 }
792
793
794 void InsetQuotes::doDispatch(Cursor & cur, FuncRequest & cmd)
795 {
796         switch (cmd.action()) {
797         case LFUN_INSET_MODIFY: {
798                 string const first_arg = cmd.getArg(0);
799                 bool const change_type = first_arg == "changetype";
800                 if (!change_type) {
801                         // not for us
802                         // this will not be handled higher up
803                         cur.undispatched();
804                         return;
805                 }
806                 cur.recordUndoInset(this);
807                 parseString(cmd.getArg(1), true);
808                 cur.forceBufferUpdate();
809                 break;
810         }
811         default:
812                 Inset::doDispatch(cur, cmd);
813                 break;
814         }
815 }
816
817
818 bool InsetQuotes::getStatus(Cursor & cur, FuncRequest const & cmd,
819                 FuncStatus & flag) const
820 {
821         switch (cmd.action()) {
822
823         case LFUN_INSET_MODIFY: {
824                 string const first_arg = cmd.getArg(0);
825                 if (first_arg == "changetype") {
826                         string const type = cmd.getArg(1);
827                         flag.setOnOff(type == getType());
828                         flag.setEnabled(!pass_thru_);
829                         return true;
830                 }
831                 return Inset::getStatus(cur, cmd, flag);
832         }
833
834         default:
835                 return Inset::getStatus(cur, cmd, flag);
836         }
837 }
838
839
840 void InsetQuotes::latex(otexstream & os, OutputParams const & runparams) const
841 {
842         InsetQuotesParams::QuoteStyle style =
843                         (style_ == InsetQuotesParams::DynamicQuotes) ? global_style_ : style_;
844         char_type quotechar = quoteparams.getQuoteChar(style, level_, side_, rtl_);
845         docstring qstr;
846
847         // In pass-thru context, we output plain quotes
848         if (runparams.pass_thru)
849                 qstr = (level_ == InsetQuotesParams::PrimaryQuotes) ? from_ascii("\"") : from_ascii("'");
850         else if (style == InsetQuotesParams::PlainQuotes && fontspec_) {
851                 // For XeTeX and LuaTeX,we need to disable mapping to get straight
852                 // quotes. We define our own commands that do this
853                 qstr = (level_ == InsetQuotesParams::PrimaryQuotes) ?
854                         from_ascii("\\textquotedblplain") : from_ascii("\\textquotesingleplain");
855         }
856         else if (runparams.use_polyglossia) {
857                 // For polyglossia, we directly output the respective unicode chars
858                 // (spacing and kerning is then handled respectively)
859                 qstr = docstring(1, quotechar);
860         }
861         // The CJK marks are not yet covered by utf8 inputenc (we don't have the entry in
862         // unicodesymbols, since we don't want to add fake synbols there).
863         else if (style == InsetQuotesParams::CJKQuotes || style  == InsetQuotesParams::CJKAngleQuotes) {
864                 if (runparams.encoding && runparams.encoding->name() != "utf8"
865                     && runparams.encoding->encodable(quotechar))
866                         qstr = docstring(1, quotechar);
867                 else
868                         qstr = quoteparams.getLaTeXQuote(quotechar, "int");
869         }
870         else if ((style == InsetQuotesParams::SwissQuotes
871                  || style == InsetQuotesParams::FrenchQuotes
872                  || style == InsetQuotesParams::FrenchINQuotes)
873                  && level_ == InsetQuotesParams::PrimaryQuotes
874                  && prefixIs(runparams.local_font->language()->code(), "fr")) {
875                 // Specific guillemets of French babel
876                 // including correct French spacing
877                 if (side_ == InsetQuotesParams::OpeningQuote)
878                         qstr = from_ascii("\\og");
879                 else
880                         qstr = from_ascii("\\fg");
881         } else if (runparams.use_hyperref && runparams.moving_arg) {
882                 // Use internal commands in headings with hyperref
883                 // (ligatures not featured in PDF strings)
884                 qstr = quoteparams.getLaTeXQuote(quotechar, "int", rtl_);
885         } else if (fontenc_ == "T1"
886                    && !runparams.local_font->language()->internalFontEncoding()) {
887                 // Quotation marks for T1 font encoding
888                 // (using ligatures)
889                 qstr = quoteparams.getLaTeXQuote(quotechar, "t1");
890         } else if (runparams.local_font->language()->internalFontEncoding()) {
891                 // Quotation marks for internal font encodings
892                 // (ligatures not featured)
893                 qstr = quoteparams.getLaTeXQuote(quotechar, "int", rtl_);
894 #ifdef DO_USE_DEFAULT_LANGUAGE
895         } else if ((doclang == "default"
896 #else
897         } else if ((!runparams.use_babel
898 #endif
899                    || (fontenc_ != "T1" && fontenc_ != "OT1"))
900                    || runparams.isFullUnicode()) {
901                 // Standard quotation mark macros
902                 // These are also used by babel
903                 // without fontenc (XeTeX/LuaTeX)
904                 qstr = quoteparams.getLaTeXQuote(quotechar, "ot1");
905         } else {
906                 // Babel shorthand quotation marks (for T1/OT1)
907                 qstr = quoteparams.getLaTeXQuote(quotechar, "babel");
908         }
909
910         if (!runparams.pass_thru) {
911                 // Guard against unwanted ligatures with preceding text
912                 char_type const lastchar = os.lastChar();
913                 // LuaTeX does not respect {} as ligature breaker by design,
914                 // see https://tex.stackexchange.com/q/349725/19291
915                 docstring const nolig =
916                                 (runparams.flavor == OutputParams::LUATEX
917                                  || runparams.flavor == OutputParams::DVILUATEX) ?
918                                         from_ascii("\\/") : from_ascii("{}");
919                 // !` ?` => !{}` ?{}`
920                 if (prefixIs(qstr, from_ascii("`"))
921                     && (lastchar == '!' || lastchar == '?'))
922                         os << nolig;
923                 // ``` ''' ,,, <<< >>>
924                 // => `{}`` '{}'' ,{},, <{}<< >{}>>
925                 if (contains(from_ascii(",'`<>"), lastchar)
926                     && prefixIs(qstr, lastchar))
927                         os << nolig;
928         }
929
930         os << qstr;
931
932         if (prefixIs(qstr, from_ascii("\\")) && !suffixIs(qstr, '}'))
933                 // properly terminate the command depending on the context
934                 os << termcmd;
935 }
936
937
938 int InsetQuotes::plaintext(odocstringstream & os,
939         OutputParams const &, size_t) const
940 {
941         docstring const str = displayString();
942         os << str;
943         return str.size();
944 }
945
946
947 docstring InsetQuotes::getQuoteEntity(bool isHTML) const {
948         InsetQuotesParams::QuoteStyle style =
949                         (style_ == InsetQuotesParams::DynamicQuotes) ? global_style_ : style_;
950         docstring res = isHTML ? quoteparams.getHTMLQuote(quoteparams.getQuoteChar(style, level_, side_)) :
951                                         quoteparams.getXMLQuote(quoteparams.getQuoteChar(style, level_, side_));
952
953         // in French, thin spaces are added inside double guillemets
954         if (prefixIs(context_lang_, "fr")
955             && level_ == InsetQuotesParams::PrimaryQuotes
956             && (style == InsetQuotesParams::FrenchQuotes
957                 || style == InsetQuotesParams::FrenchINQuotes
958                 || style == InsetQuotesParams::SwissQuotes)) {
959                 // THIN SPACE (U+2009)
960                 docstring const thin_space = from_ascii("&#x2009;");
961                 if (side_ == InsetQuotesParams::OpeningQuote) // Open quote: space after
962                         res += thin_space;
963                 else // Close quote: space before
964                         res = thin_space + res;
965         }
966         return res;
967 }
968
969
970 void InsetQuotes::docbook(XMLStream & xs, OutputParams const &) const
971 {
972         xs << XMLStream::ESCAPE_NONE << getQuoteEntity(false);
973 }
974
975
976 docstring InsetQuotes::xhtml(XMLStream & xs, OutputParams const &) const
977 {
978         xs << XMLStream::ESCAPE_NONE << getQuoteEntity(true);
979         return docstring();
980 }
981
982
983 void InsetQuotes::toString(odocstream & os) const
984 {
985         os << displayString();
986 }
987
988
989 void InsetQuotes::forOutliner(docstring & os, size_t const, bool const) const
990 {
991         os += displayString();
992 }
993
994
995 void InsetQuotes::updateBuffer(ParIterator const & it, UpdateType /* utype*/, bool const /*deleted*/)
996 {
997         BufferParams const & bp = buffer().masterBuffer()->params();
998         Font const & font = it.paragraph().getFontSettings(bp, it.pos());
999         pass_thru_ = it.paragraph().isPassThru();
1000         context_lang_ = font.language()->code();
1001         internal_fontenc_ = font.language()->internalFontEncoding();
1002         fontenc_ = bp.main_font_encoding();
1003         global_style_ = bp.quotes_style;
1004         fontspec_ = bp.useNonTeXFonts;
1005         rtl_ = font.isRightToLeft();
1006 }
1007
1008
1009 void InsetQuotes::validate(LaTeXFeatures & features) const
1010 {
1011         InsetQuotesParams::QuoteStyle style =
1012                         (style_ == InsetQuotesParams::DynamicQuotes) ? global_style_ : style_;
1013         char_type type = quoteparams.getQuoteChar(style, level_, side_);
1014
1015         // Handle characters that are not natively supported by
1016         // specific font encodings (we roll our own definitions)
1017 #ifdef DO_USE_DEFAULT_LANGUAGE
1018         if (features.bufferParams().language->lang() == "default"
1019 #else
1020         if (!features.useBabel()
1021 #endif
1022             && !features.runparams().isFullUnicode() && fontenc_ != "T1") {
1023                 switch (type) {
1024                 case 0x201a:
1025                         features.require("quotesinglbase");
1026                         break;
1027                 case 0x2039:
1028                         features.require("guilsinglleft");
1029                         break;
1030                 case 0x203a:
1031                         features.require("guilsinglright");
1032                         break;
1033                 case 0x201e:
1034                         features.require("quotedblbase");
1035                         break;
1036                 case 0x00ab:
1037                         features.require("guillemotleft");
1038                         break;
1039                 case 0x00bb:
1040                         features.require("guillemotright");
1041                         break;
1042                 default:
1043                         break;
1044                 }
1045         }
1046         // Handle straight quotation marks. These need special care
1047         // in most output formats
1048         switch (type) {
1049         case 0x0027: {
1050                 if (features.runparams().isFullUnicode() && fontspec_)
1051                         features.require("textquotesinglep");
1052                 else
1053                         features.require("textcomp");
1054                 break;
1055         }
1056         case 0x0022: {
1057                 if (features.runparams().isFullUnicode() && fontspec_)
1058                         features.require("textquotedblp");
1059                 else if (fontenc_ != "T1" || internal_fontenc_)
1060                         features.require("textquotedbl");
1061                 break;
1062         }
1063         // we fake these from math (also for utf8 inputenc
1064         // currently; see above)
1065         case 0x300e: // LEFT WHITE CORNER BRACKET
1066         case 0x300f: // RIGHT WHITE CORNER BRACKET
1067                 if (!features.runparams().encoding
1068                     || features.runparams().encoding->name() == "utf8"
1069                     || !features.runparams().encoding->encodable(type))
1070                         features.require("stmaryrd");
1071                 break;
1072         default:
1073                 break;
1074         }
1075 }
1076
1077
1078 string InsetQuotes::contextMenuName() const
1079 {
1080         return "context-quote";
1081 }
1082
1083 } // namespace lyx