summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-03 20:48:17 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-03 20:48:17 +0000
commit60ea0acdd5f443edb36f9a127d13488d709ad337 (patch)
treeb8708fe478253843e06c107dd94939d00cc44bb5
parent9c3b65831abc4e956ca4cd9bceaf9dd3304dc4d0 (diff)
downloadtqtinterface-60ea0acd.tar.gz
tqtinterface-60ea0acd.zip
Add QT_X_USER_TIME macros
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/tqtinterface@1226980 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r--qtinterface/tqapplication.cpp23
-rw-r--r--qtinterface/tqt.h.cmake11
2 files changed, 31 insertions, 3 deletions
diff --git a/qtinterface/tqapplication.cpp b/qtinterface/tqapplication.cpp
index 7f381b6..eb3ada7 100644
--- a/qtinterface/tqapplication.cpp
+++ b/qtinterface/tqapplication.cpp
@@ -22,6 +22,27 @@ Boston, MA 02110-1301, USA.
#include <tqt.h>
#include <tqapplication.h>
+#ifdef USE_QT3
+extern Time qt_x_time;
+extern Time qt_x_user_time;
+
+void set_tqt_x_time(Time x) {
+ qt_x_time = x;
+}
+
+Time get_tqt_x_time(void) {
+ return qt_x_time;
+}
+
+void set_tqt_x_user_time(Time x) {
+ qt_x_user_time = x;
+}
+
+Time get_tqt_x_user_time(void) {
+ return qt_x_user_time;
+}
+#endif
+
#ifdef USE_QT4
// void QApplication::processOneEvent()
@@ -44,4 +65,4 @@ void QApplication::removeTranslator( QTranslator * mf )
#warning "!!! WARNING: QApplication::removeTranslator() UNIMPLEMENTED !!!"
}
-#endif // USE_QT4 \ No newline at end of file
+#endif // USE_QT4
diff --git a/qtinterface/tqt.h.cmake b/qtinterface/tqt.h.cmake
index e81c27c..7628444 100644
--- a/qtinterface/tqt.h.cmake
+++ b/qtinterface/tqt.h.cmake
@@ -1004,8 +1004,15 @@ Boston, MA 02110-1301, USA.
#define tqwhatsThisCursor Qt::whatsThisCursor
#define tqbusyCursor Qt::busyCursor
-#define SET_QTX_TIME(x) (qt_x_time = x)
-#define GET_QTX_TIME(x) qt_x_time
+extern void set_tqt_x_time(Time x);
+extern Time get_tqt_x_time(void);
+extern void set_tqt_x_user_time(Time x);
+extern Time get_tqt_x_user_time(void);
+
+#define SET_QT_X_TIME(x) set_tqt_x_time(x)
+#define GET_QT_X_TIME(x) get_tqt_x_time()
+#define SET_QT_X_USER_TIME(x) set_tqt_x_time(x)
+#define GET_QT_X_USER_TIME(x) get_tqt_x_time()
#endif // USE_QT3