Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef RECOVERY_SCREEN_UI_H |
| 18 | #define RECOVERY_SCREEN_UI_H |
| 19 | |
| 20 | #include <pthread.h> |
Elliott Hughes | 95fc63e | 2015-04-10 19:12:01 -0700 | [diff] [blame] | 21 | #include <stdio.h> |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 22 | |
| 23 | #include "ui.h" |
| 24 | #include "minui/minui.h" |
| 25 | |
| 26 | // Implementation of RecoveryUI appropriate for devices with a screen |
| 27 | // (shows an icon + a progress bar, text logging, menu, etc.) |
| 28 | class ScreenRecoveryUI : public RecoveryUI { |
| 29 | public: |
| 30 | ScreenRecoveryUI(); |
| 31 | |
| 32 | void Init(); |
Doug Zongker | 5fa8c23 | 2012-09-18 12:37:02 -0700 | [diff] [blame] | 33 | void SetLocale(const char* locale); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 34 | |
| 35 | // overall recovery state ("background image") |
| 36 | void SetBackground(Icon icon); |
| 37 | |
| 38 | // progress indicator |
| 39 | void SetProgressType(ProgressType type); |
| 40 | void ShowProgress(float portion, float seconds); |
| 41 | void SetProgress(float fraction); |
| 42 | |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 43 | void SetStage(int current, int max); |
| 44 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 45 | // text log |
| 46 | void ShowText(bool visible); |
| 47 | bool IsTextVisible(); |
| 48 | bool WasTextEverVisible(); |
| 49 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 50 | // printing messages |
Elliott Hughes | 018ed31 | 2015-04-08 16:51:36 -0700 | [diff] [blame] | 51 | void Print(const char* fmt, ...) __printflike(2, 3); |
Tao Bao | b6918c7 | 2015-05-19 17:02:16 -0700 | [diff] [blame] | 52 | void PrintOnScreenOnly(const char* fmt, ...) __printflike(2, 3); |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 53 | void ShowFile(const char* filename); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 54 | |
| 55 | // menu display |
| 56 | void StartMenu(const char* const * headers, const char* const * items, |
Elliott Hughes | 018ed31 | 2015-04-08 16:51:36 -0700 | [diff] [blame] | 57 | int initial_selection); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 58 | int SelectMenu(int sel); |
| 59 | void EndMenu(); |
| 60 | |
Elliott Hughes | 642aaa7 | 2015-04-10 12:47:46 -0700 | [diff] [blame] | 61 | void KeyLongPress(int); |
| 62 | |
Doug Zongker | c0441d1 | 2013-07-31 11:28:24 -0700 | [diff] [blame] | 63 | void Redraw(); |
| 64 | |
Elliott Hughes | 8fd86d7 | 2015-04-13 14:36:02 -0700 | [diff] [blame] | 65 | enum UIElement { |
| 66 | HEADER, MENU, MENU_SEL_BG, MENU_SEL_BG_ACTIVE, MENU_SEL_FG, LOG, TEXT_FILL, INFO |
| 67 | }; |
Elliott Hughes | 642aaa7 | 2015-04-10 12:47:46 -0700 | [diff] [blame] | 68 | void SetColor(UIElement e); |
Doug Zongker | c0441d1 | 2013-07-31 11:28:24 -0700 | [diff] [blame] | 69 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 70 | private: |
| 71 | Icon currentIcon; |
| 72 | int installingFrame; |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 73 | const char* locale; |
Doug Zongker | 5fa8c23 | 2012-09-18 12:37:02 -0700 | [diff] [blame] | 74 | bool rtl_locale; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 75 | |
| 76 | pthread_mutex_t updateMutex; |
Elliott Hughes | 0a5cb0c | 2015-04-15 10:58:56 -0700 | [diff] [blame] | 77 | GRSurface* backgroundIcon[5]; |
| 78 | GRSurface* backgroundText[5]; |
| 79 | GRSurface** installation; |
| 80 | GRSurface* progressBarEmpty; |
| 81 | GRSurface* progressBarFill; |
| 82 | GRSurface* stageMarkerEmpty; |
| 83 | GRSurface* stageMarkerFill; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 84 | |
| 85 | ProgressType progressBarType; |
| 86 | |
| 87 | float progressScopeStart, progressScopeSize, progress; |
| 88 | double progressScopeTime, progressScopeDuration; |
| 89 | |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 90 | // true when both graphics pages are the same (except for the progress bar). |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 91 | bool pagesIdentical; |
| 92 | |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 93 | size_t text_cols_, text_rows_; |
| 94 | |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 95 | // Log text overlay, displayed when a magic key is pressed. |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 96 | char** text_; |
| 97 | size_t text_col_, text_row_, text_top_; |
| 98 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 99 | bool show_text; |
| 100 | bool show_text_ever; // has show_text ever been true? |
| 101 | |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 102 | char** menu_; |
| 103 | const char* const* menu_headers_; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 104 | bool show_menu; |
Elliott Hughes | 8fd86d7 | 2015-04-13 14:36:02 -0700 | [diff] [blame] | 105 | int menu_items, menu_sel; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 106 | |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 107 | // An alternate text screen, swapped with 'text_' when we're viewing a log file. |
| 108 | char** file_viewer_text_; |
| 109 | |
Elliott Hughes | 985022a | 2015-04-13 13:04:32 -0700 | [diff] [blame] | 110 | pthread_t progress_thread_; |
Doug Zongker | 32a0a47 | 2011-11-01 11:00:20 -0700 | [diff] [blame] | 111 | |
Tao Bao | b723f4f | 2015-12-11 15:18:51 -0800 | [diff] [blame] | 112 | // The following two are parsed from the image file |
| 113 | // (e.g. '/res/images/icon_installing.png'). |
Doug Zongker | 32a0a47 | 2011-11-01 11:00:20 -0700 | [diff] [blame] | 114 | int animation_fps; |
Doug Zongker | 32a0a47 | 2011-11-01 11:00:20 -0700 | [diff] [blame] | 115 | int installing_frames; |
Doug Zongker | eac881c | 2014-03-07 09:21:25 -0800 | [diff] [blame] | 116 | |
| 117 | int iconX, iconY; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 118 | |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 119 | int stage, max_stage; |
| 120 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 121 | void draw_background_locked(Icon icon); |
| 122 | void draw_progress_locked(); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 123 | void draw_screen_locked(); |
| 124 | void update_screen_locked(); |
| 125 | void update_progress_locked(); |
Elliott Hughes | 985022a | 2015-04-13 13:04:32 -0700 | [diff] [blame] | 126 | |
| 127 | static void* ProgressThreadStartRoutine(void* data); |
| 128 | void ProgressThreadLoop(); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 129 | |
Elliott Hughes | 95fc63e | 2015-04-10 19:12:01 -0700 | [diff] [blame] | 130 | void ShowFile(FILE*); |
Tao Bao | b6918c7 | 2015-05-19 17:02:16 -0700 | [diff] [blame] | 131 | void PrintV(const char*, bool, va_list); |
Elliott Hughes | 95fc63e | 2015-04-10 19:12:01 -0700 | [diff] [blame] | 132 | void PutChar(char); |
| 133 | void ClearText(); |
| 134 | |
| 135 | void DrawHorizontalRule(int* y); |
Elliott Hughes | 8fd86d7 | 2015-04-13 14:36:02 -0700 | [diff] [blame] | 136 | void DrawTextLine(int* y, const char* line, bool bold); |
| 137 | void DrawTextLines(int* y, const char* const* lines); |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 138 | |
Elliott Hughes | 0a5cb0c | 2015-04-15 10:58:56 -0700 | [diff] [blame] | 139 | void LoadBitmap(const char* filename, GRSurface** surface); |
Tao Bao | b723f4f | 2015-12-11 15:18:51 -0800 | [diff] [blame] | 140 | void LoadBitmapArray(const char* filename, int* frames, int* fps, GRSurface*** surface); |
Elliott Hughes | 0a5cb0c | 2015-04-15 10:58:56 -0700 | [diff] [blame] | 141 | void LoadLocalizedBitmap(const char* filename, GRSurface** surface); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 142 | }; |
| 143 | |
| 144 | #endif // RECOVERY_UI_H |