X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Ftext-controller.h;h=fa4f966f756917c17a72f57bc1e5201f520e1e2f;hp=69c210d997a6bcfbba382ebb3848160bb21b7f64;hb=785904f5477a648bc0005dcbb39bd3a85077e32d;hpb=c6efb3b452f3cfb590bcec4c0669dd30acd0a377 diff --git a/dali-toolkit/internal/text/text-controller.h b/dali-toolkit/internal/text/text-controller.h index 69c210d..fa4f966 100644 --- a/dali-toolkit/internal/text/text-controller.h +++ b/dali-toolkit/internal/text/text-controller.h @@ -19,23 +19,14 @@ */ // EXTERNAL INCLUDES -#include #include -#include -#include #include -#include -#include -#include -#include // INTERNAL INCLUDES #include #include -#include #include #include -#include namespace Dali { @@ -47,7 +38,7 @@ namespace Text { class Controller; -class LayoutEngine; +class View; typedef IntrusivePtr ControllerPtr; typedef Dali::Toolkit::Text::ControlInterface ControlInterface; @@ -187,8 +178,9 @@ 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 ); + void SetDefaultFontFamily( const std::string& defaultFontFamily, bool userDefined ); /** * @brief Retrieve the default font family. @@ -226,6 +218,12 @@ public: float GetDefaultPointSize() const; /** + * @ brief Update the text after a font change + * @param[in] newDefaultFont The new font to change to + */ + void UpdateAfterFontChange( std::string& newDefaultFont ); + + /** * @brief Set the text color * * @param textColor The text color @@ -503,6 +501,12 @@ public: void InsertText( const std::string& text, InsertType type ); /** + * @brief Checks if text is selected and if so removes it. + * @return true if text was removed + */ + bool RemoveSelectedText(); + + /** * @brief Called by editable UI controls when a tap gesture occurs. * @param[in] tapCount The number of taps. * @param[in] x The x position relative to the top-left of the parent control. @@ -519,6 +523,15 @@ public: void PanEvent( Gesture::State state, const Vector2& displacement ); /** + * @brief Called by editable UI controls when a long press gesture occurs. + * + * @param[in] state The state of the gesture. + * @param[in] x The x position relative to the top-left of the parent control. + * @param[in] y The y position relative to the top-left of the parent control. + */ + void LongPressEvent( Gesture::State state, float x, float y ); + + /** * @brief Creates a selection event. * * It could be called from the TapEvent (double tap) or when the text selection popup's sellect all button is pressed. @@ -539,6 +552,17 @@ public: ImfManager::ImfCallbackData OnImfEvent( ImfManager& imfManager, const ImfManager::ImfEventData& imfEvent ); /** + * @brief Paste given string into Text model + * @param[in] stringToPaste this string will be inserted into the text model + */ + void PasteText( const std::string& stringToPaste ); + + /** + * @brief Event from Clipboard notifying an Item has been selected for pasting + */ + void PasteClipboardItemEvent(); + + /** * @copydoc Dali::Toolkit::Text::Decorator::ControllerInterface::GetTargetSize() */ virtual void GetTargetSize( Vector2& targetSize ); @@ -568,6 +592,13 @@ protected: private: /** + * @brief Helper to KeyEvent() to handle the backspace case. + * + * @return True if a character was deleted. + */ + bool BackspaceKeyEvent(); + + /** * @brief Helper to clear font-specific data. */ void ShowPlaceholderText();