X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fdevel-api%2Ftransition-effects%2Fcube-transition-effect.cpp;h=01f7dd83e3f76e1929a5d44dfe8484a0ca7493bc;hb=1602fbdc34bd22bd4aea868bef40fb513012414c;hp=de7824441889580d028a60cda155882bbb72958e;hpb=ed318176506ba6763f189728d7c14c00e9e0b909;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/devel-api/transition-effects/cube-transition-effect.cpp b/dali-toolkit/devel-api/transition-effects/cube-transition-effect.cpp index de78244..01f7dd8 100644 --- a/dali-toolkit/devel-api/transition-effects/cube-transition-effect.cpp +++ b/dali-toolkit/devel-api/transition-effects/cube-transition-effect.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 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. @@ -23,10 +23,8 @@ namespace Dali { - namespace Toolkit { - CubeTransitionEffect::CubeTransitionEffect() { } @@ -35,25 +33,25 @@ CubeTransitionEffect::~CubeTransitionEffect() { } -CubeTransitionEffect::CubeTransitionEffect( Internal::CubeTransitionEffect& implementation ) -: Control( implementation ) +CubeTransitionEffect::CubeTransitionEffect(Internal::CubeTransitionEffect& implementation) +: Control(implementation) { } -CubeTransitionEffect::CubeTransitionEffect( Dali::Internal::CustomActor* internal ) -: Control( internal ) +CubeTransitionEffect::CubeTransitionEffect(Dali::Internal::CustomActor* internal) +: Control(internal) { VerifyCustomActorPointer(internal); } -CubeTransitionEffect CubeTransitionEffect::DownCast( BaseHandle handle ) +CubeTransitionEffect CubeTransitionEffect::DownCast(BaseHandle handle) { - return Control::DownCast( handle ); + return Control::DownCast(handle); } -void CubeTransitionEffect::SetTransitionDuration( float duration ) +void CubeTransitionEffect::SetTransitionDuration(float duration) { - GetImpl(*this).SetTransitionDuration( duration ); + GetImpl(*this).SetTransitionDuration(duration); } float CubeTransitionEffect::GetTransitionDuration() const @@ -61,9 +59,9 @@ float CubeTransitionEffect::GetTransitionDuration() const return GetImpl(*this).GetTransitionDuration(); } -void CubeTransitionEffect::SetCubeDisplacement( float displacement ) +void CubeTransitionEffect::SetCubeDisplacement(float displacement) { - GetImpl(*this).SetCubeDisplacement( displacement ); + GetImpl(*this).SetCubeDisplacement(displacement); } float CubeTransitionEffect::GetCubeDisplacement() const @@ -76,24 +74,24 @@ bool CubeTransitionEffect::IsTransitioning() return GetImpl(*this).IsTransitioning(); } -void CubeTransitionEffect::SetCurrentImage( Image image ) +void CubeTransitionEffect::SetCurrentTexture(Texture texture) { - GetImpl(*this).SetCurrentImage( image ); + GetImpl(*this).SetCurrentTexture(texture); } -void CubeTransitionEffect::SetTargetImage( Image image ) +void CubeTransitionEffect::SetTargetTexture(Texture texture) { - GetImpl(*this).SetTargetImage( image ); + GetImpl(*this).SetTargetTexture(texture); } -void CubeTransitionEffect::StartTransition( bool toNextImage ) +void CubeTransitionEffect::StartTransition(bool toNextImage) { - GetImpl(*this).StartTransition( toNextImage ); + GetImpl(*this).StartTransition(toNextImage); } -void CubeTransitionEffect::StartTransition( Vector2 panPosition, Vector2 panDisplacement ) +void CubeTransitionEffect::StartTransition(Vector2 panPosition, Vector2 panDisplacement) { - GetImpl(*this).StartTransition( panPosition, panDisplacement ); + GetImpl(*this).StartTransition(panPosition, panDisplacement); } void CubeTransitionEffect::PauseTransition() @@ -113,7 +111,7 @@ void CubeTransitionEffect::StopTransition() CubeTransitionEffect::TransitionCompletedSignalType& CubeTransitionEffect::TransitionCompletedSignal() { - return GetImpl( *this ).TransitionCompletedSignal(); + return GetImpl(*this).TransitionCompletedSignal(); } } // namespace Toolkit