summaryrefslogtreecommitdiffstats
path: root/qtinterface/tqpaintdevice.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qtinterface/tqpaintdevice.cpp')
-rw-r--r--qtinterface/tqpaintdevice.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/qtinterface/tqpaintdevice.cpp b/qtinterface/tqpaintdevice.cpp
index a436181..dd11fbf 100644
--- a/qtinterface/tqpaintdevice.cpp
+++ b/qtinterface/tqpaintdevice.cpp
@@ -21,3 +21,23 @@ Boston, MA 02110-1301, USA.
#include <tqt.h>
#include <tqpaintdevice.h>
+
+#ifdef USE_QT4
+
+/*!
+ Returns the window system handle of the paint device for XRender
+ support. Use of this function is not portable. This function will
+ return 0 if XRender support is not compiled into Qt, if the
+ XRender extension is not supported on the X11 display, or if the
+ handle could not be created.
+*/
+Qt::HANDLE QPaintDevice::x11RenderHandle() const
+{
+// #ifndef QT_NO_XFTFREETYPE
+// return rendhd ? XftDrawPicture( (XftDraw *) rendhd ) : 0;
+// #else
+ return 0;
+// #endif // QT_NO_XFTFREETYPE
+}
+
+#endif // USE_QT4 \ No newline at end of file