blob: 50a456425b4332cb2eb438a71a82d1db56eaed4e [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>
Elliott Hughes95fc63e2015-04-10 19:12:01 -070021#include <stdio.h>
Doug Zongker211aebc2011-10-28 15:13:10 -070022
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.)
28class ScreenRecoveryUI : public RecoveryUI {
29 public:
30 ScreenRecoveryUI();
31
32 void Init();
Doug Zongker5fa8c232012-09-18 12:37:02 -070033 void SetLocale(const char* locale);
Doug Zongker211aebc2011-10-28 15:13:10 -070034
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 Zongkerc87bab12013-11-25 13:53:25 -080043 void SetStage(int current, int max);
44
Doug Zongker211aebc2011-10-28 15:13:10 -070045 // text log
46 void ShowText(bool visible);
47 bool IsTextVisible();
48 bool WasTextEverVisible();
49
Doug Zongker211aebc2011-10-28 15:13:10 -070050 // printing messages
Elliott Hughes018ed312015-04-08 16:51:36 -070051 void Print(const char* fmt, ...) __printflike(2, 3);
Elliott Hughes8de52072015-04-08 20:06:50 -070052 void ShowFile(const char* filename);
Doug Zongker211aebc2011-10-28 15:13:10 -070053
54 // menu display
55 void StartMenu(const char* const * headers, const char* const * items,
Elliott Hughes018ed312015-04-08 16:51:36 -070056 int initial_selection);
Doug Zongker211aebc2011-10-28 15:13:10 -070057 int SelectMenu(int sel);
58 void EndMenu();
59
Elliott Hughes642aaa72015-04-10 12:47:46 -070060 void KeyLongPress(int);
61
Doug Zongkerc0441d12013-07-31 11:28:24 -070062 void Redraw();
63
Elliott Hughes642aaa72015-04-10 12:47:46 -070064 enum UIElement { HEADER, MENU, MENU_SEL_BG, MENU_SEL_BG_ACTIVE, MENU_SEL_FG, LOG, TEXT_FILL };
65 void SetColor(UIElement e);
Doug Zongkerc0441d12013-07-31 11:28:24 -070066
Doug Zongker211aebc2011-10-28 15:13:10 -070067 private:
68 Icon currentIcon;
69 int installingFrame;
Doug Zongkera418aa72014-03-17 12:10:02 -070070 const char* locale;
Doug Zongker5fa8c232012-09-18 12:37:02 -070071 bool rtl_locale;
Doug Zongker211aebc2011-10-28 15:13:10 -070072
73 pthread_mutex_t updateMutex;
Doug Zongker02ec6b82012-08-22 17:26:40 -070074 gr_surface backgroundIcon[5];
75 gr_surface backgroundText[5];
Doug Zongkereac881c2014-03-07 09:21:25 -080076 gr_surface *installation;
Doug Zongker211aebc2011-10-28 15:13:10 -070077 gr_surface progressBarEmpty;
78 gr_surface progressBarFill;
Doug Zongkerc87bab12013-11-25 13:53:25 -080079 gr_surface stageMarkerEmpty;
80 gr_surface stageMarkerFill;
Doug Zongker211aebc2011-10-28 15:13:10 -070081
82 ProgressType progressBarType;
83
84 float progressScopeStart, progressScopeSize, progress;
85 double progressScopeTime, progressScopeDuration;
86
Elliott Hughes8de52072015-04-08 20:06:50 -070087 // true when both graphics pages are the same (except for the progress bar).
Doug Zongker211aebc2011-10-28 15:13:10 -070088 bool pagesIdentical;
89
Elliott Hughes8de52072015-04-08 20:06:50 -070090 // Log text overlay, displayed when a magic key is pressed.
Elliott Hughesaa0d6af2015-04-08 12:42:50 -070091 char** text;
92 size_t text_cols, text_rows;
93 size_t text_col, text_row, text_top;
Doug Zongker211aebc2011-10-28 15:13:10 -070094 bool show_text;
95 bool show_text_ever; // has show_text ever been true?
96
Elliott Hughesaa0d6af2015-04-08 12:42:50 -070097 char** menu;
Doug Zongker211aebc2011-10-28 15:13:10 -070098 bool show_menu;
99 int menu_top, menu_items, menu_sel;
100
Elliott Hughes985022a2015-04-13 13:04:32 -0700101 pthread_t progress_thread_;
Doug Zongker32a0a472011-11-01 11:00:20 -0700102
103 int animation_fps;
Doug Zongker32a0a472011-11-01 11:00:20 -0700104 int installing_frames;
Doug Zongkereac881c2014-03-07 09:21:25 -0800105
106 int iconX, iconY;
Doug Zongker211aebc2011-10-28 15:13:10 -0700107
Doug Zongkerc87bab12013-11-25 13:53:25 -0800108 int stage, max_stage;
109
Doug Zongker211aebc2011-10-28 15:13:10 -0700110 void draw_background_locked(Icon icon);
111 void draw_progress_locked();
Doug Zongker211aebc2011-10-28 15:13:10 -0700112 void draw_screen_locked();
113 void update_screen_locked();
114 void update_progress_locked();
Elliott Hughes985022a2015-04-13 13:04:32 -0700115
116 static void* ProgressThreadStartRoutine(void* data);
117 void ProgressThreadLoop();
Doug Zongker211aebc2011-10-28 15:13:10 -0700118
Elliott Hughes95fc63e2015-04-10 19:12:01 -0700119 void ShowFile(FILE*);
120 void PutChar(char);
121 void ClearText();
122
123 void DrawHorizontalRule(int* y);
Elliott Hughes8de52072015-04-08 20:06:50 -0700124
Doug Zongker211aebc2011-10-28 15:13:10 -0700125 void LoadBitmap(const char* filename, gr_surface* surface);
Doug Zongkereac881c2014-03-07 09:21:25 -0800126 void LoadBitmapArray(const char* filename, int* frames, gr_surface** surface);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700127 void LoadLocalizedBitmap(const char* filename, gr_surface* surface);
Doug Zongker211aebc2011-10-28 15:13:10 -0700128};
129
130#endif // RECOVERY_UI_H