summaryrefslogtreecommitdiffstats
path: root/screen_ui.cpp
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2016-05-02 20:17:57 +0200
committerTianjie Xu <xunchang@google.com>2016-05-02 20:17:57 +0200
commit70b5353274a72109b7cb8b259f40075f073f35a0 (patch)
tree491b260014a699b690ce32b1a9554b14eb3705ed /screen_ui.cpp
parentMerge "recovery: Always log the update attempt. am: 5687001895 am: f13662a349" into nyc-mr1-dev-plus-aosp (diff)
parentMerge "Add ability to show "installing security update"" into nyc-dev (diff)
downloadandroid_bootable_recovery-70b5353274a72109b7cb8b259f40075f073f35a0.tar
android_bootable_recovery-70b5353274a72109b7cb8b259f40075f073f35a0.tar.gz
android_bootable_recovery-70b5353274a72109b7cb8b259f40075f073f35a0.tar.bz2
android_bootable_recovery-70b5353274a72109b7cb8b259f40075f073f35a0.tar.lz
android_bootable_recovery-70b5353274a72109b7cb8b259f40075f073f35a0.tar.xz
android_bootable_recovery-70b5353274a72109b7cb8b259f40075f073f35a0.tar.zst
android_bootable_recovery-70b5353274a72109b7cb8b259f40075f073f35a0.zip
Diffstat (limited to 'screen_ui.cpp')
-rw-r--r--screen_ui.cpp15
1 files changed, 14 insertions, 1 deletions
diff --git a/screen_ui.cpp b/screen_ui.cpp
index cd3671f55..369755438 100644
--- a/screen_ui.cpp
+++ b/screen_ui.cpp
@@ -425,6 +425,16 @@ static char** Alloc2d(size_t rows, size_t cols) {
return result;
}
+// Choose the right background string to display during update.
+void ScreenRecoveryUI::SetSystemUpdateText(bool security_update) {
+ if (security_update) {
+ LoadLocalizedBitmap("installing_security_text", &installing_text);
+ } else {
+ LoadLocalizedBitmap("installing_text", &installing_text);
+ }
+ Redraw();
+}
+
void ScreenRecoveryUI::Init() {
gr_init();
@@ -450,7 +460,10 @@ void ScreenRecoveryUI::Init() {
LoadBitmap("stage_empty", &stageMarkerEmpty);
LoadBitmap("stage_fill", &stageMarkerFill);
- LoadLocalizedBitmap("installing_text", &installing_text);
+ // Background text for "installing_update" could be "installing update"
+ // or "installing security update". It will be set after UI init according
+ // to commands in BCB.
+ installing_text = nullptr;
LoadLocalizedBitmap("erasing_text", &erasing_text);
LoadLocalizedBitmap("no_command_text", &no_command_text);
LoadLocalizedBitmap("error_text", &error_text);