]> git.lyx.org Git - lyx.git/commitdiff
consmetics
authorAndré Pönitz <poenitz@gmx.net>
Sat, 15 Sep 2007 22:56:09 +0000 (22:56 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Sat, 15 Sep 2007 22:56:09 +0000 (22:56 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20300 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiApplication.h
src/frontends/qt4/GuiFontLoader.cpp
src/frontends/qt4/GuiFontLoader.h
src/frontends/qt4/GuiPainter.cpp

index 87b7391e38aaa0a7467eda9eeb9d3bda36a4d246..c2f2551bbe6a8df4964ea6f7f13ec8fe364b1fb9 100644 (file)
@@ -33,7 +33,6 @@ class BufferView;
 namespace frontend {
 
 class GuiWorkArea;
-class MenuTranslator;
 class SocketNotifier;
 
 /// The Qt main application class
@@ -111,12 +110,9 @@ private:
 public:
        bool x11EventFilter(XEvent * ev);
 #endif
-
        /// A translator suitable for the entries in the LyX menu.
        /// Only needed with Qt/Mac.
        void addMenuTranslator();
-       ///
-       MenuTranslator * menu_trans_;
 }; // GuiApplication
 
 extern GuiApplication * guiApp;
index d42cfba509412ec89d80a9fc1fbe902868fc7313..b7ede4c3ddffc0a14985e4df344599957ac9ac02 100644 (file)
@@ -39,10 +39,9 @@ using std::make_pair;
 
 using std::pair;
 using std::vector;
-using std::string;
 
 #if QT_VERSION >= 0x040200
-string const math_fonts[] = {"cmex10", "cmmi10", "cmr10", "cmsy10",
+QString const math_fonts[] = {"cmex10", "cmmi10", "cmr10", "cmsy10",
        "eufm10", "msam10", "msbm10", "wasy10", "esint10"};
 int const num_math_fonts = sizeof(math_fonts) / sizeof(*math_fonts);
 #endif
@@ -53,13 +52,13 @@ namespace frontend {
 
 namespace {
 
-struct symbol_font {
+struct SymbolFont {
        Font::FONT_FAMILY lyx_family;
-       string family;
-       string xlfd;
+       QString family;
+       QString xlfd;
 };
 
-symbol_font symbol_fonts[] = {
+SymbolFont symbol_fonts[] = {
        { Font::SYMBOL_FAMILY,
                "symbol",
                "-*-symbol-*-*-*-*-*-*-*-*-*-*-adobe-fontspecific" },
@@ -101,27 +100,27 @@ symbol_font symbol_fonts[] = {
                "-*-esint10-medium-*-*-*-*-*-*-*-*-*-*-*" }
 };
 
-size_t const nr_symbol_fonts = sizeof(symbol_fonts) / sizeof(symbol_font);
+size_t const nr_symbol_fonts = sizeof(symbol_fonts) / sizeof(SymbolFont);
 
 
-string getRawName(string const & family)
+QString getRawName(QString const & family)
 {
        for (size_t i = 0; i < nr_symbol_fonts; ++i)
                if (family == symbol_fonts[i].family)
                        return symbol_fonts[i].xlfd;
 
        LYXERR(Debug::FONT) << "BUG: family not found !" << endl;
-       return string();
+       return QString();
 }
 
 
-string const symbolFamily(Font::FONT_FAMILY family)
+QString const symbolFamily(Font::FONT_FAMILY family)
 {
        for (size_t i = 0; i < nr_symbol_fonts; ++i) {
                if (family == symbol_fonts[i].lyx_family)
                        return symbol_fonts[i].family;
        }
-       return string();
+       return QString();
 }
 
 
@@ -132,7 +131,7 @@ bool isSymbolFamily(Font::FONT_FAMILY family)
 }
 
 
-bool isChosenFont(QFont & font, string const & family)
+static bool isChosenFont(QFont & font, QString const & family)
 {
        // QFontInfo won't find a font that has only a few glyphs at unusual
        // positions, e.g. the original esint10 font.
@@ -142,7 +141,7 @@ bool isChosenFont(QFont & font, string const & family)
 
        LYXERR(Debug::FONT) << "got: " << fromqstr(fi.family()) << endl;
 
-       if (contains(fromqstr(fi.family()), family)) {
+       if (fi.family().contains(family)) {
                LYXERR(Debug::FONT) << " got it ";
                return true;
        }
@@ -151,24 +150,24 @@ bool isChosenFont(QFont & font, string const & family)
 }
 
 
-pair<QFont, bool> const getSymbolFont(string const & family)
+static pair<QFont, bool> const getSymbolFont(QString const & family)
 {
        LYXERR(Debug::FONT) << "Looking for font family "
-               << family << " ... ";
-       string upper = family;
-       upper[0] = toupper(family[0]);
+               << fromqstr(family) << " ... ";
+       QString upper = family;
+       upper[0] = family[0].toUpper();
 
        QFont font;
        font.setKerning(false);
-       font.setFamily(toqstr(family));
+       font.setFamily(family);
 
        if (isChosenFont(font, family)) {
                LYXERR(Debug::FONT) << "normal!" << endl;
                return make_pair<QFont, bool>(font, true);
        }
 
-       LYXERR(Debug::FONT) << "Trying " << upper << " ... ";
-       font.setFamily(toqstr(upper));
+       LYXERR(Debug::FONT) << "Trying " << fromqstr(upper) << " ... ";
+       font.setFamily(upper);
 
        if (isChosenFont(font, upper)) {
                LYXERR(Debug::FONT) << "upper!" << endl;
@@ -177,9 +176,9 @@ pair<QFont, bool> const getSymbolFont(string const & family)
 
        // A simple setFamily() fails on Qt 2
 
-       string const rawName = getRawName(family);
-       LYXERR(Debug::FONT) << "Trying " << rawName << " ... ";
-       font.setRawName(toqstr(rawName));
+       QString const rawName = getRawName(family);
+       LYXERR(Debug::FONT) << "Trying " << fromqstr(rawName) << " ... ";
+       font.setRawName(rawName);
 
        if (isChosenFont(font, family)) {
                LYXERR(Debug::FONT) << "raw version!" << endl;
@@ -196,15 +195,14 @@ pair<QFont, bool> const getSymbolFont(string const & family)
 GuiFontLoader::GuiFontLoader()
 {
 #if QT_VERSION >= 0x040200
-       string const fonts_dir =
-               addPath(package().system_support().absFilename(), "fonts");
+       QString const fonts_dir =
+               toqstr(addPath(package().system_support().absFilename(), "fonts"));
 
        for (int i = 0 ; i < num_math_fonts; ++i) {
-               string const font_file = lyx::support::os::external_path(
-                               addName(fonts_dir, math_fonts[i] + ".ttf"));
-               int fontID = QFontDatabase::addApplicationFont(toqstr(font_file));
+               QString const font_file = fonts_dir + '/' + math_fonts[i] + ".ttf";
+               int fontID = QFontDatabase::addApplicationFont(font_file);
 
-               LYXERR(Debug::FONT) << "Adding font " << font_file
+               LYXERR(Debug::FONT) << "Adding font " << fromqstr(font_file)
                                    << static_cast<const char *>
                                        (fontID < 0 ? " FAIL" : " OK")
                                    << endl;
@@ -235,27 +233,27 @@ void GuiFontLoader::update()
 /////////////////////////////////////////////////
 
 
-static QString makeFontName(string const & family, string const & foundry)
+static QString makeFontName(QString const & family, QString const & foundry)
 {
-       QString res = toqstr(family);
-       if (!foundry.empty())
-               res += " [" + toqstr(foundry) + ']';
+       QString res = family;
+       if (!foundry.isEmpty())
+               res += " [" + foundry + ']';
        return res;
 }
 
 
-QLFontInfo::QLFontInfo(Font const & f)
+GuiFontInfo::GuiFontInfo(Font const & f)
 {
        font.setKerning(false);
-       string const pat = symbolFamily(f.family());
-       if (!pat.empty()) {
+       QString const pat = symbolFamily(f.family());
+       if (!pat.isEmpty()) {
                bool tmp;
                boost::tie(font, tmp) = getSymbolFont(pat);
        } else {
                switch (f.family()) {
                case Font::ROMAN_FAMILY: {
-                       QString family = makeFontName(lyxrc.roman_font_name,
-                                                                                                                                                lyxrc.roman_font_foundry); 
+                       QString family = makeFontName(toqstr(lyxrc.roman_font_name),
+                                                                                                                                               toqstr(lyxrc.roman_font_foundry)); 
                        font.setFamily(family);
 #ifdef Q_WS_MACX
 #if QT_VERSION >= 0x040300
@@ -263,18 +261,18 @@ QLFontInfo::QLFontInfo(Font const & f)
                        // It is reported to Trolltech at 02/06/07 against 4.3 final.
                        // FIXME: Add an upper version limit as soon as the bug is fixed in Qt.
                        if (family == "Times" && !font.exactMatch())
-                               font.setFamily(QString::fromLatin1("Times New Roman"));
+                               font.setFamily("Times New Roman");
 #endif
 #endif
                        break;
                }
                case Font::SANS_FAMILY:
-                       font.setFamily(makeFontName(lyxrc.sans_font_name,
-                                                   lyxrc.sans_font_foundry));
+                       font.setFamily(makeFontName(toqstr(lyxrc.sans_font_name),
+                                                   toqstr(lyxrc.sans_font_foundry)));
                        break;
                case Font::TYPEWRITER_FAMILY:
-                       font.setFamily(makeFontName(lyxrc.typewriter_font_name,
-                                                   lyxrc.typewriter_font_foundry));
+                       font.setFamily(makeFontName(toqstr(lyxrc.typewriter_font_name),
+                                                   toqstr(lyxrc.typewriter_font_foundry)));
                        break;
                default:
                        break;
@@ -347,8 +345,8 @@ bool GuiFontLoader::available(Font const & f)
                return cache[family];
        cache_set[family] = true;
 
-       string const pat = symbolFamily(family);
-       if (pat.empty())
+       QString const pat = symbolFamily(family);
+       if (pat.isEmpty())
                // We don't care about non-symbol fonts
                return false;
 
index 5fc718fbbfa1f07dab6f8be7cf705bf5bfc4ec18..c85e8c6f8073d8a4190063f3a21ad56df19c73c3 100644 (file)
@@ -28,10 +28,10 @@ namespace frontend {
  * Qt font loader for LyX. Matches Fonts against
  * actual QFont instances, and also caches metrics.
  */
-class QLFontInfo
+class GuiFontInfo
 {
 public:
-       QLFontInfo(Font const & f);
+       GuiFontInfo(Font const & f);
 
        /// The font instance
        QFont font;
@@ -63,19 +63,19 @@ public:
 
 
        /// Get font info (font + metrics) for the given LyX font.
-       QLFontInfo & fontinfo(Font const & f) {
-               // fi is a reference to the pointer type (QLFontInfo *) in the
+       GuiFontInfo & fontinfo(Font const & f) {
+               // fi is a reference to the pointer type (GuiFontInfo *) in the
                // fontinfo_ table.
-               QLFontInfo * & fi =
+               GuiFontInfo * & fi =
                        fontinfo_[f.family()][f.series()][f.realShape()][f.size()];
                if (!fi)
-                       fi = new QLFontInfo(f);
+                       fi = new GuiFontInfo(f);
                return *fi;
        }
 
 private:
        /// BUTT ugly !
-       QLFontInfo * fontinfo_[Font::NUM_FAMILIES][2][4][10];
+       GuiFontInfo * fontinfo_[Font::NUM_FAMILIES][2][4][10];
 };
 
 
index b8a692602e347f40c7ecb2f897f1d57a1e99cf64..c59edddb0269452d26ba73978381594e3011b696 100644 (file)
@@ -268,7 +268,7 @@ int GuiPainter::text(int x, int y, docstring const & s,
                str = ' ' + str;
 #endif
 
-       QLFontInfo & fi = guiApp->guiFontLoader().fontinfo(f);
+       GuiFontInfo & fi = guiApp->guiFontLoader().fontinfo(f);
 
        int textwidth;