X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Ftext-controls%2Ftext-label-impl.h;h=54b30dde646454a2367c69ed92ec5c9e47030285;hb=5f6e04b26996da4c06716ce044bdfdb0e7e2e61b;hp=5c6213765c7e2077cee73e457bb6002cebca4be6;hpb=c6b64a162088c12ef1b69aa40234e6d4dd772763;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/controls/text-controls/text-label-impl.h b/dali-toolkit/internal/controls/text-controls/text-label-impl.h index 5c62137..54b30dd 100644 --- a/dali-toolkit/internal/controls/text-controls/text-label-impl.h +++ b/dali-toolkit/internal/controls/text-controls/text-label-impl.h @@ -40,13 +40,6 @@ class TextLabel : public Control, public Text::ControlInterface { public: - // Properties - enum - { - TEXTLABEL_PROPERTY_START_INDEX = Control::CONTROL_PROPERTY_END_INDEX + 1, - TEXTLABEL_PROPERTY_END_INDEX = TEXTLABEL_PROPERTY_START_INDEX + 1000 ///< Reserving 1000 property indices - }; - /** * @copydoc Dali::Toollkit::TextLabel::New() */ @@ -55,7 +48,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. @@ -63,7 +57,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. @@ -78,9 +73,14 @@ private: // From Control virtual void OnInitialize(); /** - * @copydoc Control::OnInitialize() + * @copydoc Control::OnStyleChange() + */ + virtual void OnStyleChange( Toolkit::StyleManager styleManager, StyleChange::Type change ); + + /** + * @copydoc Control::OnRelayout() */ - virtual void OnRelayout( const Vector2& size, ActorSizeContainer& container ); + virtual void OnRelayout( const Vector2& size, RelayoutContainer& container ); /** * @copydoc Control::GetNaturalSize() @@ -97,6 +97,16 @@ private: // From Control */ virtual void RequestTextRelayout(); + /** + * @copydoc Text::ControlInterface::TextChanged() + */ + virtual void TextChanged(); + + /** + * @copydoc Text::ControlInterface::MaxLengthReached() + */ + virtual void MaxLengthReached(); + private: // Implementation /** @@ -121,7 +131,7 @@ private: // Data Text::RendererPtr mRenderer; RenderableActor mRenderableActor; - unsigned int mRenderingBackend; + int mRenderingBackend; }; } // namespace Internal