X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Ftext-controls%2Ftext-field-impl.h;h=fa55c77ee52be42bd8d71807af3771555c17c3aa;hp=23fa0e9d2178dddfdfdfa10795c1ee0527bb4512;hb=09591ca3eb1fb1760a9dda23df1848ed7abd43a4;hpb=f384d637fc0bfd41b4b93221f246719904501c57 diff --git a/dali-toolkit/internal/controls/text-controls/text-field-impl.h b/dali-toolkit/internal/controls/text-controls/text-field-impl.h index 23fa0e9..fa55c77 100644 --- a/dali-toolkit/internal/controls/text-controls/text-field-impl.h +++ b/dali-toolkit/internal/controls/text-controls/text-field-impl.h @@ -18,9 +18,13 @@ * */ +// EXTERNAL INCLUDES +#include + // INTERNAL INCLUDES #include #include +#include #include #include #include @@ -50,7 +54,8 @@ public: // Properties /** - * Called when a property of an object of this type is set. + * @brief Called when a property of an object of this type is set. + * * @param[in] object The object whose property is set. * @param[in] index The property index. * @param[in] value The new property value. @@ -58,7 +63,8 @@ public: static void SetProperty( BaseObject* object, Property::Index index, const Property::Value& value ); /** - * Called to retrieve a property of an object of this type. + * @brief Called to retrieve a property of an object of this type. + * * @param[in] object The object whose property is to be retrieved. * @param[in] index The property index. * @return The current value of the property. @@ -73,6 +79,11 @@ private: // From Control virtual void OnInitialize(); /** + * @copydoc Control::OnStyleChange() + */ + virtual void OnStyleChange( Toolkit::StyleManager styleManager, StyleChange change ); + + /** * @copydoc Control::GetNaturalSize() */ virtual Vector3 GetNaturalSize(); @@ -88,6 +99,16 @@ private: // From Control virtual void OnRelayout( const Vector2& size, ActorSizeContainer& container ); /** + * @copydoc Control::OnKeyInputFocusGained() + */ + virtual void OnKeyInputFocusGained(); + + /** + * @copydoc Control::OnKeyInputFocusLost() + */ + virtual void OnKeyInputFocusLost(); + + /** * Received for single & double taps */ virtual void OnTap( const TapGesture& tap ); @@ -98,6 +119,15 @@ private: // From Control virtual bool OnKeyEvent(const KeyEvent& event); /** + * @brief Event received from IMF manager + * + * @param[in] imfManager The IMF manager. + * @param[in] imfEvent The event received. + * @return A data struture indicating if update is needed, cursor position and current text. + */ + ImfManager::ImfCallbackData OnImfEvent( ImfManager& imfManager, const ImfManager::ImfEventData& imfEvent ); + + /** * @copydoc Text::ControlInterface::RequestTextRelayout() */ virtual void RequestTextRelayout(); @@ -105,6 +135,21 @@ private: // From Control private: // Implementation /** + * @brief Enable or disable clipping. + * + * @param[in] clipping True if clipping should be enabled. + * @param[in] size The area to clip within. + */ + void EnableClipping( bool clipping, const Vector2& size ); + + /** + * @brief Callback when keyboard is shown/hidden. + * + * @param[in] keyboardShown True if keyboard is shown. + */ + void KeyboardStatusChanged( bool keyboardShown ); + + /** * Construct a new TextField. */ TextField(); @@ -125,8 +170,12 @@ private: // Data Text::ControllerPtr mController; Text::RendererPtr mRenderer; Text::DecoratorPtr mDecorator; + Text::ClipperPtr mClipper; ///< For EXCEED_POLICY_CLIP + + RenderableActor mRenderableActor; - unsigned int mRenderingBackend; + int mRenderingBackend; + int mExceedPolicy; }; } // namespace Internal