diff options
author | Tianjie Xu <xunchang@google.com> | 2017-09-27 19:45:01 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-09-27 19:45:01 +0200 |
commit | 8874d3c3095a87ad546b7a7c84a7fa17c35a5f3a (patch) | |
tree | 4ce018893e091c21392e022432a50b4a84eb79cd /screen_ui.h | |
parent | Merge "clang-format: Remove the override of PenaltyExcessCharacter." (diff) | |
parent | Merge "Add a new option in recovery menu to test the background texts" (diff) | |
download | android_bootable_recovery-8874d3c3095a87ad546b7a7c84a7fa17c35a5f3a.tar android_bootable_recovery-8874d3c3095a87ad546b7a7c84a7fa17c35a5f3a.tar.gz android_bootable_recovery-8874d3c3095a87ad546b7a7c84a7fa17c35a5f3a.tar.bz2 android_bootable_recovery-8874d3c3095a87ad546b7a7c84a7fa17c35a5f3a.tar.lz android_bootable_recovery-8874d3c3095a87ad546b7a7c84a7fa17c35a5f3a.tar.xz android_bootable_recovery-8874d3c3095a87ad546b7a7c84a7fa17c35a5f3a.tar.zst android_bootable_recovery-8874d3c3095a87ad546b7a7c84a7fa17c35a5f3a.zip |
Diffstat (limited to 'screen_ui.h')
-rw-r--r-- | screen_ui.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/screen_ui.h b/screen_ui.h index eaac2a6e8..3a28a09de 100644 --- a/screen_ui.h +++ b/screen_ui.h @@ -80,6 +80,10 @@ class ScreenRecoveryUI : public RecoveryUI { void SetColor(UIElement e) const; + // Check the background text image. Use volume up/down button to cycle through the locales + // embedded in the png file, and power button to go back to recovery main menu. + void CheckBackgroundTextImages(const std::string& saved_locale); + protected: // The margin that we don't want to use for showing texts (e.g. round screen, or screen with // rounded corners). @@ -199,6 +203,10 @@ class ScreenRecoveryUI : public RecoveryUI { private: void SetLocale(const std::string&); + + // Display the background texts for "erasing", "error", "no_command" and "installing" for the + // selected locale. + void SelectAndShowBackgroundText(const std::vector<std::string>& locales_entries, size_t sel); }; #endif // RECOVERY_UI_H |