summaryrefslogtreecommitdiffstats
path: root/gui/objects.hpp
diff options
context:
space:
mode:
authorDees Troy <dees_troy@teamw.in>2013-02-19 15:40:49 +0100
committerGerrit Code Review <gerrit@5.9.244.119>2013-02-19 15:40:49 +0100
commitc4517b2042899851d86997201b68ae9236528fb5 (patch)
tree17cd7ecebafab01d09cc1bd247acc00dac13739a /gui/objects.hpp
parentThis adds a 60 second screen timeout for TWRP. Might consider making this configurable in the future. (diff)
parentAdd button highlight (diff)
downloadandroid_bootable_recovery-c4517b2042899851d86997201b68ae9236528fb5.tar
android_bootable_recovery-c4517b2042899851d86997201b68ae9236528fb5.tar.gz
android_bootable_recovery-c4517b2042899851d86997201b68ae9236528fb5.tar.bz2
android_bootable_recovery-c4517b2042899851d86997201b68ae9236528fb5.tar.lz
android_bootable_recovery-c4517b2042899851d86997201b68ae9236528fb5.tar.xz
android_bootable_recovery-c4517b2042899851d86997201b68ae9236528fb5.tar.zst
android_bootable_recovery-c4517b2042899851d86997201b68ae9236528fb5.zip
Diffstat (limited to 'gui/objects.hpp')
-rw-r--r--gui/objects.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/gui/objects.hpp b/gui/objects.hpp
index c310b369a..78844e77b 100644
--- a/gui/objects.hpp
+++ b/gui/objects.hpp
@@ -355,6 +355,9 @@ protected:
int mTextX, mTextY, mTextW, mTextH;
int mIconX, mIconY, mIconW, mIconH;
bool mRendered;
+ bool hasHighlightColor;
+ bool renderHighlight;
+ COLOR mHighlightColor;
};
class GUICheckbox: public RenderObject, public ActionObject, public Conditional