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
|
//===========================================
// Lumina-DE source code
// Copyright (c) 2013, 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 <LuminaOS.h>
#include <LuminaThemes.h>
//=============
// LUtils Functions
//=============
QString LUtils::LuminaDesktopVersion(){
return "0.8.4-devel";
}
int LUtils::runCmd(QString cmd, QStringList args){
QProcess *proc = new QProcess;
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();
delete proc;
return ret;
}
QStringList LUtils::getCmdOutput(QString cmd, QStringList args){
QProcess *proc = new QProcess;
proc->setProcessChannelMode(QProcess::MergedChannels);
if(args.isEmpty()){
proc->start(cmd);
}else{
proc->start(cmd,args);
}
while(!proc->waitForFinished(300)){
QCoreApplication::processEvents();
}
QStringList out = QString(proc->readAllStandardOutput()).split("\n");
delete proc;
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( file.open(QIODevice::WriteOnly | QIODevice::Truncate) ){
QTextStream out(&file);
out << contents.join("\n");
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);
return (info.exists() && info.isExecutable());
}
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;
}
void LUtils::LoadTranslation(QApplication *app, QString appname){
//Get the current localization
QString langEnc = "UTF-8"; //default value
QString langCode = getenv("LANG");
if(langCode.isEmpty()){ langCode = getenv("LC_ALL"); }
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;
//Setup the translator
QTranslator *CurTranslator = 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.truncate( langCode.indexOf("_") );
}
CurTranslator->load( appname+QString("_") + langCode, LOS::LuminaShare()+"i18n/" );
app->installTranslator( CurTranslator );
}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()) );
}
QStringList LUtils::listFavorites(){
QStringList fav = LUtils::readFile(QDir::homePath()+"/.lumina/favorites/fav.list");
return fav;
}
bool LUtils::saveFavorites(QStringList list){
return LUtils::writeFile(QDir::homePath()+"/.lumina/favorites/fav.list", list, true);
}
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 = "file";
if(info.isDir()){ type="dir"; }
else if(info.suffix()=="desktop"){ type="app"; }
//Assign a name if none given
if(name.isEmpty()){ name = info.fileName(); }
//Now add it to the list
QStringList fav = LUtils::listFavorites();
bool found = false;
for(int i=0; i<fav.length(); i++){
if(fav[i].endsWith("::::"+path)){ fav[i] = name+"::::"+type+"::::"+path; }
}
if(!found){ fav << name+"::::"+type+"::::"+path; }
return LUtils::saveFavorites(fav);
}
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::LoadSystemDefaults(bool skipOS){
//Will create the Lumina configuration files based on the current system template (if any)
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();
for(int i=0; i<desk->screenCount(); i++){
if(desk->screenGeometry(i).x()==0){ screen = QString::number(i); break; }
}
//Now setup the default "desktopsettings.conf" and "sessionsettings.conf" files
QStringList deskset, sesset;
//First start with any session settings
QStringList tmp = sysDefaults.filter("session.");
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).toLower().simplified();
QString istrue = (val=="true") ? "true": "false";
//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; }
}
//Now do any desktop settings (only works for the primary desktop at the moment)
tmp = sysDefaults.filter("desktop.");
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).toLower().simplified();
//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; }
}
if(!tmp.isEmpty()){ deskset << ""; } //space between sections
//Now do any panel1 settings (only works for the primary desktop at the moment)
tmp = sysDefaults.filter("panel1.");
if(!tmp.isEmpty()){deskset << "[panel"+screen+".0]"; }
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).toLower().simplified();
QString istrue = (val=="true") ? "true": "false";
//Now parse the variable and put the value in the proper file
if(var=="panel1.pixelsize"){ deskset << "height="+val; }
else if(var=="panel1.autohide"){ deskset << "hidepanel="+istrue; }
else if(var=="panel1.location"){ deskset << "location="+val; }
else if(var=="panel1.plugins"){ deskset << "pluginlist="+val; }
}
if(!tmp.isEmpty()){ deskset << ""; } //space between sections
//Now do any panel2 settings (only works for the primary desktop at the moment)
tmp = sysDefaults.filter("panel2.");
if(!tmp.isEmpty()){deskset << "[panel"+screen+".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).toLower().simplified();
QString istrue = (val=="true") ? "true": "false";
//Now parse the variable and put the value in the proper file
if(var=="panel2.pixelsize"){ deskset << "height="+val; }
else if(var=="panel2.autohide"){ deskset << "hidepanel="+istrue; }
else if(var=="panel2.location"){ deskset << "location="+val; }
else if(var=="panel2.plugins"){ deskset << "pluginlist="+val; }
}
if(!tmp.isEmpty()){ deskset << ""; } //space between sections
//Now do any menu settings
tmp = sysDefaults.filter("menu.");
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).toLower().simplified();
QString val = tmp[i].section("=",1,1).section("#",0,0).toLower().simplified();
//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
//Now do any theme settings
QStringList themesettings = LTHEME::currentSettings();
//List: [theme path, colorspath, iconsname, font, fontsize]
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).toLower().simplified();
//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"){ themesettings[4] = val; }
}
//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
if( !themesettings[0].startsWith("/") || !QFile::exists(themesettings[0]) ){
for(int i=0; i<systhemes.length(); i++){
if(systhemes[i].startsWith(themesettings[0]+"::::")){
themesettings[0] = systhemes[i].section("::::",1,1); //Replace with the full path
break;
}
}
}
//color file
if( !themesettings[1].startsWith("/") || !QFile::exists(themesettings[1]) ){
for(int i=0; i<syscolors.length(); i++){
if(syscolors[i].startsWith(themesettings[1]+"::::")){
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);
}
|