]> git.lyx.org Git - lyx.git/blobdiff - src/lyxfont.C
changelogs
[lyx.git] / src / lyxfont.C
index fc79dc34d085a0d281e5b80fa9b243603237bda9..2ffce829c8ea4c1039ad2fec9badbef58beb7f56 100644 (file)
@@ -26,7 +26,7 @@
 
 #include "support/lstrings.h"
 
-#include "support/std_sstream.h"
+#include <sstream>
 
 using lyx::support::ascii_lowercase;
 using lyx::support::bformat;
@@ -700,33 +700,33 @@ void LyXFont::lyxWriteChanges(LyXFont const & orgfont,
 {
        os << "\n";
        if (orgfont.family() != family()) {
-               os << "\\family " << LyXFamilyNames[family()] << " \n";
+               os << "\\family " << LyXFamilyNames[family()] << "\n";
        }
        if (orgfont.series() != series()) {
-               os << "\\series " << LyXSeriesNames[series()] << " \n";
+               os << "\\series " << LyXSeriesNames[series()] << "\n";
        }
        if (orgfont.shape() != shape()) {
-               os << "\\shape " << LyXShapeNames[shape()] << " \n";
+               os << "\\shape " << LyXShapeNames[shape()] << "\n";
        }
        if (orgfont.size() != size()) {
-               os << "\\size " << LyXSizeNames[size()] << " \n";
+               os << "\\size " << LyXSizeNames[size()] << "\n";
        }
        if (orgfont.emph() != emph()) {
-               os << "\\emph " << LyXMiscNames[emph()] << " \n";
+               os << "\\emph " << LyXMiscNames[emph()] << "\n";
        }
        if (orgfont.number() != number()) {
-               os << "\\numeric " << LyXMiscNames[number()] << " \n";
+               os << "\\numeric " << LyXMiscNames[number()] << "\n";
        }
        if (orgfont.underbar() != underbar()) {
                // This is only for backwards compatibility
                switch (underbar()) {
-               case OFF:       os << "\\bar no \n"; break;
-               case ON:        os << "\\bar under \n"; break;
+               case OFF:       os << "\\bar no\n"; break;
+               case ON:        os << "\\bar under\n"; break;
                case TOGGLE:    lyxerr << "LyXFont::lyxWriteFontChanges: "
                                        "TOGGLE should not appear here!"
                                       << endl;
                break;
-               case INHERIT:   os << "\\bar default \n"; break;
+               case INHERIT:   os << "\\bar default\n"; break;
                case IGNORE:    lyxerr << "LyXFont::lyxWriteFontChanges: "
                                        "IGNORE should not appear here!"
                                       << endl;
@@ -734,7 +734,7 @@ void LyXFont::lyxWriteChanges(LyXFont const & orgfont,
                }
        }
        if (orgfont.noun() != noun()) {
-               os << "\\noun " << LyXMiscNames[noun()] << " \n";
+               os << "\\noun " << LyXMiscNames[noun()] << "\n";
        }
        if (orgfont.color() != color()) {
                // To make us file compatible with older
@@ -946,7 +946,23 @@ LyXFont::FONT_SHAPE LyXFont::realShape() const
 }
 
 
-ostream & operator<<(ostream & o, LyXFont::FONT_MISC_STATE fms)
+ostream & operator<<(ostream & os, LyXFont::FONT_MISC_STATE fms)
 {
-       return o << int(fms);
+       return os << int(fms);
+}
+
+
+std::ostream & operator<<(std::ostream & os, LyXFont const & font)
+{
+       return os << "font:"
+               << " family " << font.bits.family
+               << " series " << font.bits.series
+               << " shape " << font.bits.shape
+               << " size " << font.bits.size
+               << " color " << font.bits.color
+               << " emph " << font.bits.emph
+               << " underbar " << font.bits.underbar
+               << " noun " << font.bits.noun
+               << " number " << font.bits.number
+               << " lang: " << (font.lang ? font.lang->lang() : 0);
 }