]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetquotes.C
The speed patch: redraw only rows that have changed
[lyx.git] / src / insets / insetquotes.C
index b8e1af439e98daef3189c7f6f7a99cd9d3b38cec..7a85306c6d5cff8ca1ce9eb9603e94fcfd3b5630 100644 (file)
@@ -5,7 +5,7 @@
  *
  * \author Jean-Marc Lasgouttes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 #include "insetquotes.h"
 
 #include "buffer.h"
-#include "BufferView.h"
+#include "bufferparams.h"
 #include "debug.h"
-#include "dimension.h"
 #include "language.h"
 #include "LaTeXFeatures.h"
-#include "latexrunparams.h"
-#include "lyxfont.h"
 #include "lyxlex.h"
 #include "lyxrc.h"
-#include "paragraph.h"
 #include "metricsinfo.h"
+#include "outputparams.h"
+#include "paragraph.h"
+#include "paragraph_funcs.h"
+
 #include "frontends/font_metrics.h"
 #include "frontends/Painter.h"
-#include "support/LAssert.h"
+
 #include "support/lstrings.h"
 
-using namespace lyx::support;
 
-using std::ostream;
+using lyx::support::prefixIs;
+
 using std::endl;
+using std::string;
 using std::auto_ptr;
+using std::ostream;
+
 
 namespace {
 
-// codes used to read/write quotes to LyX files
+/* codes used to read/write quotes to LyX files
+ * e    ``english''
+ * s    ''spanish''
+ * g    ,,german``
+ * p    ,,polish''
+ * f    <<french>>
+ * a    >>danish<<
+ */
+
 char const * const language_char = "esgpfa";
 char const * const side_char = "lr" ;
 char const * const times_char = "sd";
@@ -82,13 +93,23 @@ InsetQuotes::InsetQuotes(quote_language l, quote_side s, quote_times t)
 
 InsetQuotes::InsetQuotes(char c, BufferParams const & params)
        : language_(params.quotes_language), times_(params.quotes_times)
+{
+       getPosition(c);
+}
+
+
+InsetQuotes::InsetQuotes(char c, quote_language l, quote_times t)
+       : language_(l), times_(t)
+{
+       getPosition(c);
+}
+
+
+void InsetQuotes::getPosition(char c)
 {
        // Decide whether left or right
        switch (c) {
-       case ' ': case '(':
-#warning eh ? I am lost here ...
-       //case Paragraph::META_HFILL:
-       // case Paragraph::META_NEWLINE:
+       case ' ': case '(': case '[':
                side_ = LeftQ;   // left quote
                break;
        default:
@@ -221,7 +242,7 @@ void InsetQuotes::draw(PainterInfo & pi, int x, int y) const
 }
 
 
-void InsetQuotes::write(Buffer const *, ostream & os) const
+void InsetQuotes::write(Buffer const &, ostream & os) const
 {
        string text;
        text += language_char[language_];
@@ -231,9 +252,9 @@ void InsetQuotes::write(Buffer const *, ostream & os) const
 }
 
 
-void InsetQuotes::read(Buffer const *, LyXLex & lex)
+void InsetQuotes::read(Buffer const &, LyXLex & lex)
 {
-       lex.nextToken();
+       lex.next();
        parseString(lex.getString());
        lex.next();
        if (lex.getString() != "\\end_inset") {
@@ -242,38 +263,18 @@ void InsetQuotes::read(Buffer const *, LyXLex & lex)
 }
 
 
-int InsetQuotes::latex(Buffer const * buf, ostream & os,
-                      LatexRunParams const & runparams) const
+int InsetQuotes::latex(Buffer const &, ostream & os,
+                      OutputParams const & runparams) const
 {
-       // How do we get the local language here??
-       lyx::pos_type curr_pos = parOwner()->getPositionOfInset(this);
-       Assert(curr_pos != -1);
-
-#warning FIXME. We _must_ find another way to get the language. (Lgb)
-#if 0
-       // This cannot be used. (Lgb)
-       string const curr_lang =
-               parOwner()->getFont(buf->params,
-                                   curr_pos).language()->babel();
-#else
-       // And this is not the way... (Lgb)
-       string const curr_lang = buf->params.language->lang();
-#endif
        const int quoteind = quote_index[side_][language_];
        string qstr;
 
        if (language_ == FrenchQ && times_ == DoubleQ
-           && curr_lang == "frenchb") {
+           && prefixIs(runparams.local_font->language()->code(), "fr")) {
                if (side_ == LeftQ)
                        qstr = "\\og "; //the spaces are important here
                else
                        qstr = " \\fg{}"; //and here
-       } else if (language_ == FrenchQ && times_ == DoubleQ
-                  && curr_lang == "french") {
-               if (side_ == LeftQ)
-                       qstr = "<< "; //the spaces are important here
-               else
-                       qstr = " >>"; //and here
        } else if (lyxrc.fontenc == "T1") {
                qstr = latex_quote_t1[times_][quoteind];
 #ifdef DO_USE_DEFAULT_LANGUAGE
@@ -295,21 +296,24 @@ int InsetQuotes::latex(Buffer const * buf, ostream & os,
 }
 
 
-int InsetQuotes::ascii(Buffer const *, ostream & os, int) const
+int InsetQuotes::plaintext(Buffer const &, ostream & os,
+                      OutputParams const &) const
 {
        os << '"';
        return 0;
 }
 
 
-int InsetQuotes::linuxdoc(Buffer const *, ostream & os) const
+int InsetQuotes::linuxdoc(Buffer const &, ostream & os,
+                         OutputParams const &) const
 {
        os << '"';
        return 0;
 }
 
 
-int InsetQuotes::docbook(Buffer const *, ostream & os, bool) const
+int InsetQuotes::docbook(Buffer const &, ostream & os,
+                        OutputParams const &) const
 {
        if (times_ == DoubleQ) {
                if (side_ == LeftQ)
@@ -326,6 +330,13 @@ int InsetQuotes::docbook(Buffer const *, ostream & os, bool) const
 }
 
 
+int InsetQuotes::textString(Buffer const & buf, ostream & os,
+                      OutputParams const & op) const
+{
+       return plaintext(buf, os, op);
+}
+
+
 void InsetQuotes::validate(LaTeXFeatures & features) const
 {
        bool const use_babel = features.useBabel();
@@ -355,13 +366,13 @@ void InsetQuotes::validate(LaTeXFeatures & features) const
 }
 
 
-auto_ptr<InsetBase> InsetQuotes::clone() const
+auto_ptr<InsetBase> InsetQuotes::doClone() const
 {
        return auto_ptr<InsetBase>(new InsetQuotes(language_, side_, times_));
 }
 
 
-Inset::Code InsetQuotes::lyxCode() const
+InsetBase::Code InsetQuotes::lyxCode() const
 {
-  return Inset::QUOTE_CODE;
+  return InsetBase::QUOTE_CODE;
 }