summaryrefslogtreecommitdiffstats
path: root/gui/listbox.cpp
diff options
context:
space:
mode:
authorEthan Yonker <dees_troy@teamw.in>2015-07-30 22:04:32 +0200
committerEthan Yonker <dees_troy@teamw.in>2015-10-16 22:30:51 +0200
commit56ce332315b9b9fdd8f2bff8e00c9471be8b5594 (patch)
treebb1dbad0b7d4116970cd76f92787c778a6cde098 /gui/listbox.cpp
parentUse unified LoadFileToBuffer function (diff)
downloadandroid_bootable_recovery-56ce332315b9b9fdd8f2bff8e00c9471be8b5594.tar
android_bootable_recovery-56ce332315b9b9fdd8f2bff8e00c9471be8b5594.tar.gz
android_bootable_recovery-56ce332315b9b9fdd8f2bff8e00c9471be8b5594.tar.bz2
android_bootable_recovery-56ce332315b9b9fdd8f2bff8e00c9471be8b5594.tar.lz
android_bootable_recovery-56ce332315b9b9fdd8f2bff8e00c9471be8b5594.tar.xz
android_bootable_recovery-56ce332315b9b9fdd8f2bff8e00c9471be8b5594.tar.zst
android_bootable_recovery-56ce332315b9b9fdd8f2bff8e00c9471be8b5594.zip
Diffstat (limited to 'gui/listbox.cpp')
-rw-r--r--gui/listbox.cpp53
1 files changed, 46 insertions, 7 deletions
diff --git a/gui/listbox.cpp b/gui/listbox.cpp
index 4c9a68ac8..d82736e39 100644
--- a/gui/listbox.cpp
+++ b/gui/listbox.cpp
@@ -17,8 +17,6 @@
*/
#include <string.h>
-#include <sys/stat.h>
-#include <dirent.h>
extern "C" {
#include "../twcommon.h"
@@ -35,6 +33,7 @@ GUIListBox::GUIListBox(xml_node<>* node) : GUIScrollList(node)
xml_node<>* child;
mIconSelected = mIconUnselected = NULL;
mUpdate = 0;
+ isCheckList = false;
// Get the icons, if any
child = FindNode(node, "icon");
@@ -83,6 +82,19 @@ GUIListBox::GUIListBox(xml_node<>* node) : GUIScrollList(node)
data.action = new GUIAction(action);
allowSelection = true;
}
+ xml_node<>* variable_name = child->first_node("data");
+ if (variable_name) {
+ attr = variable_name->first_attribute("variable");
+ if (attr) {
+ data.variableName = attr->value();
+ if (DataManager::GetIntValue(data.variableName) == 0)
+ data.selected = 0;
+ else
+ data.selected = 1;
+ allowSelection = true;
+ isCheckList = true;
+ }
+ }
mList.push_back(data);
@@ -116,6 +128,21 @@ int GUIListBox::NotifyVarChange(const std::string& varName, const std::string& v
if(!isConditionTrue())
return 0;
+ if (isCheckList) {
+ int i, listSize = mList.size();
+
+ for (i = 0; i < listSize; i++) {
+ if (mList.at(i).variableName == varName) {
+ if (value == "0") {
+ mList.at(i).selected = 0;
+ } else {
+ mList.at(i).selected = 1;
+ }
+ }
+ }
+ mUpdate = 1;
+ return 0;
+ }
// Check to see if the variable that we are using to store the list selected value has been updated
if (varName == mVariable) {
int i, listSize = mList.size();
@@ -161,14 +188,26 @@ void GUIListBox::RenderItem(size_t itemindex, int yPos, bool selected)
void GUIListBox::NotifySelect(size_t item_selected)
{
- for (size_t i = 0; i < mList.size(); i++) {
- mList.at(i).selected = 0;
+ if (!isCheckList) {
+ for (size_t i = 0; i < mList.size(); i++) {
+ mList.at(i).selected = 0;
+ }
}
if (item_selected < mList.size()) {
ListData& data = mList.at(item_selected);
- data.selected = 1;
- string str = data.variableValue; // [check] should this set currentValue instead?
- DataManager::SetValue(mVariable, str);
+ if (isCheckList) {
+ if (data.selected) {
+ data.selected = 0;
+ DataManager::SetValue(data.variableName, "0");
+ } else {
+ data.selected = 1;
+ DataManager::SetValue(data.variableName, "1");
+ }
+ } else {
+ data.selected = 1;
+ string str = data.variableValue; // [check] should this set currentValue instead?
+ DataManager::SetValue(mVariable, str);
+ }
if (data.action)
data.action->doActions();
}