X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Ftext-controller.h;h=ddb1051c69b02ae82f07e62c317fac02f3d5dd5e;hb=77af5d8a3230bf16729573df1866be763938ca40;hp=cea9f3914607d0354026365ce01c1add649dde3a;hpb=5a984a1705bf94f17a8ef6a05ce170d1a47e49b1;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/text/text-controller.h b/dali-toolkit/internal/text/text-controller.h index cea9f39..ddb1051 100644 --- a/dali-toolkit/internal/text/text-controller.h +++ b/dali-toolkit/internal/text/text-controller.h @@ -173,6 +173,34 @@ public: void GetDefaultFonts( Dali::Vector& fonts, Length numberOfCharacters ); /** + * @brief Set the shadow offset. + * + * @param[in] shadowOffset The shadow offset, 0,0 indicates no shadow. + */ + void SetShadowOffset( const Vector2& shadowOffset ); + + /** + * @brief Retrieve the shadow offset. + * + * @return The shadow offset. + */ + const Vector2& GetShadowOffset() const; + + /** + * @brief Set the shadow color. + * + * @param[in] shadowColor The shadow color. + */ + void SetShadowColor( const Vector4& shadowColor ); + + /** + * @brief Retrieve the shadow color. + * + * @return The shadow color. + */ + const Vector4& GetShadowColor() const; + + /** * @brief Called to enable text input. * * @note Only selectable or editable controls should calls this. @@ -203,6 +231,13 @@ public: const Vector2& GetScrollPosition() const; /** + * @brief Query the alignment offset. + * + * @return The alignmnet offset. + */ + const Vector2& GetAlignmentOffset() const; + + /** * @copydoc Control::GetNaturalSize() */ Vector3 GetNaturalSize(); @@ -219,7 +254,7 @@ public: * @param[in] size A the size of a bounding box to layout text within. * @return True if the text model or decorations were updated. */ - bool Relayout( const Vector2& size ); + bool Relayout( const Size& size ); /** * @brief Process queued events which modify the model. @@ -261,11 +296,18 @@ public: * @param[in] operations The layout operations which need to be done. * @param[out] layoutSize The size of the laid-out text. */ - bool DoRelayout( const Vector2& size, + bool DoRelayout( const Size& size, OperationsMask operations, Size& layoutSize ); /** + * @brief Calulates the alignment of the whole text inside the bounding box. + * + * @param[in] size The size of the bounding box. + */ + void CalculateTextAlignment( const Size& size ); + + /** * @brief Return the layout engine. * * @return A reference to the layout engine.