From ce4a32fe52ef09d8f5ff1dd22c001110902b60a2 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kstyles/utils/Makefile.am | 2 + kstyles/utils/installtheme/Makefile.am | 18 +++++++ kstyles/utils/installtheme/main.cpp | 90 ++++++++++++++++++++++++++++++++++ 3 files changed, 110 insertions(+) create mode 100644 kstyles/utils/Makefile.am create mode 100644 kstyles/utils/installtheme/Makefile.am create mode 100644 kstyles/utils/installtheme/main.cpp (limited to 'kstyles/utils') diff --git a/kstyles/utils/Makefile.am b/kstyles/utils/Makefile.am new file mode 100644 index 000000000..e949d7ef2 --- /dev/null +++ b/kstyles/utils/Makefile.am @@ -0,0 +1,2 @@ +SUBDIRS= installtheme + diff --git a/kstyles/utils/installtheme/Makefile.am b/kstyles/utils/installtheme/Makefile.am new file mode 100644 index 000000000..ff222bad0 --- /dev/null +++ b/kstyles/utils/installtheme/Makefile.am @@ -0,0 +1,18 @@ + +# set the include path for X, qt and KDE +INCLUDES= $(all_includes) + +####### This part is very settheme specific +# you can add here more. This one gets installed +bin_PROGRAMS = kinstalltheme + +# Which sources should be compiled for settheme. +kinstalltheme_SOURCES = main.cpp + +# the library search path. +kinstalltheme_LDFLAGS = $(all_libraries) $(KDE_RPATH) + +# the libraries to link against. Be aware of the order. First the libraries, +# that depend on the following ones. +kinstalltheme_LDADD = $(LIB_KDEUI) + diff --git a/kstyles/utils/installtheme/main.cpp b/kstyles/utils/installtheme/main.cpp new file mode 100644 index 000000000..0569c74ef --- /dev/null +++ b/kstyles/utils/installtheme/main.cpp @@ -0,0 +1,90 @@ +/* + Copyright (c) 2002 Maksim Orlovich + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. +*/ + +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include + +static const char desc[] = I18N_NOOP("KDE Tool to build a cache list of all pixmap themes installed"); +static const char ver[] = "0.9.1"; + +int main(int argc, char **argv) +{ + KCmdLineArgs::init(argc, argv, "kinstalltheme", I18N_NOOP("KInstalltheme"), desc, ver); + KApplication qapp(false, false); //We don't allow styles.. Kind of ironic, isn't it? + + KGlobal::dirs()->addResourceType("themercs", KGlobal::dirs()->kde_default("data")+QString("kstyle/themes")); + QStringList themercs = KGlobal::dirs()->findAllResources("themercs","*.themerc"); + + QMap themes; //Name->file mapping.. + + for (QStringList::iterator i = themercs.begin(); i!=themercs.end(); ++i) + { + QString file=*i; + KSimpleConfig config(file, true); + QString name = QFileInfo(file).baseName(); //This is nice and static... + //So we don't have to worry about our key changing when the language does. + + config.setGroup( "KDE" ); + + if (config.readEntry( "widgetStyle" ) == "basicstyle.la") + { + //OK, emit a style entry... + if (!themes.contains(name)) //Only add first occurrence, i.e. user local one. + themes[name] = file; + } + } + + KSimpleConfig cache( KGlobal::dirs()->saveLocation("config")+"kthemestylerc"); + +#if 0 +//Doesn't seem to work with present Qt.. + QStringList existing = cache.subkeyList("/kthemestyle"); + for (QStringList::iterator i = existing.begin(); i != existing.end(); i++) + { + cout<<"Have:"<<(*i).latin1()<<"\n"; + cache.removeEntry("/ktmthestyle"+(*i)); + } +#endif + + QStringList themeNames; //A list of names, each occurring once - the keys of the themes map.. + + for (QMap::Iterator i = themes.begin(); i!=themes.end(); ++i) + { + cache.setGroup(i.key().lower()); + cache.writePathEntry("file",QFileInfo(i.data()).fileName()); + themeNames.push_back(i.key()); + } + + cache.setGroup("General"); + cache.writeEntry("themes", themeNames.join("^e")+"^e"); + + return 0; +} -- cgit v1.2.1