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 /kcontrol/keys/shortcuts.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 'kcontrol/keys/shortcuts.h')
-rw-r--r-- | kcontrol/keys/shortcuts.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kcontrol/keys/shortcuts.h b/kcontrol/keys/shortcuts.h index e51d8cb7a..d45034c9d 100644 --- a/kcontrol/keys/shortcuts.h +++ b/kcontrol/keys/shortcuts.h @@ -24,11 +24,11 @@ #ifndef __SHORTCUTS_MODULE_H #define __SHORTCUTS_MODULE_H -#include <qbuttongroup.h> -#include <qcheckbox.h> -#include <qpushbutton.h> -#include <qradiobutton.h> -#include <qtabwidget.h> +#include <tqbuttongroup.h> +#include <tqcheckbox.h> +#include <tqpushbutton.h> +#include <tqradiobutton.h> +#include <tqtabwidget.h> #include "kaccelaction.h" #include <kcombobox.h> #include <kkeydialog.h> @@ -37,13 +37,13 @@ class ShortcutsModule : public QWidget { Q_OBJECT public: - ShortcutsModule( QWidget *parent = 0, const char *name = 0 ); + ShortcutsModule( TQWidget *parent = 0, const char *name = 0 ); ~ShortcutsModule(); void load(); void save(); void defaults(); - QString quickHelp() const; + TQString quickHelp() const; protected: void initGUI(); @@ -51,7 +51,7 @@ class ShortcutsModule : public QWidget void createActionsSequence(); void readSchemeNames(); void saveScheme(); - void resizeEvent(QResizeEvent *e); + void resizeEvent(TQResizeEvent *e); signals: void changed( bool ); @@ -65,16 +65,16 @@ class ShortcutsModule : public QWidget void slotUseRmWinKeysClicked(); private: - QTabWidget* m_pTab; - QRadioButton *m_prbPre, *m_prbNew; + TQTabWidget* m_pTab; + TQRadioButton *m_prbPre, *m_prbNew; KComboBox* m_pcbSchemes; - QPushButton* m_pbtnSave, * m_pbtnRemove; + TQPushButton* m_pbtnSave, * m_pbtnRemove; int m_nSysSchemes; - QStringList m_rgsSchemeFiles; + TQStringList m_rgsSchemeFiles; KAccelActions m_actionsGeneral, m_actionsSequence;//, m_actionsApplication; KShortcutList* m_pListGeneral, * m_pListSequence, * m_pListApplication; KKeyChooser* m_pkcGeneral, * m_pkcSequence, * m_pkcApplication; - QCheckBox* m_useRmWinKeys; + TQCheckBox* m_useRmWinKeys; bool m_bUseRmWinKeys; }; |