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 | |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 23 | #include <functional> |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 24 | #include <memory> |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 25 | #include <string> |
Tao Bao | e15d7a5 | 2017-09-07 13:38:51 -0700 | [diff] [blame] | 26 | #include <vector> |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 27 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 28 | #include "ui.h" |
Tao Bao | 0ecbd76 | 2017-01-16 21:16:58 -0800 | [diff] [blame] | 29 | |
| 30 | // From minui/minui.h. |
| 31 | struct GRSurface; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 32 | |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 33 | // This class maintains the menu selection and display of the screen ui. |
| 34 | class Menu { |
| 35 | public: |
Tao Bao | e02a5b2 | 2018-05-02 15:46:11 -0700 | [diff] [blame] | 36 | // Constructs a Menu instance with the given |headers|, |items| and properties. Sets the initial |
| 37 | // selection to |initial_selection|. |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 38 | Menu(bool scrollable, size_t max_items, size_t max_length, |
| 39 | const std::vector<std::string>& headers, const std::vector<std::string>& items, |
| 40 | size_t initial_selection); |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 41 | |
| 42 | bool scrollable() const { |
| 43 | return scrollable_; |
| 44 | } |
| 45 | |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 46 | size_t selection() const { |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 47 | return selection_; |
| 48 | } |
| 49 | |
| 50 | // Returns count of menu items. |
| 51 | size_t ItemsCount() const; |
Tao Bao | e02a5b2 | 2018-05-02 15:46:11 -0700 | [diff] [blame] | 52 | |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 53 | // Returns the index of the first menu item. |
| 54 | size_t MenuStart() const; |
Tao Bao | e02a5b2 | 2018-05-02 15:46:11 -0700 | [diff] [blame] | 55 | |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 56 | // Returns the index of the last menu item + 1. |
| 57 | size_t MenuEnd() const; |
| 58 | |
| 59 | // Menu example: |
| 60 | // info: Android Recovery |
| 61 | // .... |
| 62 | // help messages: Swipe up/down to move |
| 63 | // Swipe left/right to select |
| 64 | // empty line (horizontal rule): |
| 65 | // menu headers: Select file to view |
| 66 | // menu items: /cache/recovery/last_log |
| 67 | // /cache/recovery/last_log.1 |
| 68 | // /cache/recovery/last_log.2 |
| 69 | // ... |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 70 | const std::vector<std::string>& text_headers() const; |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 71 | std::string TextItem(size_t index) const; |
| 72 | |
| 73 | // Checks if the menu items fit vertically on the screen. Returns true and set the |
| 74 | // |cur_selection_str| if the items exceed the screen limit. |
| 75 | bool ItemsOverflow(std::string* cur_selection_str) const; |
| 76 | |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 77 | // Sets the current selection to |sel|. Handle the overflow cases depending on if the menu is |
| 78 | // scrollable. |
| 79 | int Select(int sel); |
| 80 | |
| 81 | private: |
| 82 | // The menu is scrollable to display more items. Used on wear devices who have smaller screens. |
| 83 | const bool scrollable_; |
| 84 | // The max number of menu items to fit vertically on a screen. |
| 85 | const size_t max_display_items_; |
| 86 | // The length of each item to fit horizontally on a screen. |
| 87 | const size_t max_item_length_; |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 88 | // The menu headers. |
| 89 | std::vector<std::string> text_headers_; |
| 90 | // The actual menu items trimmed to fit the given properties. |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 91 | std::vector<std::string> text_items_; |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 92 | // The first item to display on the screen. |
| 93 | size_t menu_start_; |
| 94 | // Current menu selection. |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 95 | size_t selection_; |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 96 | }; |
| 97 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 98 | // Implementation of RecoveryUI appropriate for devices with a screen |
| 99 | // (shows an icon + a progress bar, text logging, menu, etc.) |
| 100 | class ScreenRecoveryUI : public RecoveryUI { |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 101 | public: |
Tao Bao | 7577965 | 2017-09-10 11:28:32 -0700 | [diff] [blame] | 102 | enum UIElement { |
| 103 | HEADER, |
| 104 | MENU, |
| 105 | MENU_SEL_BG, |
| 106 | MENU_SEL_BG_ACTIVE, |
| 107 | MENU_SEL_FG, |
| 108 | LOG, |
| 109 | TEXT_FILL, |
| 110 | INFO |
| 111 | }; |
| 112 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 113 | ScreenRecoveryUI(); |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 114 | explicit ScreenRecoveryUI(bool scrollable_menu); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 115 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 116 | bool Init(const std::string& locale) override; |
Jerry Zhang | 2dea53e | 2018-05-02 17:15:03 -0700 | [diff] [blame] | 117 | std::string GetLocale() override; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 118 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 119 | // overall recovery state ("background image") |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 120 | void SetBackground(Icon icon) override; |
| 121 | void SetSystemUpdateText(bool security_update) override; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 122 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 123 | // progress indicator |
| 124 | void SetProgressType(ProgressType type) override; |
| 125 | void ShowProgress(float portion, float seconds) override; |
| 126 | void SetProgress(float fraction) override; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 127 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 128 | void SetStage(int current, int max) override; |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 129 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 130 | // text log |
| 131 | void ShowText(bool visible) override; |
| 132 | bool IsTextVisible() override; |
| 133 | bool WasTextEverVisible() override; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 134 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 135 | // printing messages |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 136 | void Print(const char* fmt, ...) override __printflike(2, 3); |
| 137 | void PrintOnScreenOnly(const char* fmt, ...) override __printflike(2, 3); |
Tao Bao | 1d156b9 | 2018-05-02 12:43:18 -0700 | [diff] [blame] | 138 | void ShowFile(const std::string& filename) override; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 139 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 140 | // menu display |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 141 | size_t ShowMenu(const std::vector<std::string>& headers, const std::vector<std::string>& items, |
| 142 | size_t initial_selection, bool menu_only, |
| 143 | const std::function<int(int, bool)>& key_handler) override; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 144 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 145 | void KeyLongPress(int) override; |
Elliott Hughes | 642aaa7 | 2015-04-10 12:47:46 -0700 | [diff] [blame] | 146 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 147 | void Redraw(); |
Doug Zongker | c0441d1 | 2013-07-31 11:28:24 -0700 | [diff] [blame] | 148 | |
Tao Bao | 99b2d77 | 2017-06-23 22:47:03 -0700 | [diff] [blame] | 149 | void SetColor(UIElement e) const; |
Doug Zongker | c0441d1 | 2013-07-31 11:28:24 -0700 | [diff] [blame] | 150 | |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 151 | // Check the background text image. Use volume up/down button to cycle through the locales |
| 152 | // embedded in the png file, and power button to go back to recovery main menu. |
| 153 | void CheckBackgroundTextImages(const std::string& saved_locale); |
| 154 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 155 | protected: |
| 156 | // The margin that we don't want to use for showing texts (e.g. round screen, or screen with |
| 157 | // rounded corners). |
| 158 | const int kMarginWidth; |
| 159 | const int kMarginHeight; |
Tao Bao | 4521b70 | 2017-06-20 18:11:21 -0700 | [diff] [blame] | 160 | |
Tao Bao | 0470cee | 2017-08-02 17:11:04 -0700 | [diff] [blame] | 161 | // Number of frames per sec (default: 30) for both parts of the animation. |
| 162 | const int kAnimationFps; |
| 163 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 164 | // The scale factor from dp to pixels. 1.0 for mdpi, 4.0 for xxxhdpi. |
Tao Bao | 7577965 | 2017-09-10 11:28:32 -0700 | [diff] [blame] | 165 | const float kDensity; |
| 166 | |
| 167 | virtual bool InitTextParams(); |
| 168 | |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 169 | // Displays some header text followed by a menu of items, which appears at the top of the screen |
| 170 | // (in place of any scrolling ui_print() output, if necessary). |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 171 | virtual void StartMenu(const std::vector<std::string>& headers, |
| 172 | const std::vector<std::string>& items, size_t initial_selection); |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 173 | |
| 174 | // Sets the menu highlight to the given index, wrapping if necessary. Returns the actual item |
| 175 | // selected. |
| 176 | virtual int SelectMenu(int sel); |
| 177 | |
| 178 | // Ends menu mode, resetting the text overlay so that ui_print() statements will be displayed. |
| 179 | virtual void EndMenu(); |
| 180 | |
Tao Bao | 7577965 | 2017-09-10 11:28:32 -0700 | [diff] [blame] | 181 | virtual void draw_background_locked(); |
| 182 | virtual void draw_foreground_locked(); |
| 183 | virtual void draw_screen_locked(); |
Tao Bao | 93e46ad | 2018-05-02 14:57:21 -0700 | [diff] [blame] | 184 | virtual void draw_menu_and_text_buffer_locked(const std::vector<std::string>& help_message); |
Tao Bao | 7577965 | 2017-09-10 11:28:32 -0700 | [diff] [blame] | 185 | virtual void update_screen_locked(); |
| 186 | virtual void update_progress_locked(); |
| 187 | |
| 188 | GRSurface* GetCurrentFrame() const; |
| 189 | GRSurface* GetCurrentText() const; |
| 190 | |
| 191 | static void* ProgressThreadStartRoutine(void* data); |
| 192 | void ProgressThreadLoop(); |
| 193 | |
| 194 | virtual void ShowFile(FILE*); |
| 195 | virtual void PrintV(const char*, bool, va_list); |
| 196 | void PutChar(char); |
| 197 | void ClearText(); |
| 198 | |
| 199 | void LoadAnimation(); |
| 200 | void LoadBitmap(const char* filename, GRSurface** surface); |
| 201 | void LoadLocalizedBitmap(const char* filename, GRSurface** surface); |
| 202 | |
| 203 | int PixelsFromDp(int dp) const; |
| 204 | virtual int GetAnimationBaseline() const; |
| 205 | virtual int GetProgressBaseline() const; |
| 206 | virtual int GetTextBaseline() const; |
| 207 | |
Luke Song | 92eda4d | 2017-09-19 10:51:35 -0700 | [diff] [blame] | 208 | // Returns pixel width of draw buffer. |
| 209 | virtual int ScreenWidth() const; |
| 210 | // Returns pixel height of draw buffer. |
| 211 | virtual int ScreenHeight() const; |
| 212 | |
Tao Bao | 7577965 | 2017-09-10 11:28:32 -0700 | [diff] [blame] | 213 | // Draws a highlight bar at (x, y) - (x + width, y + height). |
| 214 | virtual void DrawHighlightBar(int x, int y, int width, int height) const; |
| 215 | // Draws a horizontal rule at Y. Returns the offset it should be moving along Y-axis. |
| 216 | virtual int DrawHorizontalRule(int y) const; |
| 217 | // Draws a line of text. Returns the offset it should be moving along Y-axis. |
Tao Bao | 93e46ad | 2018-05-02 14:57:21 -0700 | [diff] [blame] | 218 | virtual int DrawTextLine(int x, int y, const std::string& line, bool bold) const; |
Luke Song | 92eda4d | 2017-09-19 10:51:35 -0700 | [diff] [blame] | 219 | // Draws surface portion (sx, sy, w, h) at screen location (dx, dy). |
| 220 | virtual void DrawSurface(GRSurface* surface, int sx, int sy, int w, int h, int dx, int dy) const; |
| 221 | // Draws rectangle at (x, y) - (x + w, y + h). |
| 222 | virtual void DrawFill(int x, int y, int w, int h) const; |
| 223 | // Draws given surface (surface->pixel_bytes = 1) as text at (x, y). |
| 224 | virtual void DrawTextIcon(int x, int y, GRSurface* surface) const; |
Tao Bao | 7577965 | 2017-09-10 11:28:32 -0700 | [diff] [blame] | 225 | // Draws multiple text lines. Returns the offset it should be moving along Y-axis. |
Tao Bao | 93e46ad | 2018-05-02 14:57:21 -0700 | [diff] [blame] | 226 | int DrawTextLines(int x, int y, const std::vector<std::string>& lines) const; |
Tao Bao | 7577965 | 2017-09-10 11:28:32 -0700 | [diff] [blame] | 227 | // Similar to DrawTextLines() to draw multiple text lines, but additionally wraps long lines. |
| 228 | // Returns the offset it should be moving along Y-axis. |
Tao Bao | 93e46ad | 2018-05-02 14:57:21 -0700 | [diff] [blame] | 229 | int DrawWrappedTextLines(int x, int y, const std::vector<std::string>& lines) const; |
Tao Bao | 171b4c4 | 2017-06-19 23:10:44 -0700 | [diff] [blame] | 230 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 231 | Icon currentIcon; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 232 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 233 | // The layout to use. |
| 234 | int layout_; |
Elliott Hughes | faf36e0 | 2016-04-20 17:22:16 -0700 | [diff] [blame] | 235 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 236 | GRSurface* error_icon; |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 237 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 238 | GRSurface* erasing_text; |
| 239 | GRSurface* error_text; |
| 240 | GRSurface* installing_text; |
| 241 | GRSurface* no_command_text; |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 242 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 243 | GRSurface** introFrames; |
| 244 | GRSurface** loopFrames; |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 245 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 246 | GRSurface* progressBarEmpty; |
| 247 | GRSurface* progressBarFill; |
| 248 | GRSurface* stageMarkerEmpty; |
| 249 | GRSurface* stageMarkerFill; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 250 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 251 | ProgressType progressBarType; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 252 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 253 | float progressScopeStart, progressScopeSize, progress; |
| 254 | double progressScopeTime, progressScopeDuration; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 255 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 256 | // true when both graphics pages are the same (except for the progress bar). |
| 257 | bool pagesIdentical; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 258 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 259 | size_t text_cols_, text_rows_; |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 260 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 261 | // Log text overlay, displayed when a magic key is pressed. |
| 262 | char** text_; |
Tao Bao | cb5524c | 2017-09-08 21:25:32 -0700 | [diff] [blame] | 263 | size_t text_col_, text_row_; |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 264 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 265 | bool show_text; |
| 266 | bool show_text_ever; // has show_text ever been true? |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 267 | |
Tianjie Xu | 5fe5eb6 | 2018-03-20 16:07:39 -0700 | [diff] [blame] | 268 | bool scrollable_menu_; |
| 269 | std::unique_ptr<Menu> menu_; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 270 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 271 | // An alternate text screen, swapped with 'text_' when we're viewing a log file. |
| 272 | char** file_viewer_text_; |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 273 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 274 | pthread_t progress_thread_; |
Doug Zongker | 32a0a47 | 2011-11-01 11:00:20 -0700 | [diff] [blame] | 275 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 276 | // Number of intro frames and loop frames in the animation. |
| 277 | size_t intro_frames; |
| 278 | size_t loop_frames; |
Damien Bargiacchi | 5e7cfb9 | 2016-08-24 18:28:43 -0700 | [diff] [blame] | 279 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 280 | size_t current_frame; |
| 281 | bool intro_done; |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 282 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 283 | int stage, max_stage; |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 284 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 285 | int char_width_; |
| 286 | int char_height_; |
Tao Bao | 171b4c4 | 2017-06-19 23:10:44 -0700 | [diff] [blame] | 287 | |
Tao Bao | efb49ad | 2017-01-31 23:03:10 -0800 | [diff] [blame] | 288 | // The locale that's used to show the rendered texts. |
| 289 | std::string locale_; |
| 290 | bool rtl_locale_; |
| 291 | |
Tao Bao | 5d2e3bd | 2017-06-23 22:23:50 -0700 | [diff] [blame] | 292 | pthread_mutex_t updateMutex; |
Tao Bao | efb49ad | 2017-01-31 23:03:10 -0800 | [diff] [blame] | 293 | |
| 294 | private: |
| 295 | void SetLocale(const std::string&); |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 296 | |
| 297 | // Display the background texts for "erasing", "error", "no_command" and "installing" for the |
| 298 | // selected locale. |
| 299 | void SelectAndShowBackgroundText(const std::vector<std::string>& locales_entries, size_t sel); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 300 | }; |
| 301 | |
| 302 | #endif // RECOVERY_UI_H |