diff options
author | Tao Bao <tbao@google.com> | 2017-06-23 23:43:58 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-06-23 23:44:01 +0200 |
commit | eef231567cc9f8d8ce030c5975262872d031f7ca (patch) | |
tree | 8e1d0c8d732a5e94a669a3d2b2804b10c6c951ae /screen_ui.h | |
parent | Merge "Remove the obsolete package_extract_dir() test" (diff) | |
parent | Use Makefile variables to specify margin settings. (diff) | |
download | android_bootable_recovery-eef231567cc9f8d8ce030c5975262872d031f7ca.tar android_bootable_recovery-eef231567cc9f8d8ce030c5975262872d031f7ca.tar.gz android_bootable_recovery-eef231567cc9f8d8ce030c5975262872d031f7ca.tar.bz2 android_bootable_recovery-eef231567cc9f8d8ce030c5975262872d031f7ca.tar.lz android_bootable_recovery-eef231567cc9f8d8ce030c5975262872d031f7ca.tar.xz android_bootable_recovery-eef231567cc9f8d8ce030c5975262872d031f7ca.tar.zst android_bootable_recovery-eef231567cc9f8d8ce030c5975262872d031f7ca.zip |
Diffstat (limited to '')
-rw-r--r-- | screen_ui.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/screen_ui.h b/screen_ui.h index bd99254f6..e961c1c93 100644 --- a/screen_ui.h +++ b/screen_ui.h @@ -72,10 +72,16 @@ class ScreenRecoveryUI : public RecoveryUI { void SetColor(UIElement e); protected: - Icon currentIcon; + // The margin that we don't want to use for showing texts (e.g. round screen, or screen with + // rounded corners). + const int kMarginWidth; + const int kMarginHeight; // The scale factor from dp to pixels. 1.0 for mdpi, 4.0 for xxxhdpi. - float density_; + const float density_; + + Icon currentIcon; + // The layout to use. int layout_; @@ -136,6 +142,7 @@ class ScreenRecoveryUI : public RecoveryUI { int char_width_; int char_height_; + pthread_mutex_t updateMutex; virtual bool InitTextParams(); |