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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
|
//===========================================
// Lumina-DE source code
// Copyright (c) 2013-2015, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
#include "LuminaUtils.h"
#include <QString>
#include <QFile>
#include <QStringList>
#include <QObject>
#include <QTextCodec>
#include <QDebug>
#include <QDesktopWidget>
#include <QImageReader>
#include <LuminaOS.h>
#include <LuminaThemes.h>
#include <LuminaXDG.h>
static QStringList fav;
//=============
// LUtils Functions
//=============
QString LUtils::LuminaDesktopVersion(){
return "0.8.6-devel";
}
int LUtils::runCmd(QString cmd, QStringList args){
QProcess proc;
proc.setProcessChannelMode(QProcess::MergedChannels);
if(args.isEmpty()){
proc.start(cmd);
}else{
proc.start(cmd, args);
}
while(!proc.waitForFinished(300)){
QCoreApplication::processEvents();
}
int ret = proc.exitCode();
return ret;
}
QStringList LUtils::getCmdOutput(QString cmd, QStringList args){
QProcess proc;
QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
env.insert("LANG", "C");
env.insert("LC_MESSAGES", "C");
proc.setProcessEnvironment(env);
proc.setProcessChannelMode(QProcess::MergedChannels);
if(args.isEmpty()){
proc.start(cmd);
}else{
proc.start(cmd,args);
}
while(!proc.waitForFinished(500)){
QCoreApplication::processEvents();
}
QStringList out = QString(proc.readAllStandardOutput()).split("\n");
return out;
}
QStringList LUtils::readFile(QString filepath){
QStringList out;
QFile file(filepath);
if(file.open(QIODevice::Text | QIODevice::ReadOnly)){
QTextStream in(&file);
while(!in.atEnd()){
out << in.readLine();
}
file.close();
}
return out;
}
bool LUtils::writeFile(QString filepath, QStringList contents, bool overwrite){
QFile file(filepath);
if(file.exists() && !overwrite){ return false; }
bool ok = false;
if(contents.isEmpty()){ contents << "\n"; }
if( file.open(QIODevice::WriteOnly | QIODevice::Truncate) ){
QTextStream out(&file);
out << contents.join("\n");
if(!contents.last().isEmpty()){ out << "\n"; } //always end with a new line
file.close();
ok = true;
}
return ok;
}
bool LUtils::isValidBinary(QString& bin){
if(!bin.startsWith("/")){
//Relative path: search for it on the current "PATH" settings
QStringList paths = QString(qgetenv("PATH")).split(":");
for(int i=0; i<paths.length(); i++){
if(QFile::exists(paths[i]+"/"+bin)){ bin = paths[i]+"/"+bin; break;}
}
}
//bin should be the full path by now
if(!bin.startsWith("/")){ return false; }
QFileInfo info(bin);
bool good = (info.exists() && info.isExecutable());
if(good){ bin = info.absoluteFilePath(); }
return good;
}
QStringList LUtils::listSubDirectories(QString dir, bool recursive){
//This is a recursive method for returning the full paths of all subdirectories (if recursive flag is enabled)
QDir maindir(dir);
QStringList out;
QStringList subs = maindir.entryList(QDir::NoDotAndDotDot | QDir::Dirs, QDir::Name);
for(int i=0; i<subs.length(); i++){
out << maindir.absoluteFilePath(subs[i]);
if(recursive){
out << LUtils::listSubDirectories(maindir.absoluteFilePath(subs[i]), recursive);
}
}
return out;
}
QStringList LUtils::imageExtensions(){
//Note that all the image extensions are lowercase!!
static QStringList imgExtensions;
if(imgExtensions.isEmpty()){
QList<QByteArray> fmt = QImageReader::supportedImageFormats();
for(int i=0; i<fmt.length(); i++){ imgExtensions << QString::fromLocal8Bit(fmt[i]); }
}
return imgExtensions;
}
QTranslator* LUtils::LoadTranslation(QApplication *app, QString appname, QString locale, QTranslator *cTrans){
//Get the current localization
QString langEnc = "UTF-8"; //default value
QString langCode = locale; //provided locale
if(langCode.isEmpty()){ langCode = getenv("LC_ALL"); }
if(langCode.isEmpty()){ langCode = getenv("LANG"); }
if(langCode.isEmpty()){ langCode = "en_US.UTF-8"; } //default to US english
//See if the encoding is included and strip it out as necessary
if(langCode.contains(".")){
langEnc = langCode.section(".",-1);
langCode = langCode.section(".",0,0);
}
//Now verify the encoding for the locale
if(langCode =="C" || langCode=="POSIX" || langCode.isEmpty()){
langEnc = "System"; //use the Qt system encoding
}
if(app !=0){
qDebug() << "Loading Locale:" << appname << langCode << langEnc;
//If an existing translator was provided, remove it first (will be replaced)
if(cTrans!=0){ app->removeTranslator(cTrans); }
//Setup the translator
cTrans = new QTranslator();
//Use the shortened locale code if specific code does not have a corresponding file
if(!QFile::exists(LOS::LuminaShare()+"i18n/"+appname+"_" + langCode + ".qm") && langCode!="en_US" ){
langCode.truncate( langCode.indexOf("_") );
}
if( cTrans->load( appname+QString("_") + langCode, LOS::LuminaShare()+"i18n/" ) ){
app->installTranslator( cTrans );
}else{
//Translator could not be loaded for some reason
cTrans = 0;
if(langCode!="en_US"){
qWarning() << " - Could not load Locale:" << langCode;
}
}
}else{
//Only going to set the encoding since no application given
qDebug() << "Loading System Encoding:" << langEnc;
}
//Load current encoding for this locale
QTextCodec::setCodecForLocale( QTextCodec::codecForName(langEnc.toUtf8()) );
return cTrans;
}
QStringList LUtils::knownLocales(){
QDir i18n = QDir(LOS::LuminaShare()+"i18n");
if( !i18n.exists() ){ return QStringList(); }
QStringList files = i18n.entryList(QStringList() << "lumina-desktop_*.qm", QDir::Files, QDir::Name);
if(files.isEmpty()){ return QStringList(); }
//Now strip off the filename and just leave the locale tag
for(int i=0; i<files.length(); i++){
files[i].chop(3); //remove the ".qm" on the end
files[i] = files[i].section("_",1,50).simplified();
}
files << "en_US"; //default locale
files.sort();
return files;
}
void LUtils::setLocaleEnv(QString lang, QString msg, QString time, QString num,QString money,QString collate, QString ctype){
//Adjust the current locale environment variables
bool all = false;
if(msg.isEmpty() && time.isEmpty() && num.isEmpty() && money.isEmpty() && collate.isEmpty() && ctype.isEmpty() ){
if(lang.isEmpty()){ return; } //nothing to do - no changes requested
all = true; //set everything to the "lang" value
}
//If no lang given, but others are given, then use the current setting
if(lang.isEmpty()){ lang = getenv("LC_ALL"); }
if(lang.isEmpty()){ lang = getenv("LANG"); }
if(lang.isEmpty()){ lang = "en_US"; }
//Now go through and set/unset the environment variables
// - LANG & LC_ALL
if(!lang.contains(".")){ lang.append(".UTF-8"); }
setenv("LANG",lang.toUtf8() ,1); //overwrite setting (this is always required as the fallback)
if(all){ setenv("LC_ALL",lang.toUtf8() ,1); }
else{ unsetenv("LC_ALL"); } //make sure the custom settings are used
// - LC_MESSAGES
if(msg.isEmpty()){ unsetenv("LC_MESSAGES"); }
else{
if(!msg.contains(".")){ msg.append(".UTF-8"); }
setenv("LC_MESSAGES",msg.toUtf8(),1);
}
// - LC_TIME
if(time.isEmpty()){ unsetenv("LC_TIME"); }
else{
if(!time.contains(".")){ time.append(".UTF-8"); }
setenv("LC_TIME",time.toUtf8(),1);
}
// - LC_NUMERIC
if(num.isEmpty()){ unsetenv("LC_NUMERIC"); }
else{
if(!num.contains(".")){ num.append(".UTF-8"); }
setenv("LC_NUMERIC",num.toUtf8(),1);
}
// - LC_MONETARY
if(money.isEmpty()){ unsetenv("LC_MONETARY"); }
else{
if(!money.contains(".")){ money.append(".UTF-8"); }
setenv("LC_MONETARY",money.toUtf8(),1);
}
// - LC_COLLATE
if(collate.isEmpty()){ unsetenv("LC_COLLATE"); }
else{
if(!collate.contains(".")){ collate.append(".UTF-8"); }
setenv("LC_COLLATE",collate.toUtf8(),1);
}
// - LC_CTYPE
if(ctype.isEmpty()){ unsetenv("LC_CTYPE"); }
else{
if(!ctype.contains(".")){ ctype.append(".UTF-8"); }
setenv("LC_CTYPE",ctype.toUtf8(),1);
}
}
double LUtils::DisplaySizeToBytes(QString num){
//qDebug() << "Convert Num to Bytes:" << num;
num = num.toLower().simplified();
num = num.remove(" ");
if(num.isEmpty()){ return 0.0; }
if(num.endsWith("b")){ num.chop(1); } //remove the "bytes" marker (if there is one)
QString lab = "b";
if(!num[num.size()-1].isNumber()){
lab = num.right(1); num.chop(1);
}
double N = num.toDouble();
QStringList labs; labs <<"b"<<"k"<<"m"<<"g"<<"t"<<"p"; //go up to petabytes for now
for(int i=0; i<labs.length(); i++){
if(lab==labs[i]){ break; }//already at the right units - break out
N = N*1024.0; //Move to the next unit of measurement
}
//qDebug() << " - Done:" << QString::number(N) << lab << num;
return N;
}
//Various function for finding valid QtQuick plugins on the system
bool LUtils::validQuickPlugin(QString ID){
return ( !LUtils::findQuickPluginFile(ID).isEmpty() );
}
QString LUtils::findQuickPluginFile(QString ID){
if(ID.startsWith("quick-")){ ID = ID.section("-",1,50); } //just in case
//Give preference to any user-supplied plugins (overwrites for system plugins)
QString path = QDir::homePath()+"/.lumina/quickplugins/quick-"+ID+".qml";
if( QFile::exists(path) ){return path; }
path = LOS::LuminaShare()+"quickplugins/quick-"+ID+".qml";
if( QFile::exists(path) ){return path; }
return ""; //could not be found
}
QStringList LUtils::listQuickPlugins(){
QDir dir(QDir::homePath()+"/.lumina/quickplugins");
QStringList files = dir.entryList(QStringList() << "quick-*.qml", QDir::Files | QDir::NoDotAndDotDot, QDir::Name);
dir.cd(LOS::LuminaShare()+"quickplugins");
files << dir.entryList(QStringList() << "quick-*.qml", QDir::Files | QDir::NoDotAndDotDot, QDir::Name);
for(int i=0; i<files.length(); i++){
files[i] = files[i].section("quick-",1,100).section(".qml",0,0); //just grab the ID out of the middle of the filename
}
files.removeDuplicates();
//qDebug() << "Found Quick Plugins:" << files;
return files;
}
QStringList LUtils::infoQuickPlugin(QString ID){ //Returns: [Name, Description, Icon]
//qDebug() << "Find Quick Info:" << ID;
QString path = findQuickPluginFile(ID);
//qDebug() << " - path:" << path;
if(path.isEmpty()){ return QStringList(); } //invalid ID
QStringList contents = LUtils::readFile(path);
if(contents.isEmpty()){ return QStringList(); } //invalid file (unreadable)
contents = contents.filter("//").filter("=").filter("Plugin"); //now just grab the comments
//qDebug() << " - Filtered Contents:" << contents;
QStringList info; info << "" << "" << "";
for(int i=0; i<contents.length(); i++){
if(contents[i].contains("Plugin-Name=")){ info[0] = contents[i].section("Plugin-Name=",1,1).simplified(); }
else if(contents[i].contains("Plugin-Description=")){ info[1] = contents[i].section("Plugin-Description=",1,1).simplified(); }
else if(contents[i].contains("Plugin-Icon=")){ info[2] = contents[i].section("Plugin-Icon=",1,1).simplified(); }
}
if(info[0].isEmpty()){ info[0]=ID; }
if(info[2].isEmpty()){ info[2]="preferences-plugin"; }
//qDebug() << " - info:" << info;
return info;
}
QStringList LUtils::listFavorites(){
static QDateTime lastRead;
QDateTime cur = QDateTime::currentDateTime();
if(lastRead.isNull() || lastRead<QFileInfo(QDir::homePath()+"/.lumina/favorites/fav.list").lastModified()){
fav = LUtils::readFile(QDir::homePath()+"/.lumina/favorites/fav.list");
fav.removeAll(""); //remove any empty lines
lastRead = cur;
if(fav.isEmpty()){
//Make sure the favorites dir exists, and create it if necessary
QDir dir(QDir::homePath()+"/.lumina/favorites");
if(!dir.exists()){ dir.mkpath(QDir::homePath()+"/.lumina/favorites"); }
}
}
return fav;
}
bool LUtils::saveFavorites(QStringList list){
bool ok = LUtils::writeFile(QDir::homePath()+"/.lumina/favorites/fav.list", list, true);
if(ok){ fav = list; } //also save internally in case of rapid write/read of the file
return ok;
}
bool LUtils::isFavorite(QString path){
QStringList fav = LUtils::listFavorites();
for(int i=0; i<fav.length(); i++){
if(fav[i].endsWith("::::"+path)){ return true; }
}
return false;
}
bool LUtils::addFavorite(QString path, QString name){
//Generate the type of favorite this is
QFileInfo info(path);
QString type;
if(info.isDir()){ type="dir"; }
else if(info.suffix()=="desktop"){ type="app"; }
else{ type = LXDG::findAppMimeForFile(path); }
//Assign a name if none given
if(name.isEmpty()){ name = info.fileName(); }
//Now add it to the list
QStringList favs = LUtils::listFavorites();
bool found = false;
for(int i=0; i<favs.length(); i++){
if(favs[i].endsWith("::::"+path)){ favs[i] = name+"::::"+type+"::::"+path; }
}
if(!found){ favs << name+"::::"+type+"::::"+path; }
return LUtils::saveFavorites(favs);
}
void LUtils::removeFavorite(QString path){
QStringList fav = LUtils::listFavorites();
bool changed = false;
for(int i=0; i<fav.length(); i++){
if(fav[i].endsWith("::::"+path)){ fav.removeAt(i); i--; changed=true;}
}
if(changed){ LUtils::saveFavorites(fav); }
}
void LUtils::upgradeFavorites(int fromoldversionnumber){
if(fromoldversionnumber <= 8004){ // < pre-0.8.4>, sym-links in the ~/.lumina/favorites dir}
//Include 0.8.4-devel versions in this upgrade (need to distinguish b/w devel and release versions later somehow)
QDir favdir(QDir::homePath()+"/.lumina/favorites");
QFileInfoList symlinks = favdir.entryInfoList(QDir::Files | QDir::Dirs | QDir::System | QDir::NoDotAndDotDot);
QStringList favfile = LUtils::listFavorites(); //just in case some already exist
bool newentry = false;
for(int i=0; i<symlinks.length(); i++){
if(!symlinks[i].isSymLink()){ continue; } //not a symlink
QString path = symlinks[i].symLinkTarget();
QString name = symlinks[i].fileName(); //just use the name of the symlink from the old system
QString type;
if(symlinks[i].isDir()){ type = "dir"; }
else if(name.endsWith(".desktop")){ type = "app"; }
else{ type = LXDG::findAppMimeForFile(path); }
//Put the line into the file
favfile << name+"::::"+type+"::::"+path;
//Now remove the symlink - obsolete format
QFile::remove(symlinks[i].absoluteFilePath());
newentry = true;
}
if(newentry){
LUtils::saveFavorites(favfile);
}
} //end check for version <= 0.8.4
}
void LUtils::LoadSystemDefaults(bool skipOS){
//Will create the Lumina configuration files based on the current system template (if any)
qDebug() << "Loading System Defaults";
QStringList sysDefaults;
if(!skipOS){ sysDefaults = LUtils::readFile(LOS::AppPrefix()+"etc/luminaDesktop.conf"); }
if(sysDefaults.isEmpty() && !skipOS){ sysDefaults = LUtils::readFile(LOS::AppPrefix()+"etc/luminaDesktop.conf.dist"); }
if(sysDefaults.isEmpty() && !skipOS) { sysDefaults = LUtils::readFile(LOS::SysPrefix()+"etc/luminaDesktop.conf"); }
if(sysDefaults.isEmpty() && !skipOS){ sysDefaults = LUtils::readFile(LOS::SysPrefix()+"etc/luminaDesktop.conf.dist"); }
if(sysDefaults.isEmpty() && !skipOS) { sysDefaults = LUtils::readFile("/etc/luminaDesktop.conf"); }
if(sysDefaults.isEmpty() && !skipOS){ sysDefaults = LUtils::readFile("/etc/luminaDesktop.conf.dist"); }
if(sysDefaults.isEmpty()){ sysDefaults = LUtils::readFile(LOS::LuminaShare()+"luminaDesktop.conf"); }
//Find the number of the left-most desktop screen
QString screen = "0";
QDesktopWidget *desk =QApplication::desktop();
QRect screenGeom;
for(int i=0; i<desk->screenCount(); i++){
if(desk->screenGeometry(i).x()==0){
screen = QString::number(i);
screenGeom = desk->screenGeometry(i);
break;
}
}
//Now setup the default "desktopsettings.conf" and "sessionsettings.conf" files
QStringList deskset, sesset, lopenset;
// -- SESSION SETTINGS --
QStringList tmp = sysDefaults.filter("session_");
if(tmp.isEmpty()){ tmp = sysDefaults.filter("session."); }//for backwards compat
sesset << "[General]"; //everything is in this section
sesset << "DesktopVersion="+LUtils::LuminaDesktopVersion();
for(int i=0; i<tmp.length(); i++){
if(tmp[i].startsWith("#") || !tmp[i].contains("=") ){ continue; }
QString var = tmp[i].section("=",0,0).toLower().simplified();
QString val = tmp[i].section("=",1,1).section("#",0,0).simplified();
QString istrue = (val.toLower()=="true") ? "true": "false";
//Change in 0.8.5 - use "_" instead of "." within variables names - need backwards compat for a little while
if(var.contains(".")){ var.replace(".","_"); }
//Now parse the variable and put the value in the proper file
if(var=="session_enablenumlock"){ sesset << "EnableNumlock="+ istrue; }
else if(var=="session_playloginaudio"){ sesset << "PlayStartupAudio="+istrue; }
else if(var=="session_playlogoutaudio"){ sesset << "PlayLogoutAudio="+istrue; }
else if(var=="session_default_terminal"){ sesset << "default-terminal="+val; }
else if(var=="session_default_filemanager"){
sesset << "default-filemanager="+val;
lopenset << "directory="+val;
}
else if(var=="session_default_webbrowser"){ lopenset << "webbrowser="+val; }
else if(var=="session_default_email"){ lopenset << "email="+val; }
}
if(!lopenset.isEmpty()){ lopenset.prepend("[default]"); } //the session options exist within this set
// -- DESKTOP SETTINGS --
//(only works for the primary desktop at the moment)
tmp = sysDefaults.filter("desktop_");
if(tmp.isEmpty()){ tmp = sysDefaults.filter("desktop."); }//for backwards compat
if(!tmp.isEmpty()){deskset << "[desktop-"+screen+"]"; }
for(int i=0; i<tmp.length(); i++){
if(tmp[i].startsWith("#") || !tmp[i].contains("=") ){ continue; }
QString var = tmp[i].section("=",0,0).toLower().simplified();
QString val = tmp[i].section("=",1,1).section("#",0,0).simplified();
QString istrue = (val.toLower()=="true") ? "true": "false";
//Change in 0.8.5 - use "_" instead of "." within variables names - need backwards compat for a little while
if(var.contains(".")){ var.replace(".","_"); }
//Now parse the variable and put the value in the proper file
if(var=="desktop_visiblepanels"){ deskset << "panels="+val; }
else if(var=="desktop_backgroundfiles"){ deskset << "background\\filelist="+val; }
else if(var=="desktop_backgroundrotateminutes"){ deskset << "background\\minutesToChange="+val; }
else if(var=="desktop_plugins"){ deskset << "pluginlist="+val; }
else if(var=="desktop_generate_icons"){ deskset << "generateDesktopIcons="+istrue; }
}
if(!tmp.isEmpty()){ deskset << ""; } //space between sections
// -- PANEL SETTINGS --
//(only works for the primary desktop at the moment)
for(int i=1; i<11; i++){
QString panvar = "panel"+QString::number(i);
tmp = sysDefaults.filter(panvar);
if(!tmp.isEmpty()){deskset << "[panel"+screen+"."+QString::number(i-1)+"]"; }
for(int i=0; i<tmp.length(); i++){
if(tmp[i].startsWith("#") || !tmp[i].contains("=") ){ continue; }
QString var = tmp[i].section("=",0,0).toLower().simplified();
QString val = tmp[i].section("=",1,1).section("#",0,0).simplified();
QString istrue = (val.toLower()=="true") ? "true": "false";
//Change in 0.8.5 - use "_" instead of "." within variables names - need backwards compat for a little while
if(var.contains(".")){ var.replace(".","_"); }
//Now parse the variable and put the value in the proper file
if(var==(panvar+"_pixelsize")){
//qDebug() << "Panel Size:" << val;
if(val.endsWith("%h")){ val = QString::number( (screenGeom.height()*val.section("%",0,0).toDouble())/100 ); }//adjust value to a percentage of the height of the screen
else if(val.endsWith("%w")){ val = QString::number( (screenGeom.width()*val.section("%",0,0).toDouble())/100 ); }//adjust value to a percentage of the width of the screen
//qDebug() << " -- Adjusted:" << val;
deskset << "height="+val;
}
else if(var==(panvar+"_autohide")){ deskset << "hidepanel="+istrue; }
else if(var==(panvar+"_location")){ deskset << "location="+val.toLower(); }
else if(var==(panvar+"_plugins")){ deskset << "pluginlist="+val; }
else if(var==(panvar+"_pinlocation")){ deskset << "pinLocation="+val.toLower(); }
else if(var==(panvar+"_edgepercent")){ deskset << "lengthPercent="+val; }
}
if(!tmp.isEmpty()){ deskset << ""; } //space between sections
}
// -- MENU settings --
tmp = sysDefaults.filter("menu_");
if(tmp.isEmpty()){ tmp = sysDefaults.filter("menu."); } //backwards compat
if(!tmp.isEmpty()){deskset << "[menu]"; }
for(int i=0; i<tmp.length(); i++){
if(tmp[i].startsWith("#") || !tmp[i].contains("=") ){ continue; }
QString var = tmp[i].section("=",0,0).simplified();
QString val = tmp[i].section("=",1,1).section("#",0,0).toLower().simplified();
//Change in 0.8.5 - use "_" instead of "." within variables names - need backwards compat for a little while
if(var.contains(".")){ var.replace(".","_"); }
//Now parse the variable and put the value in the proper file
if(var=="menu_plugins"){ deskset << "itemlist="+val; }
}
if(!tmp.isEmpty()){ deskset << ""; } //space between sections
// -- FAVORITES --
tmp = sysDefaults.filter("favorites_");
if(tmp.isEmpty()){ tmp = sysDefaults.filter("favorites."); }
for(int i=0; i<tmp.length(); i++){
if(tmp[i].startsWith("#") || !tmp[i].contains("=") ){ continue; }
QString var = tmp[i].section("=",0,0).toLower().simplified();
QString val = tmp[i].section("=",1,1).section("#",0,0).simplified();
//Change in 0.8.5 - use "_" instead of "." within variables names - need backwards compat for a little while
if(var.contains(".")){ var.replace(".","_"); }
//Now parse the variable and put the value in the proper file
qDebug() << "Favorite entry:" << var << val;
if(var=="favorites_add_ifexists" && QFile::exists(val)){ qDebug() << " - Exists/Adding:"; LUtils::addFavorite(val); }
else if(var=="favorites_add"){ qDebug() << " - Adding:"; LUtils::addFavorite(val); }
else if(var=="favorites_remove"){ qDebug() << " - Removing:"; LUtils::removeFavorite(val); }
}
//Now do any theme settings
QStringList themesettings = LTHEME::currentSettings();
//List: [theme path, colorspath, iconsname, font, fontsize]
qDebug() << "Current Theme Color:" << themesettings[1];
tmp = sysDefaults.filter("theme_");
if(tmp.isEmpty()){ tmp = sysDefaults.filter("theme."); }
bool setTheme = !tmp.isEmpty();
for(int i=0; i<tmp.length(); i++){
if(tmp[i].startsWith("#") || !tmp[i].contains("=") ){ continue; }
QString var = tmp[i].section("=",0,0).toLower().simplified();
QString val = tmp[i].section("=",1,1).section("#",0,0).simplified();
//Change in 0.8.5 - use "_" instead of "." within variables names - need backwards compat for a little while
if(var.contains(".")){ var.replace(".","_"); }
//Now parse the variable and put the value in the proper file
if(var=="theme_themefile"){ themesettings[0] = val; }
else if(var=="theme_colorfile"){ themesettings[1] = val; }
else if(var=="theme_iconset"){ themesettings[2] = val; }
else if(var=="theme_font"){ themesettings[3] = val; }
else if(var=="theme_fontsize"){
if(val.endsWith("%")){ val = QString::number( (screenGeom.height()*val.section("%",0,0).toDouble())/100 )+"px"; }
themesettings[4] = val;
}
}
//qDebug() << " - Now Color:" << themesettings[1] << setTheme;
//Now double check that the custom theme/color files exist and reset it will the full path as necessary
if(setTheme){
QStringList systhemes = LTHEME::availableSystemThemes();
QStringList syscolors = LTHEME::availableSystemColors();
//theme file
qDebug() << "Detected Themes/colors:" << systhemes << syscolors;
if( !themesettings[0].startsWith("/") || !QFile::exists(themesettings[0]) || !themesettings[1].endsWith(".qss.template")){
themesettings[0] = themesettings[0].section(".qss",0,0).simplified();
for(int i=0; i<systhemes.length(); i++){
if(systhemes[i].startsWith(themesettings[0]+"::::",Qt::CaseInsensitive)){
themesettings[0] = systhemes[i].section("::::",1,1); //Replace with the full path
break;
}
}
}
//color file
if( !themesettings[1].startsWith("/") || !QFile::exists(themesettings[1]) || !themesettings[1].endsWith(".qss.colors") ){
//Remove any extra/invalid extension
themesettings[1] = themesettings[1].section(".qss",0,0).simplified();
for(int i=0; i<syscolors.length(); i++){
if(syscolors[i].startsWith(themesettings[1]+"::::",Qt::CaseInsensitive)){
themesettings[1] = syscolors[i].section("::::",1,1); //Replace with the full path
break;
}
}
}
}
//Ensure that the settings directory exists
QString setdir = QDir::homePath()+"/.lumina/LuminaDE";
if(!QFile::exists(setdir)){
QDir dir;
dir.mkpath(setdir);
}
//Now save the settings files
if(setTheme){ LTHEME::setCurrentSettings( themesettings[0], themesettings[1], themesettings[2], themesettings[3], themesettings[4]); }
LUtils::writeFile(setdir+"/sessionsettings.conf", sesset, true);
LUtils::writeFile(setdir+"/desktopsettings.conf", deskset, true);
LUtils::writeFile(setdir+"/lumina-open.conf", lopenset, true);
}
|