]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetQuotes.cpp
New DocBook support
[lyx.git] / src / insets / InsetQuotes.cpp
index d34efa48cd4ed07d920c8c4d969f41e9b286da04..5358bbaf19d64deb9430f396ac4ad328cb23425c 100644 (file)
 #include "LyXRC.h"
 #include "MetricsInfo.h"
 #include "OutputParams.h"
-#include "output_xhtml.h"
 #include "Paragraph.h"
 #include "ParIterator.h"
 #include "texstream.h"
+#include "xml.h"
 
 #include "frontends/FontMetrics.h"
 #include "frontends/Painter.h"
@@ -350,7 +350,7 @@ docstring InsetQuotesParams::getLaTeXQuote(char_type c, string const & op,
        case 0x2019: {// '
                if (op == "int")
                        // This macro is redefined in rtl mode
-                       res = rtl ? "\\textquoteright" : "\\textquoteleft";
+                       res = rtl ? "\\textquoteleft" : "\\textquoteright";
                else
                        res = "'";
                break;
@@ -358,7 +358,7 @@ docstring InsetQuotesParams::getLaTeXQuote(char_type c, string const & op,
        case 0x2018: {// `
                if (op == "int")
                        // This macro is redefined in rtl mode
-                       res = rtl ? "\\textquoteleft" : "\\textquoteright";
+                       res = rtl ? "\\textquoteright" : "\\textquoteleft";
                else
                        res = "`";
                break;
@@ -393,7 +393,7 @@ docstring InsetQuotesParams::getLaTeXQuote(char_type c, string const & op,
        case 0x201d: {// ''
                if (op == "int")
                        // This macro is redefined in rtl mode
-                       res = rtl ? "\\textquotedblright" : "\\textquotedblleft";
+                       res = rtl ? "\\textquotedblleft" : "\\textquotedblright";
                else
                        res = "''";
                break;
@@ -401,7 +401,7 @@ docstring InsetQuotesParams::getLaTeXQuote(char_type c, string const & op,
        case 0x201c: {// ``
                if (op == "int")
                        // This macro is redefined in rtl mode
-                       res = rtl ? "\\textquotedblleft" : "\\textquotedblright";
+                       res = rtl ? "\\textquotedblright" : "\\textquotedblleft";
                else
                        res = "``";
                break;
@@ -430,7 +430,7 @@ docstring InsetQuotesParams::getLaTeXQuote(char_type c, string const & op,
        }
        // The following are fakes
        // This is just to get something symbolic
-       // in encodings where this chars would not be used ayway
+       // in encodings where this chars would not be used anyway
        case 0x300c: // LEFT CORNER BRACKET
                res = "\\ensuremath{\\lceil}";
                break;
@@ -536,6 +536,79 @@ docstring InsetQuotesParams::getHTMLQuote(char_type c) const
 }
 
 
+docstring InsetQuotesParams::getXMLQuote(char_type c) const
+{
+       string res;
+
+       switch (c){
+               case 0x201a: // ,
+                       res = "‚";
+                       break;
+               case 0x2019: // '
+                       res = "’";
+                       break;
+               case 0x2018: // `
+                       res = "‘";
+                       break;
+               case 0x2039: // <
+                       res = "&#8249;";
+                       break;
+               case 0x203a: // >
+                       res = "&#8250;";
+                       break;
+               case 0x0027: // ' (plain)
+                       res = "&#x27;";
+                       break;
+               case 0x201e: // ,,
+                       res = "&#8222;";
+                       break;
+               case 0x201d: // ''
+                       res = "&#8221;";
+                       break;
+               case 0x201c: // ``
+                       res = "&#8220;";
+                       break;
+               case 0x00ab: // <<
+                       res = "&#171;";
+                       break;
+               case 0x00bb: // >>
+                       res = "&#187;";
+                       break;
+               case 0x0022: // "
+                       res = "&#34;";
+                       break;
+               case 0x300c: // LEFT CORNER BRACKET
+                       res = "&#x300c;";
+                       break;
+               case 0x300d: // RIGHT CORNER BRACKET
+                       res = "&#x300d;";
+                       break;
+               case 0x300e: // LEFT WHITE CORNER BRACKET
+                       res = "&#x300e;";
+                       break;
+               case 0x300f: // RIGHT WHITE CORNER BRACKET
+                       res = "&#x300f;";
+                       break;
+               case 0x300a: // LEFT DOUBLE ANGLE BRACKET
+                       res = "&#x300a;";
+                       break;
+               case 0x300b: // RIGHT DOUBLE ANGLE BRACKET
+                       res = "&#x300b;";
+                       break;
+               case 0x3008: // LEFT ANGLE BRACKET
+                       res = "&#x3008;";
+                       break;
+               case 0x3009: // RIGHT ANGLE BRACKET
+                       res = "&#x3009;";
+                       break;
+               default:
+                       break;
+       }
+
+       return from_ascii(res);
+}
+
+
 map<string, docstring> InsetQuotesParams::getTypes() const
 {
        map<string, docstring> res;
@@ -880,6 +953,10 @@ void InsetQuotes::latex(otexstream & os, OutputParams const & runparams) const
                        qstr = from_ascii("\\og");
                else
                        qstr = from_ascii("\\fg");
+       } else if (runparams.use_hyperref && runparams.moving_arg) {
+               // Use internal commands in headings with hyperref
+               // (ligatures not featured in PDF strings)
+               qstr = quoteparams.getLaTeXQuote(quotechar, "int", rtl_);
        } else if (fontenc_ == "T1"
                   && !runparams.local_font->language()->internalFontEncoding()) {
                // Quotation marks for T1 font encoding
@@ -942,10 +1019,11 @@ int InsetQuotes::plaintext(odocstringstream & os,
 }
 
 
-docstring InsetQuotes::getQuoteEntity() const {
+docstring InsetQuotes::getQuoteEntity(bool isHTML) const {
        InsetQuotesParams::QuoteStyle style =
                        (style_ == InsetQuotesParams::DynamicQuotes) ? global_style_ : style_;
-       docstring res = quoteparams.getHTMLQuote(quoteparams.getQuoteChar(style, level_, side_));
+       docstring res = isHTML ? quoteparams.getHTMLQuote(quoteparams.getQuoteChar(style, level_, side_)) :
+                                       quoteparams.getXMLQuote(quoteparams.getQuoteChar(style, level_, side_));
        // in French, thin spaces are added inside double guillemets
        if (prefixIs(context_lang_, "fr")
            && level_ == InsetQuotesParams::PrimaryQuotes
@@ -963,16 +1041,15 @@ docstring InsetQuotes::getQuoteEntity() const {
 }
 
 
-int InsetQuotes::docbook(odocstream & os, OutputParams const &) const
+void InsetQuotes::docbook(XMLStream & xs, OutputParams const &) const
 {
-       os << getQuoteEntity();
-       return 0;
+       xs << XMLStream::ESCAPE_NONE << getQuoteEntity(false);
 }
 
 
-docstring InsetQuotes::xhtml(XHTMLStream & xs, OutputParams const &) const
+docstring InsetQuotes::xhtml(XMLStream & xs, OutputParams const &) const
 {
-       xs << XHTMLStream::ESCAPE_NONE << getQuoteEntity();
+       xs << XMLStream::ESCAPE_NONE << getQuoteEntity(true);
        return docstring();
 }
 
@@ -989,7 +1066,7 @@ void InsetQuotes::forOutliner(docstring & os, size_t const, bool const) const
 }
 
 
-void InsetQuotes::updateBuffer(ParIterator const & it, UpdateType /* utype*/)
+void InsetQuotes::updateBuffer(ParIterator const & it, UpdateType /* utype*/, bool const /*deleted*/)
 {
        BufferParams const & bp = buffer().masterBuffer()->params();
        Font const & font = it.paragraph().getFontSettings(bp, it.pos());