From dc640ab50a63b0383c6aec6df4e0427df1824c3e Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sun, 29 Jan 2017 18:40:36 +0100 Subject: GRAPHICS: Added optional initial line width ot text wrapper --- graphics/font.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'graphics/font.h') diff --git a/graphics/font.h b/graphics/font.h index 0478608708..6682ce015b 100644 --- a/graphics/font.h +++ b/graphics/font.h @@ -169,13 +169,14 @@ public: * It returns the maximal width of any of the new lines (i.e. a value which is less * or equal to maxWidth). * - * @param str the string to word wrap - * @param maxWidth the maximum width a line may have - * @param lines the string list to which the text lines from str are appended + * @param str the string to word wrap + * @param maxWidth the maximum width a line may have + * @param lines the string list to which the text lines from str are appended + * @param initWidth the starting width of the first line, for partially filled lines (optional) * @return the maximal width of any of the lines added to lines */ - int wordWrapText(const Common::String &str, int maxWidth, Common::Array &lines) const; - int wordWrapText(const Common::U32String &str, int maxWidth, Common::Array &lines) const; + int wordWrapText(const Common::String &str, int maxWidth, Common::Array &lines, int initWidth = 0) const; + int wordWrapText(const Common::U32String &str, int maxWidth, Common::Array &lines, int initWidth = 0) const; private: Common::String handleEllipsis(const Common::String &str, int w) const; -- cgit v1.2.3