aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/src-cpp
diff options
context:
space:
mode:
authorZackaryWelch <welch.zackary@gmail.com>2018-01-02 12:46:46 -0500
committerZackaryWelch <welch.zackary@gmail.com>2018-01-02 12:46:46 -0500
commitf85701602031a8eb522576ba6486b28559427ec4 (patch)
tree4efe9cc18e3720a3edfdd57cc5fb4f38b1ab0671 /src-qt5/src-cpp
parentFinished transitioning from QPrintPreviewWidget to QGraphicsView (diff)
downloadlumina-f85701602031a8eb522576ba6486b28559427ec4.tar.gz
lumina-f85701602031a8eb522576ba6486b28559427ec4.tar.bz2
lumina-f85701602031a8eb522576ba6486b28559427ec4.zip
Improved some of the code in the screensaver plugins file
Diffstat (limited to 'src-qt5/src-cpp')
-rw-r--r--src-qt5/src-cpp/plugins-screensaver.cpp41
-rw-r--r--src-qt5/src-cpp/plugins-screensaver.h9
2 files changed, 13 insertions, 37 deletions
diff --git a/src-qt5/src-cpp/plugins-screensaver.cpp b/src-qt5/src-cpp/plugins-screensaver.cpp
index 50796a52..0ceed8e8 100644
--- a/src-qt5/src-cpp/plugins-screensaver.cpp
+++ b/src-qt5/src-cpp/plugins-screensaver.cpp
@@ -39,21 +39,17 @@ bool SSPlugin::isLoaded(){
return !data.isEmpty();
}
+/**
+ * Check if the plugin is valid as long as the JSON is not empty,
+ * it contains at least a "name", "qml", and "description" object,
+ * and the "name" and "description" objects contain a "default" key.
+**/
bool SSPlugin::isValid(){
if(data.isEmpty()){ return false; }
bool ok = data.contains("name") && data.contains("qml") && data.contains("description");
- if(ok){
- //go to the next name level and see if required sub-items exist
- QJsonObject tmp = data.value("name").toObject();
- ok = tmp.contains("default");
- }
- if(ok){
- //go to the next description level and see if required sub-items exist
- QJsonObject tmp = data.value("description").toObject();
- ok = tmp.contains("default");
- }
-if(ok){
- //go to the next qml level and see if required sub-items exist
+ ok &= containsDefault("name");
+ ok &= containsDefault("description");
+ if(ok) {
QJsonObject tmp = data.value("qml").toObject();
QStringList mustexist;
QString exec = tmp.value("exec").toString();
@@ -62,7 +58,6 @@ if(ok){
QJsonArray tmpA = data.value("additional_files").toArray();
for(int i=0; i<tmpA.count(); i++){ mustexist << tmpA[i].toString(); }
QString reldir = currentfile.section("/",0,-2) + "/";
- //qDebug() << "Got MustExist:" << mustexist << reldir;
for(int i=0; i<mustexist.length() && ok; i++){
if(mustexist[i].startsWith("/")){ ok = QFile::exists(mustexist[i]); }
else { ok = QFile::exists(reldir+mustexist[i]); }
@@ -71,23 +66,8 @@ if(ok){
return ok;
}
-QString SSPlugin::translatedName(){
- QJsonObject tmp = data.value("name").toObject();
- //Get the current locale
- QString locale = getenv("LC_ALL");
- if(locale.isEmpty()){ locale = getenv("LC_MESSAGES"); }
- if(locale.isEmpty()){ locale = getenv("LANG"); }
- if(locale.isEmpty()){ locale = "default"; }
- if(locale.contains(".")){ locale = locale.section(".",0,0); } //chop any charset code off the end
- //Now find which localized string is available and return it
- if(tmp.contains(locale)){ return tmp.value(locale).toString(); }
- locale = locale.section("_",0,0); //full locale not found - look for shortened form
- if(tmp.contains(locale)){ return tmp.value(locale).toString(); }
- return tmp.value("default").toString(); //use the default version
-}
-
-QString SSPlugin::translatedDescription(){
- QJsonObject tmp = data.value("description").toObject();
+QString SSPlugin::translatedObject(QString obj){
+ QJsonObject tmp = data.value(obj).toObject();
//Get the current locale
QString locale = getenv("LC_ALL");
if(locale.isEmpty()){ locale = getenv("LC_MESSAGES"); }
@@ -103,7 +83,6 @@ QString SSPlugin::translatedDescription(){
QUrl SSPlugin::scriptURL(){
QString exec = data.value("qml").toObject().value("exec").toString();
- //qDebug() << "got exec:" << exec << data;
if(!exec.startsWith("/")){ exec.prepend( currentfile.section("/",0,-2)+"/" ); }
return QUrl::fromLocalFile(exec);
}
diff --git a/src-qt5/src-cpp/plugins-screensaver.h b/src-qt5/src-cpp/plugins-screensaver.h
index 9a7e98f5..08210147 100644
--- a/src-qt5/src-cpp/plugins-screensaver.h
+++ b/src-qt5/src-cpp/plugins-screensaver.h
@@ -23,20 +23,17 @@
class SSPlugin{
private:
QString currentfile;
-
-public:
QJsonObject data; //Hazardous to manually modify
+ bool containsDefault(QString obj) { return data.value(obj).toObject().contains("default"); }
+public:
SSPlugin();
~SSPlugin();
void loadFile(QString path);
bool isLoaded();
-
bool isValid();
-
- QString translatedName();
- QString translatedDescription();
+ QString translatedObject(QString obj);
QUrl scriptURL();
};
bgstack15