X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fcontrols%2Ftext-controls%2Ftext-field.h;h=1dd97cfe715a7eb11d0f865e4029370efab85851;hp=f678374729084d6562c33a5d8cae1813262fa173;hb=a3b69d118ee5f918a827b23ea76813a7aefad845;hpb=b1fd7c9ac268691ba02ca0b358b82a6f76d31edb diff --git a/dali-toolkit/public-api/controls/text-controls/text-field.h b/dali-toolkit/public-api/controls/text-controls/text-field.h index f678374..1dd97cf 100644 --- a/dali-toolkit/public-api/controls/text-controls/text-field.h +++ b/dali-toolkit/public-api/controls/text-controls/text-field.h @@ -39,7 +39,7 @@ class TextField; /** * @brief A control which provides a single-line editable text field. * - * * Signals + * Signals * | %Signal Name | Method | | * |----------------------|--------------------------------|--------------------| * | textChanged | @ref TextChangedSignal() | @SINCE_1_0.0 | @@ -61,11 +61,15 @@ public: }; /** - * @brief An enumeration of properties belonging to the TextField class. + * @brief Enumeration for the instance of properties belonging to the TextField class. * @SINCE_1_0.0 */ struct Property { + /** + * @brief Enumeration for the instance of properties belonging to the TextField class. + * @SINCE_1_0.0 + */ enum { RENDERING_BACKEND = PROPERTY_START_INDEX, ///< name "renderingBackend", The type or rendering e.g. bitmap-based, type INT @SINCE_1_0.0 @@ -119,7 +123,7 @@ public: }; /** - * @brief Specifies how the text is truncated when it does not fit + * @brief Enumeration for specifying how the text is truncated when it does not fit. * * The default value is \e EXCEED_POLICY_CLIP. * @SINCE_1_0.0 @@ -137,6 +141,11 @@ public: */ struct InputStyle { + /** + * @brief Mask used by the signal InputStyleChangedSignal(). + * + * @SINCE_1_2_2 + */ enum Mask { NONE = 0x0000, ///< @SINCE_1_2_2 @@ -172,9 +181,9 @@ public: typedef Signal InputStyleChangedSignalType; /** - * @brief Create the TextField control. + * @brief Creates the TextField control. * @SINCE_1_0.0 - * @return A handle to the TextField control. + * @return A handle to the TextField control */ static TextField New(); @@ -188,7 +197,7 @@ public: * @brief Copy constructor. * * @SINCE_1_0.0 - * @param[in] handle The handle to copy from. + * @param[in] handle The handle to copy from */ TextField( const TextField& handle ); @@ -196,8 +205,8 @@ public: * @brief Assignment operator. * * @SINCE_1_0.0 - * @param[in] handle The handle to copy from. - * @return A reference to this. + * @param[in] handle The handle to copy from + * @return A reference to this */ TextField& operator=( const TextField& handle ); @@ -210,14 +219,14 @@ public: ~TextField(); /** - * @brief Downcast a handle to TextField. + * @brief Downcasts a handle to TextField. * - * If the BaseHandle points is a TextField the downcast returns a valid handle. - * If not the returned handle is left empty. + * If the BaseHandle points is a TextField, the downcast returns a valid handle. + * If not, the returned handle is left empty. * * @SINCE_1_0.0 - * @param[in] handle Handle to an object. - * @return handle to a TextField or an empty handle. + * @param[in] handle Handle to an object + * @return Handle to a TextField or an empty handle */ static TextField DownCast( BaseHandle handle ); @@ -243,7 +252,7 @@ public: * void YourCallbackName( TextField textField ); * @endcode * @SINCE_1_0.0 - * @return The signal to connect to. + * @return The signal to connect to */ MaxLengthReachedSignalType& MaxLengthReachedSignal(); @@ -257,7 +266,7 @@ public: * @endcode * * @SINCE_1_2_2 - * @return The signal to connect to. + * @return The signal to connect to */ InputStyleChangedSignalType& InputStyleChangedSignal(); @@ -267,7 +276,7 @@ public: // Not intended for application developers * @brief Creates a handle using the Toolkit::Internal implementation. * * @SINCE_1_0.0 - * @param[in] implementation The Control implementation. + * @param[in] implementation The Control implementation */ DALI_INTERNAL TextField( Internal::TextField& implementation ); @@ -275,7 +284,7 @@ public: // Not intended for application developers * @brief Allows the creation of this Control from an Internal::CustomActor pointer. * * @SINCE_1_0.0 - * @param[in] internal A pointer to the internal CustomActor. + * @param[in] internal A pointer to the internal CustomActor */ explicit DALI_INTERNAL TextField( Dali::Internal::CustomActor* internal ); };