summaryrefslogtreecommitdiffstats
path: root/screen_ui.h
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-08-14 08:48:55 +0200
committerTao Bao <tbao@google.com>2017-08-16 20:03:31 +0200
commitee6fefd2f203a7df2164b3262fa54e62f61e6ad2 (patch)
tree03bc8fb8b1e8483cec0fb3587d75b204063057c7 /screen_ui.h
parentImport translations. DO NOT MERGE (diff)
downloadandroid_bootable_recovery-ee6fefd2f203a7df2164b3262fa54e62f61e6ad2.tar
android_bootable_recovery-ee6fefd2f203a7df2164b3262fa54e62f61e6ad2.tar.gz
android_bootable_recovery-ee6fefd2f203a7df2164b3262fa54e62f61e6ad2.tar.bz2
android_bootable_recovery-ee6fefd2f203a7df2164b3262fa54e62f61e6ad2.tar.lz
android_bootable_recovery-ee6fefd2f203a7df2164b3262fa54e62f61e6ad2.tar.xz
android_bootable_recovery-ee6fefd2f203a7df2164b3262fa54e62f61e6ad2.tar.zst
android_bootable_recovery-ee6fefd2f203a7df2164b3262fa54e62f61e6ad2.zip
Diffstat (limited to '')
-rw-r--r--screen_ui.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/screen_ui.h b/screen_ui.h
index 8402fac00..df7cc25b3 100644
--- a/screen_ui.h
+++ b/screen_ui.h
@@ -187,6 +187,9 @@ class ScreenRecoveryUI : public RecoveryUI {
virtual int DrawTextLine(int x, int y, const char* line, bool bold) 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.
+ // Returns the offset it should be moving along Y-axis.
+ int DrawWrappedTextLines(int x, int y, const char* const* lines) const;
};
#endif // RECOVERY_UI_H