X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Ftext-controls%2Ftext-label-impl.h;h=f15acbf70c5874f52e30dc18019e3f207e3c3ad5;hb=dd0c9395ff85899332844c0acfa604fce5011b6a;hp=298ba1adf20947907f339bd96478e8c5e71057e2;hpb=6ae9cd5f03bd0a8393eebf3cfb4508cab7fd3ede;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 298ba1a..f15acbf 100644 --- a/dali-toolkit/internal/controls/text-controls/text-label-impl.h +++ b/dali-toolkit/internal/controls/text-controls/text-label-impl.h @@ -1,8 +1,8 @@ -#ifndef __DALI_TOOLKIT_INTERNAL_TEXT_LABEL_H__ -#define __DALI_TOOLKIT_INTERNAL_TEXT_LABEL_H__ +#ifndef DALI_TOOLKIT_INTERNAL_TEXT_LABEL_H +#define DALI_TOOLKIT_INTERNAL_TEXT_LABEL_H /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2017 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -21,6 +21,7 @@ // INTERNAL INCLUDES #include #include +#include #include #include #include @@ -72,57 +73,39 @@ private: // From Control /** * @copydoc Control::OnInitialize() */ - virtual void OnInitialize(); + virtual void OnInitialize() override ; /** * @copydoc Control::OnStyleChange() */ - virtual void OnStyleChange( Toolkit::StyleManager styleManager, StyleChange::Type change ); + virtual void OnStyleChange( Toolkit::StyleManager styleManager, StyleChange::Type change ) override ; /** * @copydoc Control::OnRelayout() */ - virtual void OnRelayout( const Vector2& size, RelayoutContainer& container ); + virtual void OnRelayout( const Vector2& size, RelayoutContainer& container ) override ; /** * @copydoc Control::GetNaturalSize() */ - virtual Vector3 GetNaturalSize(); + virtual Vector3 GetNaturalSize() override ; /** * @copydoc Control::GetHeightForWidth() */ - virtual float GetHeightForWidth( float width ); + virtual float GetHeightForWidth( float width ) override ; /** - * @copydoc Text::ControlInterface::AddDecoration() + * @copydoc Control::OnPropertySet() */ - virtual void AddDecoration( Actor& actor, bool needsClipping ); + virtual void OnPropertySet( Property::Index index, Property::Value propertyValue ) override ; - /** - * @copydoc Control::OnStageConnection() - */ - virtual void OnStageConnection( int depth ); + // From ControlInterface /** * @copydoc Text::ControlInterface::RequestTextRelayout() */ - virtual void RequestTextRelayout(); - - /** - * @copydoc Text::ControlInterface::TextChanged() - */ - virtual void TextChanged(); - - /** - * @copydoc Text::ControlInterface::MaxLengthReached() - */ - virtual void MaxLengthReached(); - - /** - * @copydoc Text::ControlInterface::InputStyleChanged() - */ - virtual void InputStyleChanged( Text::InputStyle::Mask inputStyleMask ); + virtual void RequestTextRelayout() override ; private: // from TextScroller @@ -198,4 +181,4 @@ inline const Toolkit::Internal::TextLabel& GetImpl( const Toolkit::TextLabel& te } // namespace Dali -#endif // __DALI_TOOLKIT_INTERNAL_TEXT_LABEL_H__ +#endif // DALI_TOOLKIT_INTERNAL_TEXT_LABEL_H