X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;ds=sidebyside;f=dali-toolkit%2Finternal%2Ftext%2Ftext-controller.h;h=7e2213422a5245870912be620632a0d39b2ac746;hb=a2de9cf491172cd5da9dc9ed60b17683dab6d7bc;hp=3c6125dd77694f13c813a34ef15f28cc7defa3b3;hpb=dcf0eeebe1e683b311b675e93adcc21a0602e671;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/text/text-controller.h b/dali-toolkit/internal/text/text-controller.h index 3c6125d..7e22134 100644 --- a/dali-toolkit/internal/text/text-controller.h +++ b/dali-toolkit/internal/text/text-controller.h @@ -85,6 +85,7 @@ public: UPDATE_ACTUAL_SIZE = 0x0200, REORDER = 0x0400, ALIGN = 0x0800, + COLOR = 0x1000, ALL_OPERATIONS = 0xFFFF }; @@ -114,6 +115,24 @@ public: void EnableTextInput( DecoratorPtr decorator ); /** + * @brief Enables/disables the mark-up processor. + * + * By default is disabled. + * + * @param[in] enable Whether to enable the mark-up processor. + */ + void SetMarkupProcessorEnabled( bool enable ); + + /** + * @brief Retrieves whether the mark-up processor is enabled. + * + * By default is disabled. + * + * @return @e true if the mark-up processor is enabled, otherwise returns @e false. + */ + bool IsMarkupProcessorEnabled() const; + + /** * @brief Replaces any text previously set. * * @note This will be converted into UTF-32 when stored in the text model. @@ -132,10 +151,10 @@ public: * @brief Remove a given number of characters * * @param[in] cursorOffset Start position from the current cursor position to start deleting characters. - * @param[in] numberOfChars The number of characters to delete from the cursorOffset. + * @param[in] numberOfCharacters The number of characters to delete from the cursorOffset. * @return True if the remove was successful. */ - bool RemoveText( int cursorOffset, int numberOfChars ); + bool RemoveText( int cursorOffset, int numberOfCharacters ); /** * @brief Retrieve the current cursor position. @@ -165,7 +184,7 @@ public: * * @param[in] maxCharacters maximum number of characters to be accepted */ - void SetMaximumNumberOfCharacters( int maxCharacters ); + void SetMaximumNumberOfCharacters( Length maxCharacters ); /** * @brief Sets the maximum number of characters that can be inserted into the TextModel @@ -178,9 +197,8 @@ public: * @brief Set the default font family. * * @param[in] defaultFontFamily The default font family. - * @param[in] userDefined If set by the user */ - void SetDefaultFontFamily( const std::string& defaultFontFamily, bool userDefined ); + void SetDefaultFontFamily( const std::string& defaultFontFamily ); /** * @brief Retrieve the default font family. @@ -206,32 +224,32 @@ public: const std::string& GetDefaultFontStyle() const; /** - * @brief Sets the default font width. + * @brief Sets the default font weight. * - * @param[in] width The font width. + * @param[in] weight The font weight. */ - void SetDefaultFontWidth( FontWidth width ); + void SetDefaultFontWeight( FontWeight weight ); /** - * @brief Retrieves the default font width. + * @brief Retrieves the default font weight. * - * @return The default font width. + * @return The default font weight. */ - FontWidth GetDefaultFontWidth() const; + FontWeight GetDefaultFontWeight() const; /** - * @brief Sets the default font weight. + * @brief Sets the default font width. * - * @param[in] weight The font weight. + * @param[in] width The font width. */ - void SetDefaultFontWeight( FontWeight weight ); + void SetDefaultFontWidth( FontWidth width ); /** - * @brief Retrieves the default font weight. + * @brief Retrieves the default font width. * - * @return The default font weight. + * @return The default font width. */ - FontWeight GetDefaultFontWeight() const; + FontWidth GetDefaultFontWidth() const; /** * @brief Sets the default font slant. @@ -265,7 +283,7 @@ public: * @ brief Update the text after a font change * @param[in] newDefaultFont The new font to change to */ - void UpdateAfterFontChange( std::string& newDefaultFont ); + void UpdateAfterFontChange( const std::string& newDefaultFont ); /** * @brief Set the text color @@ -366,6 +384,104 @@ public: float GetUnderlineHeight() const; /** + * @brief Sets the input text's color. + * + * @param[in] color The input text's color. + */ + void SetInputColor( const Vector4& color ); + + /** + * @brief Retrieves the input text's color. + * + * @return The input text's color. + */ + const Vector4& GetInputColor() const; + + /** + * @brief Sets the input text's font family name. + * + * @param[in] fontFamily The text's font family name. + */ + void SetInputFontFamily( const std::string& fontFamily ); + + /** + * @brief Retrieves the input text's font family name. + * + * @return The input text's font family name. + */ + const std::string& GetInputFontFamily() const; + + /** + * @brief Sets the input text's font style. + * + * @param[in] fontStyle The input text's font style. + */ + void SetInputFontStyle( const std::string& fontStyle ); + + /** + * @brief Retrieves the input text's font style. + * + * @return The input text's font style. + */ + const std::string& GetInputFontStyle() const; + + /** + * @brief Sets the input font's weight. + * + * @param[in] weight The input font's weight. + */ + void SetInputFontWeight( FontWeight weight ); + + /** + * @brief Retrieves the input font's weight. + * + * @return The input font's weight. + */ + FontWeight GetInputFontWeight() const; + + /** + * @brief Sets the input font's width. + * + * @param[in] width The input font's width. + */ + void SetInputFontWidth( FontWidth width ); + + /** + * @brief Retrieves the input font's width. + * + * @return The input font's width. + */ + FontWidth GetInputFontWidth() const; + + /** + * @brief Sets the input font's slant. + * + * @param[in] slant The input font's slant. + */ + void SetInputFontSlant( FontSlant slant ); + + /** + * @brief Retrieves the input font's slant. + * + * @return The input font's slant. + */ + FontSlant GetInputFontSlant() const; + + /** + * @brief Sets the input font's point size. + * + * @param[in] size The input font's point size. + */ + void SetInputFontPointSize( float size ); + + /** + * @brief Retrieves the input font's point size. + * + * @return The input font's point size. + */ + float GetInputFontPointSize() const; + + /** * @brief Called to enable/disable cursor blink. * * @note Only editable controls should calls this. @@ -663,6 +779,11 @@ private: void ClearFontData(); /** + * @brief Helper to clear text's style data. + */ + void ClearStyleData(); + + /** * @brief Private constructor. */ Controller( ControlInterface& controlInterface );