blob: 16ee741b7959a57d0d3130070b85074c01be622d [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();
32
33 // overall recovery state ("background image")
34 void SetBackground(Icon icon);
35
36 // progress indicator
37 void SetProgressType(ProgressType type);
38 void ShowProgress(float portion, float seconds);
39 void SetProgress(float fraction);
40
41 // text log
42 void ShowText(bool visible);
43 bool IsTextVisible();
44 bool WasTextEverVisible();
45
Doug Zongker211aebc2011-10-28 15:13:10 -070046 // printing messages
47 void Print(const char* fmt, ...); // __attribute__((format(printf, 1, 2)));
48
49 // menu display
50 void StartMenu(const char* const * headers, const char* const * items,
51 int initial_selection);
52 int SelectMenu(int sel);
53 void EndMenu();
54
55 private:
56 Icon currentIcon;
57 int installingFrame;
58
59 pthread_mutex_t updateMutex;
Doug Zongker02ec6b82012-08-22 17:26:40 -070060 gr_surface backgroundIcon[5];
61 gr_surface backgroundText[5];
Doug Zongker211aebc2011-10-28 15:13:10 -070062 gr_surface *installationOverlay;
63 gr_surface *progressBarIndeterminate;
64 gr_surface progressBarEmpty;
65 gr_surface progressBarFill;
66
67 ProgressType progressBarType;
68
69 float progressScopeStart, progressScopeSize, progress;
70 double progressScopeTime, progressScopeDuration;
71
72 // true when both graphics pages are the same (except for the
73 // progress bar)
74 bool pagesIdentical;
75
76 static const int kMaxCols = 96;
77 static const int kMaxRows = 32;
78
79 // Log text overlay, displayed when a magic key is pressed
80 char text[kMaxRows][kMaxCols];
81 int text_cols, text_rows;
82 int text_col, text_row, text_top;
83 bool show_text;
84 bool show_text_ever; // has show_text ever been true?
85
86 char menu[kMaxRows][kMaxCols];
87 bool show_menu;
88 int menu_top, menu_items, menu_sel;
89
Doug Zongker211aebc2011-10-28 15:13:10 -070090 pthread_t progress_t;
Doug Zongker32a0a472011-11-01 11:00:20 -070091
92 int animation_fps;
93 int indeterminate_frames;
94 int installing_frames;
95 int install_overlay_offset_x, install_overlay_offset_y;
Doug Zongker02ec6b82012-08-22 17:26:40 -070096 int overlay_offset_x, overlay_offset_y;
Doug Zongker211aebc2011-10-28 15:13:10 -070097
98 void draw_install_overlay_locked(int frame);
99 void draw_background_locked(Icon icon);
100 void draw_progress_locked();
101 void draw_text_line(int row, const char* t);
102 void draw_screen_locked();
103 void update_screen_locked();
104 void update_progress_locked();
105 static void* progress_thread(void* cookie);
Doug Zongker32a0a472011-11-01 11:00:20 -0700106 void progress_loop();
Doug Zongker211aebc2011-10-28 15:13:10 -0700107
108 void LoadBitmap(const char* filename, gr_surface* surface);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700109 void LoadLocalizedBitmap(const char* filename, gr_surface* surface);
Doug Zongker211aebc2011-10-28 15:13:10 -0700110};
111
112#endif // RECOVERY_UI_H