]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetspecialchar.C
fix typo that put too many include paths for most people
[lyx.git] / src / insets / insetspecialchar.C
index eacb1d4c4f9a6301b2307044359b82a5f713e52f..b75d573b3700ced7100e567015602675370dd7d5 100644 (file)
@@ -1,8 +1,8 @@
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
- *      
+ *
  *         Copyright 1997 Asger Alstrup
  *
  * ====================================================== */
@@ -20,6 +20,7 @@
 #include "Painter.h"
 #include "font.h"
 #include "lyxlex.h"
+#include "lyxfont.h"
 
 using std::ostream;
 using std::max;
@@ -52,7 +53,7 @@ int InsetSpecialChar::width(BufferView *, LyXFont const & font) const
        case HYPHENATION:
        {
                int w = lyxfont::width('-', font);
-               if (w > 5) 
+               if (w > 5)
                        w -= 2; // to make it look shorter
                return w;
        }
@@ -76,7 +77,7 @@ int InsetSpecialChar::width(BufferView *, LyXFont const & font) const
        {
                return lyxfont::width('x', font);
        }
-       
+
        }
        return 1; // To shut up gcc
 }
@@ -124,12 +125,12 @@ void InsetSpecialChar::draw(BufferView * bv, LyXFont const & f,
                int ox = lyxfont::width(' ', font) + int(x);
                int h = lyxfont::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;
@@ -139,7 +140,7 @@ void InsetSpecialChar::draw(BufferView * bv, LyXFont const & f,
                float w = width(bv, font);
                int h = lyxfont::ascent('x', font);
                int xp[4], yp[4];
-               
+
                xp[0] = int(x);
                yp[0] = baseline - max(h / 4, 1);
 
@@ -151,7 +152,7 @@ void InsetSpecialChar::draw(BufferView * bv, LyXFont const & f,
 
                xp[3] = int(x + w);
                yp[3] = baseline - max(h / 4, 1);
-               
+
                pain.lines(xp, yp, 4, LColor::special);
                x += w;
                break;
@@ -165,20 +166,20 @@ void InsetSpecialChar::write(Buffer const *, ostream & os) const
 {
        string command;
        switch (kind_) {
-       case HYPHENATION:       
-               command = "\\-";        
+       case HYPHENATION:
+               command = "\\-";
                break;
-       case LIGATURE_BREAK: 
-               command = "\\textcompwordmark{}"; 
+       case LIGATURE_BREAK:
+               command = "\\textcompwordmark{}";
                break;
-       case END_OF_SENTENCE:   
+       case END_OF_SENTENCE:
                command = "\\@.";
                break;
        case LDOTS:
-               command = "\\ldots{}";  
+               command = "\\ldots{}";
                break;
        case MENU_SEPARATOR:
-               command = "\\menuseparator"; 
+               command = "\\menuseparator";
                break;
        case PROTECTED_SEPARATOR:
                //command = "\\protected_separator";
@@ -191,7 +192,7 @@ void InsetSpecialChar::write(Buffer const *, ostream & os) const
 
 // This function will not be necessary when lyx3
 void InsetSpecialChar::read(Buffer const *, LyXLex & lex)
-{    
+{
        lex.nextToken();
        string const command = lex.getString();
 
@@ -204,7 +205,7 @@ void InsetSpecialChar::read(Buffer const *, LyXLex & lex)
        else if (command == "\\ldots{}")
                kind_ = LDOTS;
        else if (command == "\\menuseparator")
-               kind_ = MENU_SEPARATOR;
+               kind_ = MENU_SEPARATOR;
        else if (command == "\\protected_separator"
                 || command == "~")
                kind_ = PROTECTED_SEPARATOR;
@@ -217,23 +218,23 @@ int InsetSpecialChar::latex(Buffer const *, ostream & os, bool /*fragile*/,
                            bool free_space) const
 {
        switch (kind_) {
-       case HYPHENATION:         
-               os << "\\-";    
+       case HYPHENATION:
+               os << "\\-";
                break;
        case LIGATURE_BREAK:
                os << "\\textcompwordmark{}";
                break;
-       case END_OF_SENTENCE:     
-               os << "\\@.";   
+       case END_OF_SENTENCE:
+               os << "\\@.";
                break;
-       case LDOTS:               
-               os << "\\ldots{}";      
+       case LDOTS:
+               os << "\\ldots{}";
                break;
-       case MENU_SEPARATOR:      
-               os << "\\lyxarrow{}"; 
+       case MENU_SEPARATOR:
+               os << "\\lyxarrow{}";
                break;
-       case PROTECTED_SEPARATOR: 
-               os << (free_space ? " " : "~"); 
+       case PROTECTED_SEPARATOR:
+               os << (free_space ? " " : "~");
                break;
        }
        return 0;
@@ -246,16 +247,16 @@ int InsetSpecialChar::ascii(Buffer const *, ostream & os, int) const
        case HYPHENATION:
        case LIGATURE_BREAK:
                break;
-       case END_OF_SENTENCE:     
-               os << ".";      
+       case END_OF_SENTENCE:
+               os << ".";
                break;
-       case LDOTS:               
-               os << "...";    
+       case LDOTS:
+               os << "...";
                break;
-       case MENU_SEPARATOR:      
-               os << "->";   
+       case MENU_SEPARATOR:
+               os << "->";
                break;
-       case PROTECTED_SEPARATOR: 
+       case PROTECTED_SEPARATOR:
                os << " ";
                break;
        }
@@ -263,15 +264,49 @@ int InsetSpecialChar::ascii(Buffer const *, ostream & os, int) const
 }
 
 
-int InsetSpecialChar::linuxdoc(Buffer const * buf, ostream & os) const
+int InsetSpecialChar::linuxdoc(Buffer const *, ostream & os) const
 {
-       return ascii(buf, os, 0);
+       switch (kind_) {
+       case HYPHENATION:
+       case LIGATURE_BREAK:
+               break;
+       case END_OF_SENTENCE:
+               os << ".";
+               break;
+       case LDOTS:
+               os << "...";
+               break;
+       case MENU_SEPARATOR:
+               os << "&lyxarrow;";
+               break;
+       case PROTECTED_SEPARATOR:
+               os << "&nbsp;";
+               break;
+       }
+       return 0;
 }
 
 
-int InsetSpecialChar::docBook(Buffer const * buf, ostream & os) const
+int InsetSpecialChar::docbook(Buffer const *, ostream & os) const
 {
-       return ascii(buf, os, 0);
+       switch (kind_) {
+       case HYPHENATION:
+       case LIGATURE_BREAK:
+               break;
+       case END_OF_SENTENCE:
+               os << ".";
+               break;
+       case LDOTS:
+               os << "...";
+               break;
+       case MENU_SEPARATOR:
+               os << "&lyxarrow;";
+               break;
+       case PROTECTED_SEPARATOR:
+               os << "&nbsp;";
+               break;
+       }
+       return 0;
 }
 
 
@@ -284,6 +319,38 @@ Inset * InsetSpecialChar::clone(Buffer const &, bool) const
 void InsetSpecialChar::validate(LaTeXFeatures & features) const
 {
        if (kind_ == MENU_SEPARATOR) {
-               features.lyxarrow = true;
+               features.require("lyxarrow");
        }
 }
+
+
+bool InsetSpecialChar::isChar() const
+{
+       return true;
+}
+
+
+bool InsetSpecialChar::isLetter() const
+{
+       return kind_ == HYPHENATION || kind_ == LIGATURE_BREAK;
+}
+
+
+bool InsetSpecialChar::isSpace() const
+{
+       return kind_ == PROTECTED_SEPARATOR;
+}
+
+
+bool InsetSpecialChar::isLineSeparator() const
+{
+#if 0
+       // this would be nice, but it does not work, since
+       // Paragraph::stripLeadingSpaces nukes the characters which
+       // have this property. I leave the code here, since it should
+       // eventually be made to work. (JMarc 20020327)
+       return kind_ == HYPHENATION || kind_ == MENU_SEPARATOR;
+#else
+       return false;
+#endif
+}