diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
commit | e654398e46e37abf457b2b1122ab898d2c51c49f (patch) | |
tree | d39ee6440f3c3663c3ead84a2d4cc2d034667e96 /noatun/library/pluginmodule.h | |
parent | e4f29b18e19394b9352f52a6c0d0d0e3932cf511 (diff) | |
download | tdemultimedia-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 'noatun/library/pluginmodule.h')
-rw-r--r-- | noatun/library/pluginmodule.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/noatun/library/pluginmodule.h b/noatun/library/pluginmodule.h index 75d3e04d..59ece235 100644 --- a/noatun/library/pluginmodule.h +++ b/noatun/library/pluginmodule.h @@ -25,15 +25,15 @@ #include "noatun/pluginloader.h" #include <klistview.h> -#include <qframe.h> -#include <qstringlist.h> +#include <tqframe.h> +#include <tqstringlist.h> class KTabCtl; class PluginListItem : public QCheckListItem { public: - PluginListItem(const bool _exclusive, bool _checked, const NoatunLibraryInfo &_info, QListView *_parent); + PluginListItem(const bool _exclusive, bool _checked, const NoatunLibraryInfo &_info, TQListView *_parent); const NoatunLibraryInfo &info() const { return mInfo; } // This will toggle the state without "emitting" the stateChange @@ -41,7 +41,7 @@ public: protected: virtual void stateChange(bool); - virtual void paintCell(QPainter *, const QColorGroup &, int, int, int); + virtual void paintCell(TQPainter *, const TQColorGroup &, int, int, int); private: NoatunLibraryInfo mInfo; bool silentStateChange; @@ -55,9 +55,9 @@ Q_OBJECT friend class PluginListItem; public: - PluginListView(QWidget *_parent = 0, const char *_name = 0); - PluginListView(unsigned _min, QWidget *_parent = 0, const char *_name = 0); - PluginListView(unsigned _min, unsigned _max, QWidget *_parent = 0, const char *_name = 0); + PluginListView(TQWidget *_parent = 0, const char *_name = 0); + PluginListView(unsigned _min, TQWidget *_parent = 0, const char *_name = 0); + PluginListView(unsigned _min, unsigned _max, TQWidget *_parent = 0, const char *_name = 0); virtual void clear(); @@ -76,12 +76,12 @@ class Plugins : public CModule { Q_OBJECT public: - Plugins(QObject *_parent = 0); + Plugins(TQObject *_parent = 0); virtual void save(); virtual void reopen(); protected: - virtual void showEvent(QShowEvent *); + virtual void showEvent(TQShowEvent *); private slots: void stateChange(PluginListItem *, bool); @@ -91,7 +91,7 @@ private: void removePlugin(const NoatunLibraryInfo &); PluginListItem *findItem(const NoatunLibraryInfo &) const; - QStringList mAdded, mDeleted; + TQStringList mAdded, mDeleted; PluginListView *interfaceList, *playlistList, *otherList, *visList; bool shown; |