diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-10-19 19:05:08 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-10-19 19:05:08 +0000 |
commit | a9cfcd75daef74e494a2632af260f1f92b834b4a (patch) | |
tree | 389c56a24143b4c04985d9d74959843c7e7851d3 /tqt3integration/module/module.h | |
parent | 337f18fe5d032a59084a5d6516bcb0ff070128b6 (diff) | |
download | tdebase-a9cfcd75daef74e494a2632af260f1f92b834b4a.tar.gz tdebase-a9cfcd75daef74e494a2632af260f1f92b834b4a.zip |
TQt port tqt3integration
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1259732 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'tqt3integration/module/module.h')
-rw-r--r-- | tqt3integration/module/module.h | 34 |
1 files changed, 20 insertions, 14 deletions
diff --git a/tqt3integration/module/module.h b/tqt3integration/module/module.h index 80bc4a346..1156abd34 100644 --- a/tqt3integration/module/module.h +++ b/tqt3integration/module/module.h @@ -37,11 +37,12 @@ class Module : public KDEDModule { Q_OBJECT + TQ_OBJECT public: - Module( const QCString& obj ); + Module( const TQCString& obj ); // DCOP - virtual bool process(const QCString &fun, const QByteArray &data, - QCString &replyType, QByteArray &replyData); + virtual bool process(const TQCString &fun, const TQByteArray &data, + TQCString &replyType, TQByteArray &replyData); virtual QCStringList functions(); virtual QCStringList interfaces(); private slots: @@ -61,7 +62,7 @@ class Module MessageBox2 } type; }; - QMap< void*, JobData > jobs; + TQMap< void*, JobData > jobs; #include "module_functions.h" }; @@ -69,9 +70,10 @@ class KFileDialog : public ::KFileDialog { Q_OBJECT + TQ_OBJECT public: - KFileDialog(const QString& startDir, const QString& filter, - QWidget *parent, const char *name, bool modal) + KFileDialog(const TQString& startDir, const TQString& filter, + TQWidget *parent, const char *name, bool modal) : ::KFileDialog( startDir, filter, parent, name, modal ) {} signals: @@ -85,9 +87,10 @@ class KDirSelectDialog : public ::KDirSelectDialog { Q_OBJECT + TQ_OBJECT public: - KDirSelectDialog(const QString& startDir, bool localOnly, - QWidget *parent, const char *name, bool modal) + KDirSelectDialog(const TQString& startDir, bool localOnly, + TQWidget *parent, const char *name, bool modal) : ::KDirSelectDialog( startDir, localOnly, parent, name, modal ) {} signals: @@ -101,8 +104,9 @@ class KColorDialog : public ::KColorDialog { Q_OBJECT + TQ_OBJECT public: - KColorDialog( QWidget *parent, const char *name, bool modal ) + KColorDialog( TQWidget *parent, const char *name, bool modal ) : ::KColorDialog( parent, name, modal ) {} signals: @@ -115,10 +119,11 @@ class KFontDialog : public ::KFontDialog { Q_OBJECT + TQ_OBJECT public: - KFontDialog( QWidget *parent, const char *name, bool onlyFixed, bool modal, - const QStringList &fontlist = QStringList(), bool makeFrame = true, - bool diff = false, QButton::ToggleState *sizeIsRelativeState = 0L ) + KFontDialog( TQWidget *parent, const char *name, bool onlyFixed, bool modal, + const TQStringList &fontlist = TQStringList(), bool makeFrame = true, + bool diff = false, TQButton::ToggleState *sizeIsRelativeState = 0L ) : ::KFontDialog( parent, name, onlyFixed, modal, fontlist, makeFrame, diff, sizeIsRelativeState ) {} signals: @@ -131,10 +136,11 @@ class KDialogBase : public ::KDialogBase { Q_OBJECT + TQ_OBJECT public: - KDialogBase( const QString &caption, int buttonMask=Yes|No|Cancel, + KDialogBase( const TQString &caption, int buttonMask=Yes|No|Cancel, ButtonCode defaultButton=Yes, ButtonCode escapeButton=Cancel, - QWidget *parent=0, const char *name=0, + TQWidget *parent=0, const char *name=0, bool modal=true, bool separator=false, const KGuiItem &yes = KStdGuiItem::yes(), // i18n("&Yes") const KGuiItem &no = KStdGuiItem::no(), // i18n("&No"), |