summaryrefslogtreecommitdiffstats
path: root/gui
diff options
context:
space:
mode:
authorthat <github@that.at>2015-09-12 11:27:47 +0200
committerDees Troy <dees_troy@teamw.in>2015-10-16 22:33:15 +0200
commit20fb95d0a77da2a28e30648bd91e3fa29ce5bc6b (patch)
tree4ef59bef9f5eddb969d5d3af25d1545e254a665d /gui
parentAllow listbox to have a list of check boxes (diff)
downloadandroid_bootable_recovery-20fb95d0a77da2a28e30648bd91e3fa29ce5bc6b.tar
android_bootable_recovery-20fb95d0a77da2a28e30648bd91e3fa29ce5bc6b.tar.gz
android_bootable_recovery-20fb95d0a77da2a28e30648bd91e3fa29ce5bc6b.tar.bz2
android_bootable_recovery-20fb95d0a77da2a28e30648bd91e3fa29ce5bc6b.tar.lz
android_bootable_recovery-20fb95d0a77da2a28e30648bd91e3fa29ce5bc6b.tar.xz
android_bootable_recovery-20fb95d0a77da2a28e30648bd91e3fa29ce5bc6b.tar.zst
android_bootable_recovery-20fb95d0a77da2a28e30648bd91e3fa29ce5bc6b.zip
Diffstat (limited to 'gui')
-rw-r--r--gui/object.cpp42
-rw-r--r--gui/objects.hpp6
2 files changed, 21 insertions, 27 deletions
diff --git a/gui/object.cpp b/gui/object.cpp
index 7cce5db8b..eae56e644 100644
--- a/gui/object.cpp
+++ b/gui/object.cpp
@@ -1,25 +1,12 @@
-// checkbox.cpp - GUICheckbox object
+// object.cpp - GUIObject base class
-#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
-#include <string.h>
-#include <fcntl.h>
-#include <sys/reboot.h>
-#include <sys/stat.h>
-#include <sys/time.h>
-#include <sys/mman.h>
-#include <sys/types.h>
-#include <sys/ioctl.h>
-#include <time.h>
-#include <unistd.h>
-#include <stdlib.h>
#include <string>
extern "C" {
#include "../twcommon.h"
-#include "../minuitwrp/minui.h"
#include "../variables.h"
}
@@ -30,17 +17,16 @@ extern "C" {
GUIObject::GUIObject(xml_node<>* node)
{
mConditionsResult = true;
+ if (node)
+ LoadConditions(node, mConditions);
+}
- // Break out early, it's too hard to check if valid every step
- if (!node) return;
-
- // First, get the action
+void GUIObject::LoadConditions(xml_node<>* node, std::vector<Condition>& conditions)
+{
xml_node<>* condition = FindNode(node, "conditions");
if (condition) condition = FindNode(condition, "condition");
else condition = FindNode(node, "condition");
- if (!condition) return;
-
while (condition)
{
Condition cond;
@@ -57,7 +43,7 @@ GUIObject::GUIObject(xml_node<>* node)
attr = condition->first_attribute("var2");
if (attr) cond.mVar2 = attr->value();
- mConditions.push_back(cond);
+ conditions.push_back(cond);
condition = condition->next_sibling("condition");
}
@@ -157,11 +143,17 @@ bool GUIObject::isConditionValid()
int GUIObject::NotifyVarChange(const std::string& varName, const std::string& value)
{
- mConditionsResult = true;
+ mConditionsResult = UpdateConditions(mConditions, varName);
+ return 0;
+}
+
+bool GUIObject::UpdateConditions(std::vector<Condition>& conditions, const std::string& varName)
+{
+ bool result = true;
const bool varNameEmpty = varName.empty();
std::vector<Condition>::iterator iter;
- for (iter = mConditions.begin(); iter != mConditions.end(); ++iter)
+ for (iter = conditions.begin(); iter != conditions.end(); ++iter)
{
if(varNameEmpty && iter->mCompareOp == "modified")
{
@@ -180,9 +172,9 @@ int GUIObject::NotifyVarChange(const std::string& varName, const std::string& va
iter->mLastResult = isConditionTrue(&(*iter));
if(!iter->mLastResult)
- mConditionsResult = false;
+ result = false;
}
- return 0;
+ return result;
}
bool GUIObject::isMounted(string vol)
diff --git a/gui/objects.hpp b/gui/objects.hpp
index 624db07f9..99bf0dbfa 100644
--- a/gui/objects.hpp
+++ b/gui/objects.hpp
@@ -151,8 +151,10 @@ protected:
std::vector<Condition> mConditions;
protected:
- bool isMounted(std::string vol);
- bool isConditionTrue(Condition* condition);
+ static void LoadConditions(xml_node<>* node, std::vector<Condition>& conditions);
+ static bool isMounted(std::string vol);
+ static bool isConditionTrue(Condition* condition);
+ static bool UpdateConditions(std::vector<Condition>& conditions, const std::string& varName);
bool mConditionsResult;
};