diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-01 03:43:07 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-01 03:43:07 +0000 |
commit | 70b9eea2ba01c3691497f49e4c45cb070c16193c (patch) | |
tree | 9a6df61aa247a27275aad9c5245e419e89c2c640 /kradio3/plugins/gui-standard-display/displaycfg_interfaces.h | |
parent | 998c1384ace4ae4655997c181fa33242148cd0a4 (diff) | |
download | tderadio-70b9eea2ba01c3691497f49e4c45cb070c16193c.tar.gz tderadio-70b9eea2ba01c3691497f49e4c45cb070c16193c.zip |
TQt4 port kradio
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kradio@1238952 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kradio3/plugins/gui-standard-display/displaycfg_interfaces.h')
-rw-r--r-- | kradio3/plugins/gui-standard-display/displaycfg_interfaces.h | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/kradio3/plugins/gui-standard-display/displaycfg_interfaces.h b/kradio3/plugins/gui-standard-display/displaycfg_interfaces.h index ac2ef5d..49514d5 100644 --- a/kradio3/plugins/gui-standard-display/displaycfg_interfaces.h +++ b/kradio3/plugins/gui-standard-display/displaycfg_interfaces.h @@ -24,8 +24,8 @@ #include "../../src/include/interfaces.h" -#include <qfont.h> -#include <qcolor.h> +#include <tqfont.h> +#include <tqcolor.h> /////////////////////////////////////////////////////////////////////// @@ -36,18 +36,18 @@ public : IF_CON_DESTRUCTOR(IDisplayCfg, -1) RECEIVERS: - IF_RECEIVER( setDisplayColors(const QColor &activeColor, const QColor &inactiveColor, const QColor &bkgnd) ) - IF_RECEIVER( setDisplayFont (const QFont &f) ) + IF_RECEIVER( setDisplayColors(const TQColor &activeColor, const TQColor &inactiveColor, const TQColor &bkgnd) ) + IF_RECEIVER( setDisplayFont (const TQFont &f) ) SENDERS: - IF_SENDER ( notifyDisplayColorsChanged(const QColor &activeColor, const QColor &inactiveColor, const QColor &bkgnd) ) - IF_SENDER ( notifyDisplayFontChanged(const QFont &f) ) + IF_SENDER ( notifyDisplayColorsChanged(const TQColor &activeColor, const TQColor &inactiveColor, const TQColor &bkgnd) ) + IF_SENDER ( notifyDisplayFontChanged(const TQFont &f) ) ANSWERS: - IF_ANSWER ( const QColor &getDisplayActiveColor() const ) - IF_ANSWER ( const QColor &getDisplayInactiveColor() const ) - IF_ANSWER ( const QColor &getDisplayBkgndColor() const ) - IF_ANSWER ( const QFont &getDisplayFont() const ) + IF_ANSWER ( const TQColor &getDisplayActiveColor() const ) + IF_ANSWER ( const TQColor &getDisplayInactiveColor() const ) + IF_ANSWER ( const TQColor &getDisplayBkgndColor() const ) + IF_ANSWER ( const TQFont &getDisplayFont() const ) }; @@ -60,18 +60,18 @@ public : IF_CON_DESTRUCTOR(IDisplayCfgClient, 1) SENDERS: - IF_SENDER ( sendDisplayColors(const QColor &activeColor, const QColor &inactiveColor, const QColor &bkgnd) ) - IF_SENDER ( sendDisplayFont (const QFont &f) ) + IF_SENDER ( sendDisplayColors(const TQColor &activeColor, const TQColor &inactiveColor, const TQColor &bkgnd) ) + IF_SENDER ( sendDisplayFont (const TQFont &f) ) RECEIVERS: - IF_RECEIVER( noticeDisplayColorsChanged(const QColor &activeColor, const QColor &inactiveColor, const QColor &bkgnd) ) - IF_RECEIVER( noticeDisplayFontChanged(const QFont &f) ) - -QUERIES: - IF_QUERY ( const QColor &queryDisplayActiveColor() ) - IF_QUERY ( const QColor &queryDisplayInactiveColor() ) - IF_QUERY ( const QColor &queryDisplayBkgndColor() ) - IF_QUERY ( const QFont &queryDisplayFont() ) + IF_RECEIVER( noticeDisplayColorsChanged(const TQColor &activeColor, const TQColor &inactiveColor, const TQColor &bkgnd) ) + IF_RECEIVER( noticeDisplayFontChanged(const TQFont &f) ) + +TQUERIES: + IF_TQUERY ( const TQColor &queryDisplayActiveColor() ) + IF_TQUERY ( const TQColor &queryDisplayInactiveColor() ) + IF_TQUERY ( const TQColor &queryDisplayBkgndColor() ) + IF_TQUERY ( const TQFont &queryDisplayFont() ) RECEIVERS: virtual void noticeConnectedI (cmplInterface *, bool pointer_valid); |