diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2013-03-02 15:57:34 -0600 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2013-03-02 15:57:34 -0600 |
commit | 7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f (patch) | |
tree | c76702a7f6310fbe9d437e347535422e836e94e9 /tdecore/kiconloader_p.h | |
parent | a2a38be7600e2a2c2b49c66902d912ca036a2c0f (diff) | |
parent | 27bbee9a5f9dcda53d8eb23863ee670ad1360e41 (diff) | |
download | tdelibs-7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f.tar.gz tdelibs-7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tdelibs
Diffstat (limited to 'tdecore/kiconloader_p.h')
-rw-r--r-- | tdecore/kiconloader_p.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/tdecore/kiconloader_p.h b/tdecore/kiconloader_p.h index 4a7695390..82ff9dbe8 100644 --- a/tdecore/kiconloader_p.h +++ b/tdecore/kiconloader_p.h @@ -9,8 +9,8 @@ * exact licensing terms. */ -#ifndef __KIconLoader_p_h_Included__ -#define __KIconLoader_p_h_Included__ +#ifndef __TDEIconLoader_p_h_Included__ +#define __TDEIconLoader_p_h_Included__ #include <tqobject.h> #include <tqstringlist.h> @@ -19,37 +19,37 @@ #include <kiconeffect.h> #include <tqdict.h> -class KIconThemeNode +class TDEIconThemeNode { public: - KIconThemeNode(KIconTheme *_theme); - ~KIconThemeNode(); + TDEIconThemeNode(TDEIconTheme *_theme); + ~TDEIconThemeNode(); - void queryIcons(TQStringList *lst, int size, KIcon::Context context) const; - void queryIconsByContext(TQStringList *lst, int size, KIcon::Context context) const; - KIcon findIcon(const TQString& name, int size, KIcon::MatchType match) const; + void queryIcons(TQStringList *lst, int size, TDEIcon::Context context) const; + void queryIconsByContext(TQStringList *lst, int size, TDEIcon::Context context) const; + TDEIcon findIcon(const TQString& name, int size, TDEIcon::MatchType match) const; void printTree(TQString& dbgString) const; - KIconTheme *theme; + TDEIconTheme *theme; }; -class KIconLoaderPrivate : public TQObject +class TDEIconLoaderPrivate : public TQObject { Q_OBJECT public: TQStringList mThemesInTree; - KIconGroup *mpGroups; - KIconThemeNode *mpThemeRoot; - KStandardDirs *mpDirs; - KIconLoader *q; - KIconEffect mpEffect; + TDEIconGroup *mpGroups; + TDEIconThemeNode *mpThemeRoot; + TDEStandardDirs *mpDirs; + TDEIconLoader *q; + TDEIconEffect mpEffect; TQDict<TQImage> imgDict; TQImage lastImage; // last loaded image without effect applied TQString lastImageKey; // key for icon without effect TQString appname; - int lastIconType; // see KIcon::type - int lastIconThreshold; // see KIcon::threshold - TQPtrList<KIconThemeNode> links; + int lastIconType; // see TDEIcon::type + int lastIconThreshold; // see TDEIcon::threshold + TQPtrList<TDEIconThemeNode> links; bool extraDesktopIconsLoaded; bool delayedLoading; @@ -57,4 +57,4 @@ public slots: void reconfigure(); }; -#endif // __KIconLoader_p_h_Included__ +#endif // __TDEIconLoader_p_h_Included__ |