X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Ftext-view-interface.h;h=116ad50cdc119cf7053e477a1d253b9e2026dc47;hb=744b2f892a2c8d9110adbfa9e82bc877f776978c;hp=4220b662000090f7a76c200d9bae9e2fba619c72;hpb=cc82bd9b187cda8fe2c8336b73fd1fa9376cfebd;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/text/text-view-interface.h b/dali-toolkit/internal/text/text-view-interface.h index 4220b66..116ad50 100644 --- a/dali-toolkit/internal/text/text-view-interface.h +++ b/dali-toolkit/internal/text/text-view-interface.h @@ -89,7 +89,14 @@ public: Length numberOfGlyphs ) const = 0; /** - * @brief Retrieves the shadow offset, 0,0 indicates no shadow. + * @brief Retrieves the text color + * + * @return The text color + */ + virtual const Vector4& GetTextColor() const = 0; + + /** + * @brief Retrieves the shadow offset, 0 indicates no shadow. * * @return The shadow offset. */ @@ -101,6 +108,21 @@ public: * @return The shadow color. */ virtual const Vector4& GetShadowColor() const = 0; + + /** + * @brief Retrieves the underline color. + * + * @return The underline color. + */ + virtual const Vector4& GetUnderlineColor() const = 0; + + /** + * @brief Returns whether is underline is enabled or not. + * + * @return The underline state. + */ + virtual bool IsUnderlineEnabled() const = 0; + }; } // namespace Text