X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Ftext-view-interface.h;h=8a234851b47b89b2de410b21d5d94e4389c5b9e7;hp=da6b4e16415b01fdd8f59ceda1cd12daa4369201;hb=HEAD;hpb=895806b4ad86de88dcc731aeb8e3dbe453ce4202 diff --git a/dali-toolkit/internal/text/text-view-interface.h b/dali-toolkit/internal/text/text-view-interface.h index da6b4e1..5fbbfea 100644 --- a/dali-toolkit/internal/text/text-view-interface.h +++ b/dali-toolkit/internal/text/text-view-interface.h @@ -23,7 +23,10 @@ // INTERNAL INCLUDES #include +#include +#include #include +#include #include namespace Dali @@ -106,35 +109,35 @@ public: * * @return Pointer to the vector of colors. */ - virtual const Vector4* const GetColors() const = 0; + virtual const Vector4* GetColors() const = 0; /** * @brief Retrieves the vector of indices to the vector of colors. * * @return Pointer to a vector which stores for each glyph the index to the vector of colors. */ - virtual const ColorIndex* const GetColorIndices() const = 0; + virtual const ColorIndex* GetColorIndices() const = 0; /** * @brief Retrieves the vector of background colors. * * @return Pointer to the vector of background colors. */ - virtual const Vector4* const GetBackgroundColors() const = 0; + virtual const Vector4* GetBackgroundColors() const = 0; /** * @brief Retrieves the vector of indices to the vector of background colors. * * @return Pointer to a vector which stores for each glyph the index to the vector of background colors. */ - virtual const ColorIndex* const GetBackgroundColorIndices() const = 0; + virtual const ColorIndex* GetBackgroundColorIndices() const = 0; /** * @brief checks if there is background colors set using markup. * * @return boolean if there is background colors set using markup . */ - virtual bool const IsMarkupBackgroundColorSet() const = 0; + virtual bool IsMarkupBackgroundColorSet() const = 0; /** * @brief Retrieves the text color @@ -172,6 +175,13 @@ public: virtual bool IsUnderlineEnabled() const = 0; /** + * @brief checks if there is underline set using markup. + * + * @return boolean if there is underline set using markup. + */ + virtual bool IsMarkupUnderlineSet() const = 0; + + /** * @brief Returns the hyphens glyph info. * * @return hyphens glyph info. @@ -233,9 +243,16 @@ public: * @param[in] index Index of the first underline run to be copied. * @param[in] numberOfRuns Number of underline runs to be copied. */ - virtual void GetUnderlineRuns(GlyphRun* underlineRuns, - UnderlineRunIndex index, - Length numberOfRuns) const = 0; + virtual void GetUnderlineRuns(UnderlinedGlyphRun* underlineRuns, + UnderlineRunIndex index, + Length numberOfRuns) const = 0; + + /** + * @brief Retrieves the outline offset. + * + * @return The outline offset. + */ + virtual const Vector2& GetOutlineOffset() const = 0; /** * @brief Retrieve the outline color. @@ -308,6 +325,13 @@ public: virtual bool IsStrikethroughEnabled() const = 0; /** + * @brief checks if there is strikethrough set using markup. + * + * @return boolean if there is strikethrough set using markup. + */ + virtual bool IsMarkupStrikethroughSet() const = 0; + + /** * @brief Retrieves the strikethrough height override * * @return Returns the override height for a strikethrough, 0 indicates that adaptor will determine the height @@ -322,6 +346,20 @@ public: virtual Length GetNumberOfStrikethroughRuns() const = 0; /** + * @brief Retrieves the number of bounded paragraph runs. + * + * @return The number of bounded paragraph runs. + */ + virtual Length GetNumberOfBoundedParagraphRuns() const = 0; + + /** + * @brief Retrieves the reference for bounded paragraph runs. + * + * @return The reference for bounded paragraph runs. + */ + virtual const Vector& GetBoundedParagraphRuns() const = 0; + + /** * @brief Retrieves the strikethrough runs. * * @param[out] strikethroughRuns Pointer to a buffer where the strikethrough runs are copied. @@ -339,7 +377,7 @@ public: * * @return characterSpacing. */ - virtual const float GetCharacterSpacing() const = 0; + virtual float GetCharacterSpacing() const = 0; /** * @brief The text buffer. @@ -354,6 +392,13 @@ public: * @return GetGlyphsToCharacters. */ virtual const Vector& GetGlyphsToCharacters() const = 0; + + /** + * @brief Returns whether cutout is enabled or not. + * + * @return The cutout state. + */ + virtual bool IsCutoutEnabled() const = 0; }; } // namespace Text