blob: 694292c385adbc1223d42d0c543bf467fc71f87d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
#include <QApplication>
#include <QDebug>
#include <QFile>
#include <QDir>
#include <QTextStream>
#include <QIcon>
QString findInDir(QString dir, QString file){
QDir _dir(dir);
QStringList files = _dir.entryList(QStringList() << file+".*", QDir::Files | QDir::NoDotAndDotDot, QDir::Name);
if(files.isEmpty()){
QStringList dirs = _dir.entryList(QDir::Dirs | QDir::NoDotAndDotDot, QDir::Name);
QString tmp;
for(int i=0; i<dirs.length() && tmp.isEmpty(); i++){
tmp = findInDir( _dir.absoluteFilePath(dirs[i]), file);
}
return tmp;
}else{
return _dir.absoluteFilePath(files.first());
}
}
QStringList themeInherits(QString dir){
QFile file(dir+"/index.theme");
QStringList list;
if( file.open(QIODevice::Text | QIODevice::ReadOnly) ){
QTextStream in(&file);
while(!in.atEnd()){
QString line = in.readLine();
if(line.startsWith("Inherits=")){
//qDebug() << "Got Inherit Line" << line;
list = line.section("=",1,-1).split(";");
break; //done now
}
}
file.close();
}
return list;
}
bool isIconTheme(QString dir){
if(!QFile::exists(dir+"/index.theme")){ return false; }
QDir base(dir);
QStringList dirs = base.entryList(QDir::Dirs | QDir::NoDotAndDotDot, QDir::Name);
dirs.removeAll("cursors");
return (!dirs.isEmpty());
}
int main(int argc, char ** argv)
{
QApplication a(argc, argv);
QString icondir="/usr/local/share/icons";
QStringList iconfiles; iconfiles << "user-home" << "falkon" << "firefox" << "utilities-terminal";
QDir dir(icondir);
QStringList themes = dir.entryList(QDir::Dirs | QDir::NoDotAndDotDot, QDir::Name);
//Now look through them and see which themes have this file
QIcon::setThemeSearchPaths( QStringList() << icondir );
for(int i=0; i<themes.length(); i++){
QString themepath = dir.absoluteFilePath(themes[i]);
if( !isIconTheme(themepath) ){ continue; }
qDebug() << "Testing Theme:" << themes[i];
QIcon::setThemeName(themes[i]);
QStringList inherits = themeInherits(themepath);
for(int j=0; j<inherits.length(); j++){ inherits << themeInherits(dir.absoluteFilePath(inherits[j])); }
qDebug() << " - Inherits From Themes (in order):" << inherits;
for(int j=0; j<iconfiles.length(); j++){
qDebug() << " -------------------------";
qDebug() << " - Looking for icon:" << iconfiles[j];
qDebug() << " - Found File:" << findInDir(themepath, iconfiles[j]);
qDebug() << " - Found Icon:" << QIcon::fromTheme(iconfiles[j]).name();
}
qDebug() << " ================";
}
return 0;
}
|