X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fdevel-api%2Fcontrols%2Ftext-controls%2Ftext-editor-devel.h;h=fe8bc2ef72f3c4cc220d9caef91eeb3344cb1395;hp=4d600b5ec8dedbe36818323ce17e236184e9a99b;hb=a97787d5b7db865cea0b003db309a619877b0144;hpb=f4f5108909297cf3ab4c4b091d35a0194f637428 diff --git a/dali-toolkit/devel-api/controls/text-controls/text-editor-devel.h b/dali-toolkit/devel-api/controls/text-controls/text-editor-devel.h index 4d600b5..fe8bc2e 100755 --- a/dali-toolkit/devel-api/controls/text-controls/text-editor-devel.h +++ b/dali-toolkit/devel-api/controls/text-controls/text-editor-devel.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_TEXT_EDITOR_DEVEL_H /* - * Copyright (c) 2018 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 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. @@ -36,7 +36,6 @@ namespace Property { enum Type { - RENDERING_BACKEND = Dali::Toolkit::TextEditor::Property::RENDERING_BACKEND, TEXT = Dali::Toolkit::TextEditor::Property::TEXT, TEXT_COLOR = Dali::Toolkit::TextEditor::Property::TEXT_COLOR, FONT_FAMILY = Dali::Toolkit::TextEditor::Property::FONT_FAMILY, @@ -117,7 +116,19 @@ namespace Property * @details Name "matchSystemLanguageDirection", type (Property::BOOLEAN), Read/Write * @note The default value is false */ - MATCH_SYSTEM_LANGUAGE_DIRECTION + MATCH_SYSTEM_LANGUAGE_DIRECTION, + + /** + * @brief The type or rendering e.g. bitmap-based. + * @details Name "renderingBackend", type Property::INTEGER. + */ + RENDERING_BACKEND, + + /** + * @brief The maximum number of characters that can be inserted. + * @details Name "maxLength", type Property::INTEGER. + */ + MAX_LENGTH, }; } // namespace Property @@ -130,6 +141,23 @@ namespace Property */ DALI_TOOLKIT_API InputMethodContext GetInputMethodContext( TextEditor textEditor ); +/** + * @brief Max Characters Exceed signal type. + */ +using MaxLengthReachedSignalType = Signal< void ( TextEditor ) >; + +/** + * @brief This signal is emitted when inserted text exceeds the maximum character limit. + * + * A callback of the following type may be connected: + * @code + * void YourCallbackName( TextEditor textEditor ); + * @endcode + * @param[in] textEditor The instance of TextEditor. + * @return The signal to connect to + */ +DALI_TOOLKIT_API MaxLengthReachedSignalType& MaxLengthReachedSignal( TextEditor textEditor ); + } // namespace DevelTextEditor } // namespace Toolkit