diff options
author | Dees Troy <dees_troy@teamw.in> | 2013-02-19 15:41:07 +0100 |
---|---|---|
committer | Gerrit Code Review <gerrit@5.9.244.119> | 2013-02-19 15:41:07 +0100 |
commit | 94a599f5758ee4e246175e923b74d845d5398aea (patch) | |
tree | f03053c9778c701ec2e3c6976aa43edf8ddcd0cd /gui/objects.hpp | |
parent | Merge "Add button highlight" into twrp2.4 (diff) | |
parent | Add highlight to file selector (diff) | |
download | android_bootable_recovery-94a599f5758ee4e246175e923b74d845d5398aea.tar android_bootable_recovery-94a599f5758ee4e246175e923b74d845d5398aea.tar.gz android_bootable_recovery-94a599f5758ee4e246175e923b74d845d5398aea.tar.bz2 android_bootable_recovery-94a599f5758ee4e246175e923b74d845d5398aea.tar.lz android_bootable_recovery-94a599f5758ee4e246175e923b74d845d5398aea.tar.xz android_bootable_recovery-94a599f5758ee4e246175e923b74d845d5398aea.tar.zst android_bootable_recovery-94a599f5758ee4e246175e923b74d845d5398aea.zip |
Diffstat (limited to 'gui/objects.hpp')
-rw-r--r-- | gui/objects.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gui/objects.hpp b/gui/objects.hpp index 78844e77b..3925a2757 100644 --- a/gui/objects.hpp +++ b/gui/objects.hpp @@ -481,6 +481,12 @@ protected: COLOR mHeaderFontColor; COLOR mSeparatorColor; COLOR mHeaderSeparatorColor; + bool hasHighlightColor; + bool hasFontHighlightColor; + bool isHighlighted; + COLOR mHighlightColor; + COLOR mFontHighlightColor; + int startSelection; }; class GUIListBox : public RenderObject, public ActionObject |