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=473adbafa336091c3bcf49f2dadb850a4fcfdf04;hb=a97787d5b7db865cea0b003db309a619877b0144;hpb=003fe1b0cb2900bd60063649e46fbbbb6e7d997d 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 old mode 100644 new mode 100755 index 473adba..fe8bc2e --- 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) 2017 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. @@ -17,6 +17,8 @@ * limitations under the License. * */ +// EXTERNAL INCLUDES +#include // INTERNAL INCLUDES #include @@ -34,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, @@ -74,65 +75,90 @@ namespace Property INPUT_EMBOSS = Dali::Toolkit::TextEditor::Property::INPUT_EMBOSS, OUTLINE = Dali::Toolkit::TextEditor::Property::OUTLINE, INPUT_OUTLINE = Dali::Toolkit::TextEditor::Property::INPUT_OUTLINE, + SMOOTH_SCROLL = Dali::Toolkit::TextEditor::Property::SMOOTH_SCROLL, + SMOOTH_SCROLL_DURATION = Dali::Toolkit::TextEditor::Property::SMOOTH_SCROLL_DURATION, + ENABLE_SCROLL_BAR = Dali::Toolkit::TextEditor::Property::ENABLE_SCROLL_BAR, + SCROLL_BAR_SHOW_DURATION = Dali::Toolkit::TextEditor::Property::SCROLL_BAR_SHOW_DURATION, + SCROLL_BAR_FADE_DURATION = Dali::Toolkit::TextEditor::Property::SCROLL_BAR_FADE_DURATION, + PIXEL_SIZE = Dali::Toolkit::TextEditor::Property::PIXEL_SIZE, + LINE_COUNT = Dali::Toolkit::TextEditor::Property::LINE_COUNT, + ENABLE_SELECTION = Dali::Toolkit::TextEditor::Property::ENABLE_SELECTION, + PLACEHOLDER = Dali::Toolkit::TextEditor::Property::PLACEHOLDER, + LINE_WRAP_MODE = Dali::Toolkit::TextEditor::Property::LINE_WRAP_MODE, /** - * @brief name "smoothScroll", type bool - * @details Enable or disable the smooth scroll animation - */ - SMOOTH_SCROLL = INPUT_OUTLINE + 1, - - /** - * @brief name "smoothScrollDuration", type float - * @details Sets the duration of smooth scroll animation - */ - SMOOTH_SCROLL_DURATION, - - /** - * @brief name "enableScrollBar", type bool - * @details Enable or disable the scroll bar + * @brief The text to display when the TextEditor is empty and inactive. + * @details Name "placeholderText", type Property::STRING. */ - ENABLE_SCROLL_BAR, + PLACEHOLDER_TEXT, /** - * @brief name "scrollBarShowDuration", type float - * @details Sets the duration of scroll bar to show + * @brief The placeholder-text color. + * @details Name "placeholderTextColor", type Property::VECTOR4. */ - SCROLL_BAR_SHOW_DURATION, + PLACEHOLDER_TEXT_COLOR, /** - * @brief name "scrollBarFadeDuration", type float - * @details Sets the duration of scroll bar to fade out + * @brief Enables Text selection using Shift key. + * @details Name "enableShiftSelection", type Property::BOOLEAN. */ - SCROLL_BAR_FADE_DURATION, + ENABLE_SHIFT_SELECTION, /** - * @brief The size of font in pixels. - * @details name "pixelSize", type float + * @brief Enables the grab handles for text selection. + * @details Name "enableGrabHandle", type Property::BOOLEAN. + * @note The default value is true, which means the grab handles are enabled by default. */ - PIXEL_SIZE, + ENABLE_GRAB_HANDLE, /** - * @brief The line count of text. - * @details name "lineCount", type int - * @note this property is read-only. + * @brief Modifies the default text alignment to match the direction of the system language. + * @details Name "matchSystemLanguageDirection", type (Property::BOOLEAN), Read/Write + * @note The default value is false */ - LINE_COUNT, + MATCH_SYSTEM_LANGUAGE_DIRECTION, /** - * @brief The text to display when the TextEditor is empty and inactive. - * @details name "placeholderText", type string + * @brief The type or rendering e.g. bitmap-based. + * @details Name "renderingBackend", type Property::INTEGER. */ - PLACEHOLDER_TEXT, + RENDERING_BACKEND, /** - * @brief The placeholder-text color. - * @details name "placeholderTextColor", type vector4 + * @brief The maximum number of characters that can be inserted. + * @details Name "maxLength", type Property::INTEGER. */ - PLACEHOLDER_TEXT_COLOR + MAX_LENGTH, }; + } // namespace Property -} // namespace DevelText +/** + * @brief Return the input method context of TextEditor. + * + * @param[in] textEditor The instance of TextEditor. + * @return InputMethodContext instance. + */ +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