X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fcontrols%2Ftext-controls%2Ftext-editor.h;h=152a8b7abdd41754c2ee4a05e5f06a966552515a;hb=63f9b5207c2794cdc460d587723be89585872a51;hp=1de373027bc64b01f0ac943478ccde99adb58a38;hpb=aeef40d5dd70c7d878c7664986913ef2c6675a03;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/public-api/controls/text-controls/text-editor.h b/dali-toolkit/public-api/controls/text-controls/text-editor.h index 1de3730..152a8b7 100644 --- a/dali-toolkit/public-api/controls/text-controls/text-editor.h +++ b/dali-toolkit/public-api/controls/text-controls/text-editor.h @@ -40,9 +40,10 @@ class TextEditor; * @brief A control which provides a multi-line editable text editor. * * * Signals - * | %Signal Name | Method | - * |----------------------|-----------------------------------------------------| - * | textChanged | @ref TextChangedSignal() | + * | %Signal Name | Method | | + * |----------------------|--------------------------------|--------------------| + * | textChanged | @ref TextChangedSignal() | @SINCE_1_1.37 | + * | inputStyleChanged | @ref InputStyleChangedSignal() | @SINCE_1_2_2 | * */ class DALI_IMPORT_API TextEditor : public Control @@ -51,6 +52,7 @@ public: /** * @brief The start and end property ranges for this control. + * @SINCE_1_1.37 */ enum PropertyRange { @@ -60,6 +62,7 @@ public: /** * @brief An enumeration of properties belonging to the TextEditor class. + * @SINCE_1_1.37 */ struct Property { @@ -108,25 +111,61 @@ public: }; }; + /** + * @brief Mask used by the signal InputStyleChangedSignal(). Notifies which parameters of the input style have changed. + * + * @SINCE_1_2_2 + */ + struct InputStyle + { + enum Mask + { + NONE = 0x0000, ///< @SINCE_1_2_2 + COLOR = 0x0001, ///< @SINCE_1_2_2 + FONT_FAMILY = 0x0002, ///< @SINCE_1_2_2 + POINT_SIZE = 0x0004, ///< @SINCE_1_2_2 + FONT_STYLE = 0x0008, ///< @SINCE_1_2_2 + LINE_SPACING = 0x0010, ///< @SINCE_1_2_2 + UNDERLINE = 0x0020, ///< @SINCE_1_2_2 + SHADOW = 0x0040, ///< @SINCE_1_2_2 + EMBOSS = 0x0080, ///< @SINCE_1_2_2 + OUTLINE = 0x0100 ///< @SINCE_1_2_2 + }; + }; + // Type Defs - /// @brief Text changed signal type. + /** + * @brief Text changed signal type. + * @SINCE_1_1.37 + */ typedef Signal TextChangedSignalType; /** + * @brief Input Style changed signal type. + * @SINCE_1_2_2 + */ + typedef Signal InputStyleChangedSignalType; + + /** * @brief Create the TextEditor control. + * + * @SINCE_1_1.37 * @return A handle to the TextEditor control. */ static TextEditor New(); /** * @brief Creates an empty handle. + * + * @SINCE_1_1.37 */ TextEditor(); /** * @brief Copy constructor. * + * @SINCE_1_1.37 * @param[in] handle The handle to copy from. */ TextEditor( const TextEditor& handle ); @@ -134,6 +173,7 @@ public: /** * @brief Assignment operator. * + * @SINCE_1_1.37 * @param[in] handle The handle to copy from. * @return A reference to this. */ @@ -143,6 +183,7 @@ public: * @brief Destructor. * * This is non-virtual since derived Handle types must not contain data or virtual methods. + * @SINCE_1_1.37 */ ~TextEditor(); @@ -152,6 +193,7 @@ public: * If the BaseHandle points is a TextEditor the downcast returns a valid handle. * If not the returned handle is left empty. * + * @SINCE_1_1.37 * @param[in] handle Handle to an object. * @return handle to a TextEditor or an empty handle. */ @@ -166,15 +208,33 @@ public: * @code * void YourCallbackName( TextEditor textEditor ); * @endcode + * + * @SINCE_1_1.37 * @return The signal to connect to. */ TextChangedSignalType& TextChangedSignal(); + /** + * @brief This signal is emitted when the input style is updated as a consequence of a change in the cursor position. + * i.e. The signal is not emitted when the input style is updated through the property system. + * + * A callback of the following type may be connected. The @p mask parameter notifies which parts of the style have changed. + * @code + * void YourCallbackName( TextEditor textEditor, TextEditor::InputStyle::Mask mask ); + * @endcode + * + * @SINCE_1_2_2 + * @return The signal to connect to. + */ + InputStyleChangedSignalType& InputStyleChangedSignal(); + public: // Not intended for application developers + /// @cond internal /** * @brief Creates a handle using the Toolkit::Internal implementation. * + * @SINCE_1_1.37 * @param[in] implementation The Control implementation. */ DALI_INTERNAL TextEditor( Internal::TextEditor& implementation ); @@ -182,9 +242,11 @@ public: // Not intended for application developers /** * @brief Allows the creation of this Control from an Internal::CustomActor pointer. * + * @SINCE_1_1.37 * @param[in] internal A pointer to the internal CustomActor. */ explicit DALI_INTERNAL TextEditor( Dali::Internal::CustomActor* internal ); + /// @endcond }; /**