diff options
author | Michael Runge <mrunge@google.com> | 2013-10-03 05:28:01 +0200 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-10-03 05:28:01 +0200 |
commit | f0af761369c5352f8ef9cd3c7a0db542924ef215 (patch) | |
tree | 506e43e105a8ab5190d1458c3d8a48592b12ed17 | |
parent | fix use of RGBA images in minui (diff) | |
parent | am a2a1ce82: Allow child classes to override the overlay location for the update image. (diff) | |
download | android_bootable_recovery-f0af761369c5352f8ef9cd3c7a0db542924ef215.tar android_bootable_recovery-f0af761369c5352f8ef9cd3c7a0db542924ef215.tar.gz android_bootable_recovery-f0af761369c5352f8ef9cd3c7a0db542924ef215.tar.bz2 android_bootable_recovery-f0af761369c5352f8ef9cd3c7a0db542924ef215.tar.lz android_bootable_recovery-f0af761369c5352f8ef9cd3c7a0db542924ef215.tar.xz android_bootable_recovery-f0af761369c5352f8ef9cd3c7a0db542924ef215.tar.zst android_bootable_recovery-f0af761369c5352f8ef9cd3c7a0db542924ef215.zip |
-rw-r--r-- | screen_ui.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/screen_ui.h b/screen_ui.h index 0bd220f74..fc35d95b6 100644 --- a/screen_ui.h +++ b/screen_ui.h @@ -58,6 +58,9 @@ class ScreenRecoveryUI : public RecoveryUI { enum UIElement { HEADER, MENU, MENU_SEL_BG, MENU_SEL_FG, LOG, TEXT_FILL }; virtual void SetColor(UIElement e); + protected: + int install_overlay_offset_x, install_overlay_offset_y; + private: Icon currentIcon; int installingFrame; @@ -99,7 +102,6 @@ class ScreenRecoveryUI : public RecoveryUI { int animation_fps; int indeterminate_frames; int installing_frames; - int install_overlay_offset_x, install_overlay_offset_y; int overlay_offset_x, overlay_offset_y; void draw_install_overlay_locked(int frame); |