diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kwin/kcmkwin/kwinoptions/mouse.h | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kwin/kcmkwin/kwinoptions/mouse.h')
-rw-r--r-- | kwin/kcmkwin/kwinoptions/mouse.h | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/kwin/kcmkwin/kwinoptions/mouse.h b/kwin/kcmkwin/kwinoptions/mouse.h index 24b2d4030..b28437511 100644 --- a/kwin/kcmkwin/kwinoptions/mouse.h +++ b/kwin/kcmkwin/kwinoptions/mouse.h @@ -24,10 +24,10 @@ class KConfig; -#include <qwidget.h> +#include <tqwidget.h> #include <kcmodule.h> -#include <qcombobox.h> -#include <qtooltip.h> +#include <tqcombobox.h> +#include <tqtooltip.h> class ToolTipComboBox: public QComboBox @@ -35,12 +35,12 @@ class ToolTipComboBox: public QComboBox Q_OBJECT public: - ToolTipComboBox(QWidget * owner, char const * const * toolTips_) - : QComboBox(owner) + ToolTipComboBox(TQWidget * owner, char const * const * toolTips_) + : TQComboBox(owner) , toolTips(toolTips_) {} public slots: - void changed() {QToolTip::add( this, i18n(toolTips[currentItem()]) );} + void changed() {TQToolTip::add( this, i18n(toolTips[currentItem()]) );} protected: char const * const * toolTips; @@ -54,7 +54,7 @@ class KTitleBarActionsConfig : public KCModule public: - KTitleBarActionsConfig( bool _standAlone, KConfig *_config, QWidget *parent=0, const char* name=0 ); + KTitleBarActionsConfig( bool _standAlone, KConfig *_config, TQWidget *parent=0, const char* name=0 ); ~KTitleBarActionsConfig( ); void load(); @@ -65,15 +65,15 @@ public slots: void changed() { emit KCModule::changed(true); } private: - QComboBox* coTiDbl; + TQComboBox* coTiDbl; - QComboBox* coTiAct1; - QComboBox* coTiAct2; - QComboBox* coTiAct3; - QComboBox* coTiAct4; - QComboBox* coTiInAct1; - QComboBox* coTiInAct2; - QComboBox* coTiInAct3; + TQComboBox* coTiAct1; + TQComboBox* coTiAct2; + TQComboBox* coTiAct3; + TQComboBox* coTiAct4; + TQComboBox* coTiInAct1; + TQComboBox* coTiInAct2; + TQComboBox* coTiInAct3; ToolTipComboBox * coMax[3]; @@ -86,7 +86,7 @@ private: const char* functionTiInAc(int); const char* functionMax(int); - void setComboText(QComboBox* combo, const char* text); + void setComboText(TQComboBox* combo, const char* text); const char* fixup( const char* s ); private slots: @@ -100,7 +100,7 @@ class KWindowActionsConfig : public KCModule public: - KWindowActionsConfig( bool _standAlone, KConfig *_config, QWidget *parent=0, const char* name=0 ); + KWindowActionsConfig( bool _standAlone, KConfig *_config, TQWidget *parent=0, const char* name=0 ); ~KWindowActionsConfig( ); void load(); @@ -111,15 +111,15 @@ public slots: void changed() { emit KCModule::changed(true); } private: - QComboBox* coWin1; - QComboBox* coWin2; - QComboBox* coWin3; + TQComboBox* coWin1; + TQComboBox* coWin2; + TQComboBox* coWin3; - QComboBox* coAllKey; - QComboBox* coAll1; - QComboBox* coAll2; - QComboBox* coAll3; - QComboBox* coAllW; + TQComboBox* coAllKey; + TQComboBox* coAll1; + TQComboBox* coAll2; + TQComboBox* coAll3; + TQComboBox* coAllW; KConfig *config; bool standAlone; @@ -129,7 +129,7 @@ private: const char* functionAll(int); const char* functionAllW(int); - void setComboText(QComboBox* combo, const char* text); + void setComboText(TQComboBox* combo, const char* text); const char* fixup( const char* s ); }; |