X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Ftext-view-interface.h;h=da6b4e16415b01fdd8f59ceda1cd12daa4369201;hb=d7bf9a0c46a7900e7c066711463babd639154f73;hp=67875b8336515170d6f0681a82d9d35ede9cdf8c;hpb=e029ad17187a0cc3749982788e16e5a5bbb65301;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 67875b8..da6b4e1 100644 --- a/dali-toolkit/internal/text/text-view-interface.h +++ b/dali-toolkit/internal/text/text-view-interface.h @@ -18,6 +18,9 @@ * */ +// EXTERNAL INCLUDES +#include + // INTERNAL INCLUDES #include #include @@ -328,6 +331,29 @@ public: virtual void GetStrikethroughRuns(StrikethroughGlyphRun* strikethroughRuns, StrikethroughRunIndex index, Length numberOfRuns) const = 0; + + /** + * @brief The spaces between characters in Pixels. + * + * @note A positive value will make the characters far apart (expanded) and a negative value will bring them closer (condensed). + * + * @return characterSpacing. + */ + virtual const float GetCharacterSpacing() const = 0; + + /** + * @brief The text buffer. + * + * @return The text buffer. + */ + virtual const Character* GetTextBuffer() const = 0; + + /** + * @brief The text Glyph to Characters Array. + * + * @return GetGlyphsToCharacters. + */ + virtual const Vector& GetGlyphsToCharacters() const = 0; }; } // namespace Text