From e16866e072f94410321d70daedbcb855ea878cac Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 6 Nov 2011 15:56:40 -0600 Subject: Actually move the kde files that were renamed in the last commit --- tdecore/tests/kiconloadertest.cpp | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 tdecore/tests/kiconloadertest.cpp (limited to 'tdecore/tests/kiconloadertest.cpp') diff --git a/tdecore/tests/kiconloadertest.cpp b/tdecore/tests/kiconloadertest.cpp new file mode 100644 index 000000000..96a7a6813 --- /dev/null +++ b/tdecore/tests/kiconloadertest.cpp @@ -0,0 +1,34 @@ +#include +#include +#include +#include +#include +#include + +int main(int argc, char *argv[]) +{ + KApplication app(argc,argv,"kiconloadertest"/*,false,false*/); + + KIconLoader * mpLoader = KGlobal::iconLoader(); + KIcon::Context mContext = KIcon::Application; + TQTime dt; + dt.start(); + int count = 0; + for ( int mGroup = 0; mGroup < KIcon::LastGroup ; ++mGroup ) + { + kdDebug() << "queryIcons " << mGroup << "," << mContext << endl; + TQStringList filelist=mpLoader->queryIcons(mGroup, mContext); + kdDebug() << " -> found " << filelist.count() << " icons." << endl; + int i=0; + for(TQStringList::Iterator it = filelist.begin(); + it != filelist.end() /*&& i<10*/; + ++it, ++i ) + { + //kdDebug() << ( i==9 ? "..." : (*it) ) << endl; + mpLoader->loadIcon( (*it), (KIcon::Group)mGroup ); + ++count; + } + } + kdDebug() << "Loading " << count << " icons took " << (float)(dt.elapsed()) / 1000 << " seconds" << endl; +} + -- cgit v1.2.1