summaryrefslogtreecommitdiffstats
path: root/src/gui/editors/notation/SystemFontXft.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/editors/notation/SystemFontXft.cpp')
-rw-r--r--src/gui/editors/notation/SystemFontXft.cpp16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/gui/editors/notation/SystemFontXft.cpp b/src/gui/editors/notation/SystemFontXft.cpp
index ce42f61..6388167 100644
--- a/src/gui/editors/notation/SystemFontXft.cpp
+++ b/src/gui/editors/notation/SystemFontXft.cpp
@@ -22,6 +22,8 @@
COPYING included with this distribution for more information.
*/
+#include <tqevent.h>
+
#include "SystemFontXft.h"
#ifdef HAVE_XFT
@@ -71,17 +73,17 @@ SystemFontXft::renderChar(CharName charName, int glyph, int code,
if (glyph < 0 && code < 0) {
NOTATION_DEBUG << "SystemFontXft::renderChar: Have neither glyph nor code point for character " << charName.getName() << ", can't render" << endl;
- return QPixmap();
+ return TQPixmap();
}
if (code < 0 && strategy == OnlyCodes) {
NOTATION_DEBUG << "SystemFontXft::renderChar: strategy is OnlyCodes but no code point provided for character " << charName.getName() << " (glyph is " << glyph << ")" << endl;
- return QPixmap();
+ return TQPixmap();
}
if (glyph < 0 && strategy == OnlyGlyphs) {
NOTATION_DEBUG << "SystemFontXft::renderChar: strategy is OnlyGlyphs but no glyph index provided for character " << charName.getName() << " (code is " << code << ")" << endl;
- return QPixmap();
+ return TQPixmap();
}
XGlyphInfo extents;
@@ -100,7 +102,7 @@ SystemFontXft::renderChar(CharName charName, int glyph, int code,
NOTATION_DEBUG
<< "SystemFontXft::renderChar: zero extents for character "
<< charName.getName() << " (glyph " << glyph << ")" << endl;
- return QPixmap();
+ return TQPixmap();
}
} else {
FcChar32 char32(code);
@@ -109,11 +111,11 @@ SystemFontXft::renderChar(CharName charName, int glyph, int code,
NOTATION_DEBUG
<< "SystemFontXft::renderChar: zero extents for character "
<< charName.getName() << " (code " << code << ")" << endl;
- return QPixmap();
+ return TQPixmap();
}
}
- QPixmap map(extents.width, extents.height);
+ TQPixmap map(extents.width, extents.height);
map.fill();
Drawable drawable = (Drawable)map.handle();
@@ -127,7 +129,7 @@ SystemFontXft::renderChar(CharName charName, int glyph, int code,
(Visual *)map.x11Visual(),
map.x11Colormap());
- QColor pen(Qt::black);
+ TQColor pen(Qt::black);
XftColor col;
col.color.red = pen.red () | pen.red() << 8;
col.color.green = pen.green () | pen.green() << 8;