summaryrefslogtreecommitdiffstats
path: root/screen_ui.h
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-10-06 16:38:28 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-10-06 16:38:28 +0200
commit0a5e39f1807a0e79a91c6be324bd57e90cfd8b99 (patch)
tree3841b40812c0bd8763522cbd9fd838e2e87dfd7e /screen_ui.h
parentMerge "graphics: add rotation logic" am: 9baa19012a (diff)
parentMerge "vr_ui: drawing changes" (diff)
downloadandroid_bootable_recovery-0a5e39f1807a0e79a91c6be324bd57e90cfd8b99.tar
android_bootable_recovery-0a5e39f1807a0e79a91c6be324bd57e90cfd8b99.tar.gz
android_bootable_recovery-0a5e39f1807a0e79a91c6be324bd57e90cfd8b99.tar.bz2
android_bootable_recovery-0a5e39f1807a0e79a91c6be324bd57e90cfd8b99.tar.lz
android_bootable_recovery-0a5e39f1807a0e79a91c6be324bd57e90cfd8b99.tar.xz
android_bootable_recovery-0a5e39f1807a0e79a91c6be324bd57e90cfd8b99.tar.zst
android_bootable_recovery-0a5e39f1807a0e79a91c6be324bd57e90cfd8b99.zip
Diffstat (limited to 'screen_ui.h')
-rw-r--r--screen_ui.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/screen_ui.h b/screen_ui.h
index 3a28a09de..f05761c42 100644
--- a/screen_ui.h
+++ b/screen_ui.h
@@ -124,12 +124,23 @@ class ScreenRecoveryUI : public RecoveryUI {
virtual int GetProgressBaseline() const;
virtual int GetTextBaseline() const;
+ // Returns pixel width of draw buffer.
+ virtual int ScreenWidth() const;
+ // Returns pixel height of draw buffer.
+ virtual int ScreenHeight() const;
+
// Draws a highlight bar at (x, y) - (x + width, y + height).
virtual void DrawHighlightBar(int x, int y, int width, int height) const;
// Draws a horizontal rule at Y. Returns the offset it should be moving along Y-axis.
virtual int DrawHorizontalRule(int y) const;
// Draws a line of text. Returns the offset it should be moving along Y-axis.
virtual int DrawTextLine(int x, int y, const char* line, bool bold) const;
+ // Draws surface portion (sx, sy, w, h) at screen location (dx, dy).
+ virtual void DrawSurface(GRSurface* surface, int sx, int sy, int w, int h, int dx, int dy) const;
+ // Draws rectangle at (x, y) - (x + w, y + h).
+ virtual void DrawFill(int x, int y, int w, int h) const;
+ // Draws given surface (surface->pixel_bytes = 1) as text at (x, y).
+ virtual void DrawTextIcon(int x, int y, GRSurface* surface) const;
// Draws multiple text lines. Returns the offset it should be moving along Y-axis.
int DrawTextLines(int x, int y, const char* const* lines) const;
// Similar to DrawTextLines() to draw multiple text lines, but additionally wraps long lines.