restore holo UI in recovery -- DO NOT MERGE
Since we don't have quantum assets for recovery yet, go back to the holo appearance (dark background, blue glowing progress bar) for lmp-preview. Change-Id: Id4d3f23e0a6251a12aa42f3793cff347f38b4243
|
Before Width: | Height: | Size: 81 B After Width: | Height: | Size: 118 B |
|
Before Width: | Height: | Size: 83 B After Width: | Height: | Size: 404 B |
|
Before Width: | Height: | Size: 74 B After Width: | Height: | Size: 118 B |
|
Before Width: | Height: | Size: 83 B After Width: | Height: | Size: 404 B |
|
Before Width: | Height: | Size: 84 B After Width: | Height: | Size: 118 B |
|
Before Width: | Height: | Size: 84 B After Width: | Height: | Size: 404 B |
|
Before Width: | Height: | Size: 86 B After Width: | Height: | Size: 118 B |
|
Before Width: | Height: | Size: 86 B After Width: | Height: | Size: 404 B |
|
Before Width: | Height: | Size: 90 B After Width: | Height: | Size: 118 B |
|
Before Width: | Height: | Size: 90 B After Width: | Height: | Size: 404 B |
@@ -89,7 +89,7 @@ ScreenRecoveryUI::ScreenRecoveryUI() :
|
|||||||
void ScreenRecoveryUI::draw_background_locked(Icon icon)
|
void ScreenRecoveryUI::draw_background_locked(Icon icon)
|
||||||
{
|
{
|
||||||
pagesIdentical = false;
|
pagesIdentical = false;
|
||||||
gr_color(250, 250, 250, 255);
|
gr_color(0, 0, 0, 255);
|
||||||
gr_clear();
|
gr_clear();
|
||||||
|
|
||||||
if (icon) {
|
if (icon) {
|
||||||
@@ -125,7 +125,7 @@ void ScreenRecoveryUI::draw_background_locked(Icon icon)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
gr_color(115, 115, 115, 255);
|
gr_color(255, 255, 255, 255);
|
||||||
gr_texticon(textX, textY, text_surface);
|
gr_texticon(textX, textY, text_surface);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -150,7 +150,7 @@ void ScreenRecoveryUI::draw_progress_locked()
|
|||||||
int dy = (3*gr_fb_height() + iconHeight - 2*height)/4;
|
int dy = (3*gr_fb_height() + iconHeight - 2*height)/4;
|
||||||
|
|
||||||
// Erase behind the progress bar (in case this was a progress-only update)
|
// Erase behind the progress bar (in case this was a progress-only update)
|
||||||
gr_color(250, 250, 250, 255);
|
gr_color(0, 0, 0, 255);
|
||||||
gr_fill(dx, dy, width, height);
|
gr_fill(dx, dy, width, height);
|
||||||
|
|
||||||
if (progressBarType == DETERMINATE) {
|
if (progressBarType == DETERMINATE) {
|
||||||
@@ -181,17 +181,20 @@ void ScreenRecoveryUI::draw_progress_locked()
|
|||||||
void ScreenRecoveryUI::SetColor(UIElement e) {
|
void ScreenRecoveryUI::SetColor(UIElement e) {
|
||||||
switch (e) {
|
switch (e) {
|
||||||
case HEADER:
|
case HEADER:
|
||||||
gr_color(0xff, 0x57, 0x22, 255); // Quantum "Deep Orange" 500
|
gr_color(247, 0, 6, 255);
|
||||||
break;
|
break;
|
||||||
case MENU:
|
case MENU:
|
||||||
case MENU_SEL_BG:
|
case MENU_SEL_BG:
|
||||||
gr_color(0x67, 0x3a, 0xb7, 255); // Quantum "Deep Purple" 500
|
gr_color(0, 106, 157, 255);
|
||||||
break;
|
break;
|
||||||
case MENU_SEL_FG:
|
case MENU_SEL_FG:
|
||||||
gr_color(255, 255, 255, 255);
|
gr_color(255, 255, 255, 255);
|
||||||
break;
|
break;
|
||||||
case LOG:
|
case LOG:
|
||||||
gr_color(0x3f, 0x51, 0xb5, 255); // Quantum "Indigo" 500
|
gr_color(249, 194, 0, 255);
|
||||||
|
break;
|
||||||
|
case TEXT_FILL:
|
||||||
|
gr_color(0, 0, 0, 160);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
gr_color(255, 255, 255, 255);
|
gr_color(255, 255, 255, 255);
|
||||||
@@ -207,7 +210,7 @@ void ScreenRecoveryUI::draw_screen_locked()
|
|||||||
draw_background_locked(currentIcon);
|
draw_background_locked(currentIcon);
|
||||||
draw_progress_locked();
|
draw_progress_locked();
|
||||||
} else {
|
} else {
|
||||||
gr_color(250, 250, 250, 255);
|
gr_color(0, 0, 0, 255);
|
||||||
gr_clear();
|
gr_clear();
|
||||||
|
|
||||||
int y = 0;
|
int y = 0;
|
||||||
@@ -221,13 +224,13 @@ void ScreenRecoveryUI::draw_screen_locked()
|
|||||||
if (i == menu_top + menu_sel) {
|
if (i == menu_top + menu_sel) {
|
||||||
// draw the highlight bar
|
// draw the highlight bar
|
||||||
SetColor(MENU_SEL_BG);
|
SetColor(MENU_SEL_BG);
|
||||||
gr_fill(0, y-2+kTextYOffset, gr_fb_width(), y+char_height+2+kTextYOffset);
|
gr_fill(0, y-2, gr_fb_width(), y+char_height+2);
|
||||||
// white text of selected item
|
// white text of selected item
|
||||||
SetColor(MENU_SEL_FG);
|
SetColor(MENU_SEL_FG);
|
||||||
if (menu[i][0]) gr_text(kTextXOffset, y+kTextYOffset, menu[i], 1);
|
if (menu[i][0]) gr_text(4, y, menu[i], 1);
|
||||||
SetColor(MENU);
|
SetColor(MENU);
|
||||||
} else {
|
} else {
|
||||||
if (menu[i][0]) gr_text(kTextXOffset, y+kTextYOffset, menu[i], i < menu_top);
|
if (menu[i][0]) gr_text(4, y, menu[i], i < menu_top);
|
||||||
}
|
}
|
||||||
y += char_height+4;
|
y += char_height+4;
|
||||||
}
|
}
|
||||||
@@ -248,7 +251,7 @@ void ScreenRecoveryUI::draw_screen_locked()
|
|||||||
for (int ty = gr_fb_height() - char_height, count = 0;
|
for (int ty = gr_fb_height() - char_height, count = 0;
|
||||||
ty > y+2 && count < text_rows;
|
ty > y+2 && count < text_rows;
|
||||||
ty -= char_height, ++count) {
|
ty -= char_height, ++count) {
|
||||||
gr_text(kTextXOffset, ty+kTextYOffset, text[row], 0);
|
gr_text(4, ty, text[row], 0);
|
||||||
--row;
|
--row;
|
||||||
if (row < 0) row = text_rows-1;
|
if (row < 0) row = text_rows-1;
|
||||||
}
|
}
|
||||||
@@ -349,11 +352,11 @@ void ScreenRecoveryUI::Init()
|
|||||||
gr_font_size(&char_width, &char_height);
|
gr_font_size(&char_width, &char_height);
|
||||||
|
|
||||||
text_col = text_row = 0;
|
text_col = text_row = 0;
|
||||||
text_rows = (gr_fb_height() - 2 * kTextYOffset) / char_height;
|
text_rows = gr_fb_height() / char_height;
|
||||||
if (text_rows > kMaxRows) text_rows = kMaxRows;
|
if (text_rows > kMaxRows) text_rows = kMaxRows;
|
||||||
text_top = 1;
|
text_top = 1;
|
||||||
|
|
||||||
text_cols = (gr_fb_width() - 2 * kTextXOffset) / char_width;
|
text_cols = gr_fb_width() / char_width;
|
||||||
if (text_cols > kMaxCols - 1) text_cols = kMaxCols - 1;
|
if (text_cols > kMaxCols - 1) text_cols = kMaxCols - 1;
|
||||||
|
|
||||||
backgroundIcon[NONE] = NULL;
|
backgroundIcon[NONE] = NULL;
|
||||||
|
|||||||
@@ -87,9 +87,6 @@ class ScreenRecoveryUI : public RecoveryUI {
|
|||||||
static const int kMaxCols = 96;
|
static const int kMaxCols = 96;
|
||||||
static const int kMaxRows = 96;
|
static const int kMaxRows = 96;
|
||||||
|
|
||||||
static const int kTextXOffset = 8;
|
|
||||||
static const int kTextYOffset = 4;
|
|
||||||
|
|
||||||
// Log text overlay, displayed when a magic key is pressed
|
// Log text overlay, displayed when a magic key is pressed
|
||||||
char text[kMaxRows][kMaxCols];
|
char text[kMaxRows][kMaxCols];
|
||||||
int text_cols, text_rows;
|
int text_cols, text_rows;
|
||||||
|
|||||||