diff options
author | Elliott Hughes <enh@google.com> | 2015-04-09 20:24:45 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-04-09 20:24:45 +0200 |
commit | 52222a58417e7e6349e91e19e4f5e293a3a971c5 (patch) | |
tree | 07456a6307d1804376d51214e49698e2887ac1be /screen_ui.h | |
parent | Merge "Enable printf format argument checking." (diff) | |
parent | Move file paging into ScreenRecoveryUI. (diff) | |
download | android_bootable_recovery-52222a58417e7e6349e91e19e4f5e293a3a971c5.tar android_bootable_recovery-52222a58417e7e6349e91e19e4f5e293a3a971c5.tar.gz android_bootable_recovery-52222a58417e7e6349e91e19e4f5e293a3a971c5.tar.bz2 android_bootable_recovery-52222a58417e7e6349e91e19e4f5e293a3a971c5.tar.lz android_bootable_recovery-52222a58417e7e6349e91e19e4f5e293a3a971c5.tar.xz android_bootable_recovery-52222a58417e7e6349e91e19e4f5e293a3a971c5.tar.zst android_bootable_recovery-52222a58417e7e6349e91e19e4f5e293a3a971c5.zip |
Diffstat (limited to '')
-rw-r--r-- | screen_ui.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/screen_ui.h b/screen_ui.h index 82647ac75..41ff4af11 100644 --- a/screen_ui.h +++ b/screen_ui.h @@ -48,6 +48,7 @@ class ScreenRecoveryUI : public RecoveryUI { // printing messages void Print(const char* fmt, ...) __printflike(2, 3); + void ShowFile(const char* filename); // menu display void StartMenu(const char* const * headers, const char* const * items, @@ -80,11 +81,10 @@ class ScreenRecoveryUI : public RecoveryUI { float progressScopeStart, progressScopeSize, progress; double progressScopeTime, progressScopeDuration; - // true when both graphics pages are the same (except for the - // progress bar) + // true when both graphics pages are the same (except for the progress bar). bool pagesIdentical; - // Log text overlay, displayed when a magic key is pressed + // Log text overlay, displayed when a magic key is pressed. char** text; size_t text_cols, text_rows; size_t text_col, text_row, text_top; @@ -112,6 +112,8 @@ class ScreenRecoveryUI : public RecoveryUI { static void* progress_thread(void* cookie); void progress_loop(); + void print_no_update(const char*); + void LoadBitmap(const char* filename, gr_surface* surface); void LoadBitmapArray(const char* filename, int* frames, gr_surface** surface); void LoadLocalizedBitmap(const char* filename, gr_surface* surface); |