]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetspecialchar.C
Enable the external inset to handle unknown templates gracefully.
[lyx.git] / src / insets / insetspecialchar.C
index 7dcbc23afce438745a765e2f59f92dfa57f579b6..e1da4d2e3760f58049226c5ebe6d18d6bf754306 100644 (file)
@@ -1,30 +1,33 @@
-/* This file is part of
- * ======================================================
+/**
+ * \file insetspecialchar.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Asger Alstrup Nielsen
+ * \author Jean-Marc Lasgouttes
+ * \author Lars Gullik Bjønnes
  *
- *         Copyright 1997 Asger Alstrup
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "insetspecialchar.h"
+
 #include "debug.h"
+#include "dimension.h"
 #include "LaTeXFeatures.h"
 #include "BufferView.h"
 #include "frontends/Painter.h"
 #include "frontends/font_metrics.h"
 #include "lyxlex.h"
 #include "lyxfont.h"
+#include "metricsinfo.h"
 
 using std::ostream;
 using std::max;
 
+
 InsetSpecialChar::InsetSpecialChar(Kind k)
        : kind_(k)
 {}
@@ -35,126 +38,70 @@ InsetSpecialChar::Kind InsetSpecialChar::kind() const
        return kind_;
 }
 
-int InsetSpecialChar::ascent(BufferView *, LyXFont const & font) const
-{
-       return font_metrics::maxAscent(font);
-}
-
 
-int InsetSpecialChar::descent(BufferView *, LyXFont const & font) const
+void InsetSpecialChar::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       return font_metrics::maxDescent(font);
-}
+       LyXFont & font = mi.base.font;
+       dim.asc = font_metrics::maxAscent(font);
+       dim.des = font_metrics::maxDescent(font);
 
-
-int InsetSpecialChar::width(BufferView *, LyXFont const & font) const
-{
+       string s;
        switch (kind_) {
-       case HYPHENATION:
-       {
-               int w = font_metrics::width('-', font);
-               if (w > 5)
-                       w -= 2; // to make it look shorter
-               return w;
-       }
-       case LIGATURE_BREAK:
-       {
-               return font_metrics::width('|', font);
+               case LIGATURE_BREAK:      s = "|";     break;
+               case END_OF_SENTENCE:     s = ".";     break;
+               case LDOTS:               s = ". . ."; break;
+               case MENU_SEPARATOR:      s = " x ";   break;
+               case HYPHENATION:      s = "-";   break;
        }
-       case END_OF_SENTENCE:
-       {
-               return font_metrics::width('.', font);
-       }
-       case LDOTS:
-       {
-               return font_metrics::width(". . .", font);
-       }
-       case MENU_SEPARATOR:
-       {
-               return font_metrics::width(" x ", font);
-       }
-       case PROTECTED_SEPARATOR:
-       {
-               return font_metrics::width('x', font);
-       }
-
-       }
-       return 1; // To shut up gcc
+       dim.wid = font_metrics::width(s, font);
+       if (kind_ == HYPHENATION && dim.wid > 5)
+               dim.wid -= 2; // to make it look shorter
 }
 
 
-void InsetSpecialChar::draw(BufferView * bv, LyXFont const & f,
-                           int baseline, float & x, bool) const
+void InsetSpecialChar::draw(PainterInfo & pi, int x, int y) const
 {
-       Painter & pain = bv->painter();
-       LyXFont font(f);
+       LyXFont font = pi.base.font;
 
        switch (kind_) {
        case HYPHENATION:
        {
                font.setColor(LColor::special);
-               pain.text(int(x), baseline, "-", font);
-               x += width(bv, font);
+               pi.pain.text(x, y, '-', font);
                break;
        }
        case LIGATURE_BREAK:
        {
                font.setColor(LColor::special);
-               pain.text(int(x), baseline, "|", font);
-               x += width(bv, font);
+               pi.pain.text(x, y, '|', font);
                break;
        }
        case END_OF_SENTENCE:
        {
                font.setColor(LColor::special);
-               pain.text(int(x), baseline, ".", font);
-               x += width(bv, font);
+               pi.pain.text(x, y, '.', font);
                break;
        }
        case LDOTS:
        {
                font.setColor(LColor::special);
-               pain.text(int(x), baseline, ". . .", font);
-               x += width(bv, font);
+               pi.pain.text(x, y, ". . .", font);
                break;
        }
        case MENU_SEPARATOR:
        {
                // A triangle the width and height of an 'x'
                int w = font_metrics::width('x', font);
-               int ox = font_metrics::width(' ', font) + int(x);
-               int h = font_metrics::ascent('x', font);
-               int xp[4], yp[4];
-
-               xp[0] = ox;     yp[0] = baseline;
-               xp[1] = ox;     yp[1] = baseline - h;
-               xp[2] = ox + w; yp[2] = baseline - h/2;
-               xp[3] = ox;     yp[3] = baseline;
-
-               pain.lines(xp, yp, 4, LColor::special);
-               x += width(bv, font);
-               break;
-       }
-       case PROTECTED_SEPARATOR:
-       {
-               float w = width(bv, font);
+               int ox = font_metrics::width(' ', font) + x;
                int h = font_metrics::ascent('x', font);
                int xp[4], yp[4];
 
-               xp[0] = int(x);
-               yp[0] = baseline - max(h / 4, 1);
-
-               xp[1] = int(x);
-               yp[1] = baseline;
+               xp[0] = ox;     yp[0] = y;
+               xp[1] = ox;     yp[1] = y - h;
+               xp[2] = ox + w; yp[2] = y - h/2;
+               xp[3] = ox;     yp[3] = y;
 
-               xp[2] = int(x + w);
-               yp[2] = baseline;
-
-               xp[3] = int(x + w);
-               yp[3] = baseline - max(h / 4, 1);
-
-               pain.lines(xp, yp, 4, LColor::special);
-               x += w;
+               pi.pain.lines(xp, yp, 4, LColor::special);
                break;
        }
        }
@@ -181,10 +128,6 @@ void InsetSpecialChar::write(Buffer const *, ostream & os) const
        case MENU_SEPARATOR:
                command = "\\menuseparator";
                break;
-       case PROTECTED_SEPARATOR:
-               //command = "\\protected_separator";
-               command = "~";
-               break;
        }
        os << "\\SpecialChar " << command << "\n";
 }
@@ -206,16 +149,13 @@ void InsetSpecialChar::read(Buffer const *, LyXLex & lex)
                kind_ = LDOTS;
        else if (command == "\\menuseparator")
                kind_ = MENU_SEPARATOR;
-       else if (command == "\\protected_separator"
-                || command == "~")
-               kind_ = PROTECTED_SEPARATOR;
        else
                lex.printError("InsetSpecialChar: Unknown kind: `$$Token'");
 }
 
 
-int InsetSpecialChar::latex(Buffer const *, ostream & os, bool /*fragile*/,
-                           bool free_space) const
+int InsetSpecialChar::latex(Buffer const *, ostream & os,
+                           LatexRunParams const &) const
 {
        switch (kind_) {
        case HYPHENATION:
@@ -233,9 +173,6 @@ int InsetSpecialChar::latex(Buffer const *, ostream & os, bool /*fragile*/,
        case MENU_SEPARATOR:
                os << "\\lyxarrow{}";
                break;
-       case PROTECTED_SEPARATOR:
-               os << (free_space ? " " : "~");
-               break;
        }
        return 0;
 }
@@ -248,7 +185,7 @@ int InsetSpecialChar::ascii(Buffer const *, ostream & os, int) const
        case LIGATURE_BREAK:
                break;
        case END_OF_SENTENCE:
-               os << ".";
+               os << '.';
                break;
        case LDOTS:
                os << "...";
@@ -256,9 +193,6 @@ int InsetSpecialChar::ascii(Buffer const *, ostream & os, int) const
        case MENU_SEPARATOR:
                os << "->";
                break;
-       case PROTECTED_SEPARATOR:
-               os << " ";
-               break;
        }
        return 0;
 }
@@ -271,7 +205,7 @@ int InsetSpecialChar::linuxdoc(Buffer const *, ostream & os) const
        case LIGATURE_BREAK:
                break;
        case END_OF_SENTENCE:
-               os << ".";
+               os << '.';
                break;
        case LDOTS:
                os << "...";
@@ -279,9 +213,6 @@ int InsetSpecialChar::linuxdoc(Buffer const *, ostream & os) const
        case MENU_SEPARATOR:
                os << "&lyxarrow;";
                break;
-       case PROTECTED_SEPARATOR:
-               os << "&nbsp;";
-               break;
        }
        return 0;
 }
@@ -294,7 +225,7 @@ int InsetSpecialChar::docbook(Buffer const *, ostream & os, bool) const
        case LIGATURE_BREAK:
                break;
        case END_OF_SENTENCE:
-               os << ".";
+               os << '.';
                break;
        case LDOTS:
                os << "...";
@@ -302,15 +233,12 @@ int InsetSpecialChar::docbook(Buffer const *, ostream & os, bool) const
        case MENU_SEPARATOR:
                os << "&lyxarrow;";
                break;
-       case PROTECTED_SEPARATOR:
-               os << "&nbsp;";
-               break;
        }
        return 0;
 }
 
 
-Inset * InsetSpecialChar::clone(Buffer const &, bool) const
+Inset * InsetSpecialChar::clone() const
 {
        return new InsetSpecialChar(kind_);
 }
@@ -338,7 +266,7 @@ bool InsetSpecialChar::isLetter() const
 
 bool InsetSpecialChar::isSpace() const
 {
-       return kind_ == PROTECTED_SEPARATOR;
+       return false;
 }