X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Ftext-control-interface.h;h=ede1531c78894fcdc24d7ca98e72a80759fb747b;hp=3eb26b68c200281d6401f728b3dbe2b2631a8889;hb=f04a5829e7e2a5f434264d258f16b1417941de6e;hpb=7aa9e3d716396348b89c913b306bbc1ce201db69 diff --git a/dali-toolkit/internal/text/text-control-interface.h b/dali-toolkit/internal/text/text-control-interface.h index 3eb26b6..ede1531 100644 --- a/dali-toolkit/internal/text/text-control-interface.h +++ b/dali-toolkit/internal/text/text-control-interface.h @@ -21,6 +21,8 @@ namespace Dali { +class Actor; + namespace Toolkit { @@ -45,9 +47,27 @@ public: virtual ~ControlInterface(); /** + * @brief Add a decoration. + * + * @param[in] decoration The actor displaying a decoration. + * @param[in] needsClipping Whether the actor needs clipping. + */ + virtual void AddDecoration( Actor& actor, bool needsClipping ) = 0; + + /** * @brief Called to request a text relayout. */ virtual void RequestTextRelayout() = 0; + + /** + * @brief Called to signal that text has been inserted or deleted. + */ + virtual void TextChanged() = 0; + + /** + * @brief Called when the number of characters to be inserted exceeds the maximum limit + */ + virtual void MaxLengthReached() = 0; }; } // namespace Text