X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fcontrols%2Fcontrol.cpp;h=ee95b95165d7833465afc84936bd3f2b411ab1d6;hb=26efc210fc636e51a4d3df9ae7fbcc1d2a8bac40;hp=5762fffce3475c0af8695af004fd1bf9501c90e0;hpb=e5208b9110e3aa0fb53d4db1cd19408cc958bfbb;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/public-api/controls/control.cpp b/dali-toolkit/public-api/controls/control.cpp index 5762fff..ee95b95 100644 --- a/dali-toolkit/public-api/controls/control.cpp +++ b/dali-toolkit/public-api/controls/control.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017 Samsung Electronics Co., Ltd. + * Copyright (c) 2019 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. @@ -30,7 +30,6 @@ namespace Dali namespace Toolkit { - Control Control::New() { return Internal::Control::New(); @@ -113,20 +112,6 @@ void Control::SetBackgroundColor( const Vector4& color ) Internal::GetImplementation(*this).SetBackgroundColor( color ); } -Vector4 Control::GetBackgroundColor() const -{ - DALI_LOG_WARNING_NOFN("DEPRECATION WARNING: GetBackgroundColor() is deprecated and will be removed from next release. use Property::BACKGROUND instead.\n" ); - - return Internal::GetImplementation(*this).GetBackgroundColor(); -} - -void Control::SetBackgroundImage( Image image ) -{ - DALI_LOG_WARNING_NOFN("DEPRECATION WARNING: SetBackgroundImage() is deprecated and will be removed from next release. use Property::BACKGROUND instead.\n" ); - - Internal::GetImplementation(*this).SetBackgroundImage( image ); -} - void Control::ClearBackground() { Internal::GetImplementation(*this).ClearBackground(); @@ -170,12 +155,6 @@ Control::ResourceReadySignalType& Control::ResourceReadySignal() return controlImpl.mResourceReadySignal; } -Control::AccessibilityActivateSignalType& Control::AccessibilityActivateSignal() -{ - return Internal::GetImplementation(*this).AccessibilityActivateSignal(); -} - - Control::Control(Internal::Control& implementation) : CustomActor(implementation) { @@ -187,23 +166,6 @@ Control::Control(Dali::Internal::CustomActor* internal) VerifyCustomActorPointer(internal); } -void Control::AccessibilitySetAttribute( const std::string& key, - const std::string value ) -{ - return Internal::GetImplementation( *this ).AccessibilitySetAttribute( key, - value ); -} - -std::string Control::AccessibilityGetAttribute( const std::string& key ) -{ - return Internal::GetImplementation( *this ).AccessibilityGetAttribute( key ); -} - -void Control::AccessibilityEraseAttribute( std::string& key ) -{ - return Internal::GetImplementation( *this ).AccessibilityEraseAttribute( key ); -} - } // namespace Toolkit } // namespace Dali