Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1 | /* |
| 2 | Copyright 2013 bigbiff/Dees_Troy TeamWin |
| 3 | This file is part of TWRP/TeamWin Recovery Project. |
| 4 | |
| 5 | TWRP is free software: you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License as published by |
| 7 | the Free Software Foundation, either version 3 of the License, or |
| 8 | (at your option) any later version. |
| 9 | |
| 10 | TWRP is distributed in the hope that it will be useful, |
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | GNU General Public License for more details. |
| 14 | |
| 15 | You should have received a copy of the GNU General Public License |
| 16 | along with TWRP. If not, see <http://www.gnu.org/licenses/>. |
| 17 | */ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 18 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 19 | #include <string.h> |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 20 | |
| 21 | extern "C" { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 22 | #include "../twcommon.h" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 23 | #include "../minuitwrp/minui.h" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 24 | } |
| 25 | |
| 26 | #include "rapidxml.hpp" |
| 27 | #include "objects.hpp" |
| 28 | #include "../data.hpp" |
Dees_Troy | eead985 | 2013-02-15 14:31:06 -0600 | [diff] [blame] | 29 | |
Ethan Yonker | 0a3a98f | 2015-02-05 00:48:28 +0100 | [diff] [blame] | 30 | GUIListBox::GUIListBox(xml_node<>* node) : GUIScrollList(node) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 31 | { |
Dees_Troy | eead985 | 2013-02-15 14:31:06 -0600 | [diff] [blame] | 32 | xml_attribute<>* attr; |
| 33 | xml_node<>* child; |
Ethan Yonker | 0a3a98f | 2015-02-05 00:48:28 +0100 | [diff] [blame] | 34 | mIconSelected = mIconUnselected = NULL; |
Dees_Troy | eead985 | 2013-02-15 14:31:06 -0600 | [diff] [blame] | 35 | mUpdate = 0; |
Ethan Yonker | 56ce332 | 2015-07-30 15:04:32 -0500 | [diff] [blame] | 36 | isCheckList = false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 37 | |
Ethan Yonker | 0a3a98f | 2015-02-05 00:48:28 +0100 | [diff] [blame] | 38 | // Get the icons, if any |
Ethan Yonker | 21ff02a | 2015-02-18 14:35:00 -0600 | [diff] [blame] | 39 | child = FindNode(node, "icon"); |
Ethan Yonker | 0a3a98f | 2015-02-05 00:48:28 +0100 | [diff] [blame] | 40 | if (child) { |
that | f6ed8fc | 2015-02-14 20:23:16 +0100 | [diff] [blame] | 41 | mIconSelected = LoadAttrImage(child, "selected"); |
| 42 | mIconUnselected = LoadAttrImage(child, "unselected"); |
Dees_Troy | eead985 | 2013-02-15 14:31:06 -0600 | [diff] [blame] | 43 | } |
that | f6ed8fc | 2015-02-14 20:23:16 +0100 | [diff] [blame] | 44 | int iconWidth = std::max(mIconSelected->GetWidth(), mIconUnselected->GetWidth()); |
| 45 | int iconHeight = std::max(mIconSelected->GetHeight(), mIconUnselected->GetHeight()); |
| 46 | SetMaxIconSize(iconWidth, iconHeight); |
Dees_Troy | eead985 | 2013-02-15 14:31:06 -0600 | [diff] [blame] | 47 | |
| 48 | // Handle the result variable |
Ethan Yonker | 21ff02a | 2015-02-18 14:35:00 -0600 | [diff] [blame] | 49 | child = FindNode(node, "data"); |
Ethan Yonker | 0a3a98f | 2015-02-05 00:48:28 +0100 | [diff] [blame] | 50 | if (child) { |
Dees_Troy | eead985 | 2013-02-15 14:31:06 -0600 | [diff] [blame] | 51 | attr = child->first_attribute("name"); |
| 52 | if (attr) |
| 53 | mVariable = attr->value(); |
| 54 | attr = child->first_attribute("default"); |
| 55 | if (attr) |
| 56 | DataManager::SetValue(mVariable, attr->value()); |
Ethan Yonker | 0a3a98f | 2015-02-05 00:48:28 +0100 | [diff] [blame] | 57 | // Get the currently selected value for the list |
| 58 | DataManager::GetValue(mVariable, currentValue); |
Dees_Troy | eead985 | 2013-02-15 14:31:06 -0600 | [diff] [blame] | 59 | } |
that | c01391c | 2015-07-09 00:19:58 +0200 | [diff] [blame] | 60 | else |
that | 8ab5c13 | 2015-09-13 23:00:54 +0200 | [diff] [blame] | 61 | allowSelection = false; // allows using listbox as a read-only list or menu |
Dees_Troy | eead985 | 2013-02-15 14:31:06 -0600 | [diff] [blame] | 62 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 63 | // Get the data for the list |
Ethan Yonker | 21ff02a | 2015-02-18 14:35:00 -0600 | [diff] [blame] | 64 | child = FindNode(node, "listitem"); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 65 | if (!child) return; |
Ethan Yonker | 0a3a98f | 2015-02-05 00:48:28 +0100 | [diff] [blame] | 66 | while (child) { |
that | 8ab5c13 | 2015-09-13 23:00:54 +0200 | [diff] [blame] | 67 | ListItem item; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 68 | |
| 69 | attr = child->first_attribute("name"); |
that | c01391c | 2015-07-09 00:19:58 +0200 | [diff] [blame] | 70 | if (!attr) |
| 71 | continue; |
that | 8ab5c13 | 2015-09-13 23:00:54 +0200 | [diff] [blame] | 72 | item.displayName = gui_parse_text(attr->value()); |
| 73 | item.variableValue = gui_parse_text(child->value()); |
| 74 | item.selected = (child->value() == currentValue); |
| 75 | item.action = NULL; |
that | c01391c | 2015-07-09 00:19:58 +0200 | [diff] [blame] | 76 | xml_node<>* action = child->first_node("action"); |
| 77 | if (action) { |
that | 8ab5c13 | 2015-09-13 23:00:54 +0200 | [diff] [blame] | 78 | item.action = new GUIAction(action); |
that | c01391c | 2015-07-09 00:19:58 +0200 | [diff] [blame] | 79 | allowSelection = true; |
| 80 | } |
Ethan Yonker | 56ce332 | 2015-07-30 15:04:32 -0500 | [diff] [blame] | 81 | xml_node<>* variable_name = child->first_node("data"); |
| 82 | if (variable_name) { |
| 83 | attr = variable_name->first_attribute("variable"); |
| 84 | if (attr) { |
that | 8ab5c13 | 2015-09-13 23:00:54 +0200 | [diff] [blame] | 85 | item.variableName = attr->value(); |
| 86 | item.selected = (DataManager::GetIntValue(item.variableName) != 0); |
Ethan Yonker | 56ce332 | 2015-07-30 15:04:32 -0500 | [diff] [blame] | 87 | allowSelection = true; |
| 88 | isCheckList = true; |
| 89 | } |
| 90 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 91 | |
that | 8ab5c13 | 2015-09-13 23:00:54 +0200 | [diff] [blame] | 92 | LoadConditions(child, item.mConditions); |
| 93 | |
| 94 | mListItems.push_back(item); |
| 95 | mVisibleItems.push_back(mListItems.size()-1); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 96 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 97 | child = child->next_sibling("listitem"); |
| 98 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | GUIListBox::~GUIListBox() |
| 102 | { |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | int GUIListBox::Update(void) |
| 106 | { |
Vojtech Bocek | ede51c5 | 2014-02-07 23:58:09 +0100 | [diff] [blame] | 107 | if(!isConditionTrue()) |
| 108 | return 0; |
| 109 | |
Ethan Yonker | 0a3a98f | 2015-02-05 00:48:28 +0100 | [diff] [blame] | 110 | GUIScrollList::Update(); |
Dees_Troy | eead985 | 2013-02-15 14:31:06 -0600 | [diff] [blame] | 111 | |
Ethan Yonker | 0a3a98f | 2015-02-05 00:48:28 +0100 | [diff] [blame] | 112 | if (mUpdate) { |
Dees_Troy | eead985 | 2013-02-15 14:31:06 -0600 | [diff] [blame] | 113 | mUpdate = 0; |
| 114 | if (Render() == 0) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 115 | return 2; |
Dees_Troy | eead985 | 2013-02-15 14:31:06 -0600 | [diff] [blame] | 116 | } |
Dees_Troy | eead985 | 2013-02-15 14:31:06 -0600 | [diff] [blame] | 117 | return 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 118 | } |
| 119 | |
Vojtech Bocek | 0722056 | 2014-02-08 02:05:33 +0100 | [diff] [blame] | 120 | int GUIListBox::NotifyVarChange(const std::string& varName, const std::string& value) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 121 | { |
that | fa30aca | 2015-02-13 01:22:22 +0100 | [diff] [blame] | 122 | GUIScrollList::NotifyVarChange(varName, value); |
| 123 | |
Vojtech Bocek | ede51c5 | 2014-02-07 23:58:09 +0100 | [diff] [blame] | 124 | if(!isConditionTrue()) |
| 125 | return 0; |
| 126 | |
Ethan Yonker | 0a3a98f | 2015-02-05 00:48:28 +0100 | [diff] [blame] | 127 | // Check to see if the variable that we are using to store the list selected value has been updated |
| 128 | if (varName == mVariable) { |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 129 | currentValue = value; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 130 | mUpdate = 1; |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 131 | } |
that | 8ab5c13 | 2015-09-13 23:00:54 +0200 | [diff] [blame] | 132 | |
| 133 | std::vector<size_t> mVisibleItemsOld; |
| 134 | std::swap(mVisibleItemsOld, mVisibleItems); |
| 135 | for (size_t i = 0; i < mListItems.size(); i++) { |
| 136 | ListItem& item = mListItems[i]; |
| 137 | // update per-item visibility condition |
| 138 | bool itemVisible = UpdateConditions(item.mConditions, varName); |
| 139 | if (itemVisible) |
| 140 | mVisibleItems.push_back(i); |
| 141 | |
| 142 | if (isCheckList) |
| 143 | { |
that | 35f1740 | 2015-11-02 20:15:07 +0100 | [diff] [blame] | 144 | if (item.variableName == varName || varName.empty()) { |
| 145 | std::string val; |
| 146 | DataManager::GetValue(item.variableName, val); |
| 147 | item.selected = (val != "0"); |
that | 8ab5c13 | 2015-09-13 23:00:54 +0200 | [diff] [blame] | 148 | mUpdate = 1; |
| 149 | } |
| 150 | } |
| 151 | else if (varName == mVariable) { |
| 152 | if (item.variableValue == currentValue) { |
| 153 | item.selected = 1; |
| 154 | SetVisibleListLocation(mVisibleItems.empty() ? 0 : mVisibleItems.size()-1); |
| 155 | } else { |
| 156 | item.selected = 0; |
| 157 | } |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | if (mVisibleItemsOld != mVisibleItems) { |
| 162 | mUpdate = 1; // some item's visibility has changed |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 163 | if (firstDisplayedItem >= (int)mVisibleItems.size()) { |
that | 8ab5c13 | 2015-09-13 23:00:54 +0200 | [diff] [blame] | 164 | // all items in the view area were removed - make last item visible |
| 165 | SetVisibleListLocation(mVisibleItems.empty() ? 0 : mVisibleItems.size()-1); |
| 166 | } |
| 167 | } |
| 168 | |
Dees_Troy | eead985 | 2013-02-15 14:31:06 -0600 | [diff] [blame] | 169 | return 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 170 | } |
| 171 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 172 | void GUIListBox::SetPageFocus(int inFocus) |
| 173 | { |
Ethan Yonker | 0a3a98f | 2015-02-05 00:48:28 +0100 | [diff] [blame] | 174 | GUIScrollList::SetPageFocus(inFocus); |
| 175 | if (inFocus) { |
Dees_Troy | eead985 | 2013-02-15 14:31:06 -0600 | [diff] [blame] | 176 | DataManager::GetValue(mVariable, currentValue); |
| 177 | NotifyVarChange(mVariable, currentValue); |
Dees_Troy | eead985 | 2013-02-15 14:31:06 -0600 | [diff] [blame] | 178 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 179 | } |
Ethan Yonker | 0a3a98f | 2015-02-05 00:48:28 +0100 | [diff] [blame] | 180 | |
| 181 | size_t GUIListBox::GetItemCount() |
| 182 | { |
that | 8ab5c13 | 2015-09-13 23:00:54 +0200 | [diff] [blame] | 183 | return mVisibleItems.size(); |
Ethan Yonker | 0a3a98f | 2015-02-05 00:48:28 +0100 | [diff] [blame] | 184 | } |
| 185 | |
that | 0af7795 | 2015-02-25 08:52:19 +0100 | [diff] [blame] | 186 | void GUIListBox::RenderItem(size_t itemindex, int yPos, bool selected) |
Ethan Yonker | 0a3a98f | 2015-02-05 00:48:28 +0100 | [diff] [blame] | 187 | { |
that | 0af7795 | 2015-02-25 08:52:19 +0100 | [diff] [blame] | 188 | // note: the "selected" parameter above is for the currently touched item |
| 189 | // don't confuse it with the more persistent "selected" flag per list item used below |
that | 8ab5c13 | 2015-09-13 23:00:54 +0200 | [diff] [blame] | 190 | ListItem& item = mListItems[mVisibleItems[itemindex]]; |
| 191 | ImageResource* icon = item.selected ? mIconSelected : mIconUnselected; |
| 192 | const std::string& text = item.displayName; |
that | 0af7795 | 2015-02-25 08:52:19 +0100 | [diff] [blame] | 193 | |
| 194 | RenderStdItem(yPos, selected, icon, text.c_str()); |
Ethan Yonker | 0a3a98f | 2015-02-05 00:48:28 +0100 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | void GUIListBox::NotifySelect(size_t item_selected) |
| 198 | { |
Ethan Yonker | 56ce332 | 2015-07-30 15:04:32 -0500 | [diff] [blame] | 199 | if (!isCheckList) { |
that | 8ab5c13 | 2015-09-13 23:00:54 +0200 | [diff] [blame] | 200 | // deselect all items, even invisible ones |
| 201 | for (size_t i = 0; i < mListItems.size(); i++) { |
| 202 | mListItems[i].selected = 0; |
Ethan Yonker | 56ce332 | 2015-07-30 15:04:32 -0500 | [diff] [blame] | 203 | } |
Ethan Yonker | 0a3a98f | 2015-02-05 00:48:28 +0100 | [diff] [blame] | 204 | } |
that | 8ab5c13 | 2015-09-13 23:00:54 +0200 | [diff] [blame] | 205 | |
| 206 | ListItem& item = mListItems[mVisibleItems[item_selected]]; |
| 207 | |
| 208 | if (isCheckList) { |
| 209 | int selected = 1 - item.selected; |
| 210 | item.selected = selected; |
| 211 | DataManager::SetValue(item.variableName, selected ? "1" : "0"); |
| 212 | } else { |
| 213 | item.selected = 1; |
| 214 | string str = item.variableValue; // [check] should this set currentValue instead? |
| 215 | DataManager::SetValue(mVariable, str); |
Ethan Yonker | 0a3a98f | 2015-02-05 00:48:28 +0100 | [diff] [blame] | 216 | } |
that | 8ab5c13 | 2015-09-13 23:00:54 +0200 | [diff] [blame] | 217 | if (item.action) |
| 218 | item.action->doActions(); |
Ethan Yonker | 0a3a98f | 2015-02-05 00:48:28 +0100 | [diff] [blame] | 219 | mUpdate = 1; |
| 220 | } |