summaryrefslogtreecommitdiffstats
path: root/juk/keydialog.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:43:15 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:43:15 +0000
commite654398e46e37abf457b2b1122ab898d2c51c49f (patch)
treed39ee6440f3c3663c3ead84a2d4cc2d034667e96 /juk/keydialog.h
parente4f29b18e19394b9352f52a6c0d0d0e3932cf511 (diff)
downloadtdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.tar.gz
tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1157644 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'juk/keydialog.h')
-rw-r--r--juk/keydialog.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/juk/keydialog.h b/juk/keydialog.h
index 13d76d4f..13801ee1 100644
--- a/juk/keydialog.h
+++ b/juk/keydialog.h
@@ -20,8 +20,8 @@
#include <kglobalaccel.h>
#include <kkeydialog.h>
-#include <qhbuttongroup.h>
-#include <qwidgetstack.h>
+#include <tqhbuttongroup.h>
+#include <tqwidgetstack.h>
class KeyDialog : public KDialogBase
{
@@ -31,7 +31,7 @@ public:
/**
* Constructs a KeyDialog called @p name as a child of @p parent.
*/
- KeyDialog(KGlobalAccel *keys, KActionCollection *actionCollection, QWidget *parent = 0, const char* name = 0);
+ KeyDialog(KGlobalAccel *keys, KActionCollection *actionCollection, TQWidget *parent = 0, const char* name = 0);
/**
* Destructor. Deletes all resources used by a KeyDialog object.
@@ -43,14 +43,14 @@ public:
* accelerators and actions. It behaves essentially like the functions
* in KKeyDialog.
*/
- static int configure(KGlobalAccel *keys, KActionCollection *actionCollection, QWidget *parent = 0);
+ static int configure(KGlobalAccel *keys, KActionCollection *actionCollection, TQWidget *parent = 0);
/**
* This is a member function, provided to create a global accelerator with
* standard keys. It behaves like the function in KGlobalAccel.
*/
- static void insert(KGlobalAccel *keys, const QString &action, const QString &label,
- const QObject *objSlot, const char *methodSlot);
+ static void insert(KGlobalAccel *keys, const TQString &action, const TQString &label,
+ const TQObject *objSlot, const char *methodSlot);
private:
@@ -60,7 +60,7 @@ private:
enum KeyGroup { NoKeys = 0, StandardKeys = 1, MultimediaKeys = 2 };
struct KeyInfo {
- QString action;
+ TQString action;
KShortcut shortcut[3][2];
};
@@ -75,8 +75,8 @@ private:
KActionCollection *m_actionCollection;
KGlobalAccel *m_keys;
KKeyChooser *m_pKeyChooser;
- QHButtonGroup *m_group;
- QWidgetStack *m_widgetStack;
+ TQHButtonGroup *m_group;
+ TQWidgetStack *m_widgetStack;
static const KeyInfo keyInfo[];
static const uint keyInfoCount;