X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Ftext-control-interface.h;h=f5346e005be5bb56b23e7f2aef833cfb92a32c2f;hb=012328b60466dc0ab4d44336738bf75493c8b3bd;hp=3eb26b68c200281d6401f728b3dbe2b2631a8889;hpb=3e17d9f63dedb5d669409301f8d9a3d8c393f979;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/text/text-control-interface.h b/dali-toolkit/internal/text/text-control-interface.h index 3eb26b6..f5346e0 100644 --- a/dali-toolkit/internal/text/text-control-interface.h +++ b/dali-toolkit/internal/text/text-control-interface.h @@ -2,7 +2,7 @@ #define __DALI_TOOLKIT_TEXT_CONTROL_INTERFACE_H__ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,9 +18,14 @@ * */ +// INTERNAL INCLUDES +#include + namespace Dali { +class Actor; + namespace Toolkit { @@ -45,9 +50,34 @@ 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; + + /** + * @brief Called to signal that input style has been changed. + * + * @param[in] inputStyleMask Mask with the bits of the input style that has changed. + */ + virtual void InputStyleChanged( InputStyle::Mask inputStyleMask ) = 0; }; } // namespace Text