blob: ea1a95be1556c08c08e1d2461c86543f68cc48ec [file] [log] [blame]
Doug Zongker211aebc2011-10-28 15:13:10 -07001/*
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>
21
22#include "ui.h"
23#include "minui/minui.h"
24
25// Implementation of RecoveryUI appropriate for devices with a screen
26// (shows an icon + a progress bar, text logging, menu, etc.)
27class ScreenRecoveryUI : public RecoveryUI {
28 public:
29 ScreenRecoveryUI();
30
31 void Init();
Doug Zongker5fa8c232012-09-18 12:37:02 -070032 void SetLocale(const char* locale);
Doug Zongker211aebc2011-10-28 15:13:10 -070033
34 // overall recovery state ("background image")
35 void SetBackground(Icon icon);
36
37 // progress indicator
38 void SetProgressType(ProgressType type);
39 void ShowProgress(float portion, float seconds);
40 void SetProgress(float fraction);
41
Doug Zongkerc87bab12013-11-25 13:53:25 -080042 void SetStage(int current, int max);
43
Doug Zongker211aebc2011-10-28 15:13:10 -070044 // text log
45 void ShowText(bool visible);
46 bool IsTextVisible();
47 bool WasTextEverVisible();
48
Doug Zongker211aebc2011-10-28 15:13:10 -070049 // printing messages
Elliott Hughes018ed312015-04-08 16:51:36 -070050 void Print(const char* fmt, ...) __printflike(2, 3);
Elliott Hughes8de52072015-04-08 20:06:50 -070051 void ShowFile(const char* filename);
Doug Zongker211aebc2011-10-28 15:13:10 -070052
53 // menu display
54 void StartMenu(const char* const * headers, const char* const * items,
Elliott Hughes018ed312015-04-08 16:51:36 -070055 int initial_selection);
Doug Zongker211aebc2011-10-28 15:13:10 -070056 int SelectMenu(int sel);
57 void EndMenu();
58
Elliott Hughes642aaa72015-04-10 12:47:46 -070059 void KeyLongPress(int);
60
Doug Zongkerc0441d12013-07-31 11:28:24 -070061 void Redraw();
62
Elliott Hughes642aaa72015-04-10 12:47:46 -070063 enum UIElement { HEADER, MENU, MENU_SEL_BG, MENU_SEL_BG_ACTIVE, MENU_SEL_FG, LOG, TEXT_FILL };
64 void SetColor(UIElement e);
Doug Zongkerc0441d12013-07-31 11:28:24 -070065
Doug Zongker211aebc2011-10-28 15:13:10 -070066 private:
67 Icon currentIcon;
68 int installingFrame;
Doug Zongkera418aa72014-03-17 12:10:02 -070069 const char* locale;
Doug Zongker5fa8c232012-09-18 12:37:02 -070070 bool rtl_locale;
Doug Zongker211aebc2011-10-28 15:13:10 -070071
72 pthread_mutex_t updateMutex;
Doug Zongker02ec6b82012-08-22 17:26:40 -070073 gr_surface backgroundIcon[5];
74 gr_surface backgroundText[5];
Doug Zongkereac881c2014-03-07 09:21:25 -080075 gr_surface *installation;
Doug Zongker211aebc2011-10-28 15:13:10 -070076 gr_surface progressBarEmpty;
77 gr_surface progressBarFill;
Doug Zongkerc87bab12013-11-25 13:53:25 -080078 gr_surface stageMarkerEmpty;
79 gr_surface stageMarkerFill;
Doug Zongker211aebc2011-10-28 15:13:10 -070080
81 ProgressType progressBarType;
82
83 float progressScopeStart, progressScopeSize, progress;
84 double progressScopeTime, progressScopeDuration;
85
Elliott Hughes8de52072015-04-08 20:06:50 -070086 // true when both graphics pages are the same (except for the progress bar).
Doug Zongker211aebc2011-10-28 15:13:10 -070087 bool pagesIdentical;
88
Elliott Hughes8de52072015-04-08 20:06:50 -070089 // Log text overlay, displayed when a magic key is pressed.
Elliott Hughesaa0d6af2015-04-08 12:42:50 -070090 char** text;
91 size_t text_cols, text_rows;
92 size_t text_col, text_row, text_top;
Doug Zongker211aebc2011-10-28 15:13:10 -070093 bool show_text;
94 bool show_text_ever; // has show_text ever been true?
95
Elliott Hughesaa0d6af2015-04-08 12:42:50 -070096 char** menu;
Doug Zongker211aebc2011-10-28 15:13:10 -070097 bool show_menu;
98 int menu_top, menu_items, menu_sel;
99
Doug Zongker211aebc2011-10-28 15:13:10 -0700100 pthread_t progress_t;
Doug Zongker32a0a472011-11-01 11:00:20 -0700101
102 int animation_fps;
Doug Zongker32a0a472011-11-01 11:00:20 -0700103 int installing_frames;
Doug Zongkereac881c2014-03-07 09:21:25 -0800104
105 int iconX, iconY;
Doug Zongker211aebc2011-10-28 15:13:10 -0700106
Doug Zongkerc87bab12013-11-25 13:53:25 -0800107 int stage, max_stage;
108
Doug Zongker211aebc2011-10-28 15:13:10 -0700109 void draw_background_locked(Icon icon);
110 void draw_progress_locked();
Doug Zongker211aebc2011-10-28 15:13:10 -0700111 void draw_screen_locked();
112 void update_screen_locked();
113 void update_progress_locked();
114 static void* progress_thread(void* cookie);
Doug Zongker32a0a472011-11-01 11:00:20 -0700115 void progress_loop();
Doug Zongker211aebc2011-10-28 15:13:10 -0700116
Elliott Hughes8de52072015-04-08 20:06:50 -0700117 void print_no_update(const char*);
118
Doug Zongker211aebc2011-10-28 15:13:10 -0700119 void LoadBitmap(const char* filename, gr_surface* surface);
Doug Zongkereac881c2014-03-07 09:21:25 -0800120 void LoadBitmapArray(const char* filename, int* frames, gr_surface** surface);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700121 void LoadLocalizedBitmap(const char* filename, gr_surface* surface);
Doug Zongker211aebc2011-10-28 15:13:10 -0700122};
123
124#endif // RECOVERY_UI_H