summaryrefslogtreecommitdiffstats
path: root/screen_ui.h
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-06-20 08:10:44 +0200
committerTao Bao <tbao@google.com>2017-06-21 00:47:06 +0200
commit171b4c4cbe6ba5af3fd7df87d227eda44e308727 (patch)
treea1b9543cf947e02fc0f61fe24465fed7d41f2147 /screen_ui.h
parentMerge "Introduce VR recovery ui" (diff)
downloadandroid_bootable_recovery-171b4c4cbe6ba5af3fd7df87d227eda44e308727.tar
android_bootable_recovery-171b4c4cbe6ba5af3fd7df87d227eda44e308727.tar.gz
android_bootable_recovery-171b4c4cbe6ba5af3fd7df87d227eda44e308727.tar.bz2
android_bootable_recovery-171b4c4cbe6ba5af3fd7df87d227eda44e308727.tar.lz
android_bootable_recovery-171b4c4cbe6ba5af3fd7df87d227eda44e308727.tar.xz
android_bootable_recovery-171b4c4cbe6ba5af3fd7df87d227eda44e308727.tar.zst
android_bootable_recovery-171b4c4cbe6ba5af3fd7df87d227eda44e308727.zip
Diffstat (limited to 'screen_ui.h')
-rw-r--r--screen_ui.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/screen_ui.h b/screen_ui.h
index bd99254f6..fd9f471e9 100644
--- a/screen_ui.h
+++ b/screen_ui.h
@@ -72,10 +72,11 @@ class ScreenRecoveryUI : public RecoveryUI {
void SetColor(UIElement e);
protected:
+ // The scale factor from dp to pixels. 1.0 for mdpi, 4.0 for xxxhdpi.
+ const float density_;
+
Icon currentIcon;
- // The scale factor from dp to pixels. 1.0 for mdpi, 4.0 for xxxhdpi.
- float density_;
// The layout to use.
int layout_;
@@ -136,6 +137,12 @@ class ScreenRecoveryUI : public RecoveryUI {
int char_width_;
int char_height_;
+
+ // The margin that we don't want to use for showing texts (e.g. round screen, or screen with
+ // rounded corners).
+ int margin_width_;
+ int margin_height_;
+
pthread_mutex_t updateMutex;
virtual bool InitTextParams();