X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fcontrols%2Fscrollable%2Fscroll-view%2Fscroll-view-cube-effect.cpp;h=2bb8a26946867b4a17f9795098e95431d1904f21;hb=47602d95266454026fab0b4fb9c745a1c342c5c3;hp=16bc85a2019817bf9be267910bf68e63b24d9d40;hpb=e2eda444afbe82e9591fe198eef339227f90a616;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/public-api/controls/scrollable/scroll-view/scroll-view-cube-effect.cpp b/dali-toolkit/public-api/controls/scrollable/scroll-view/scroll-view-cube-effect.cpp deleted file mode 100644 index 16bc85a..0000000 --- a/dali-toolkit/public-api/controls/scrollable/scroll-view/scroll-view-cube-effect.cpp +++ /dev/null @@ -1,69 +0,0 @@ -// -// Copyright (c) 2014 Samsung Electronics Co., Ltd. -// -// Licensed under the Flora License, Version 1.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://floralicense.org/license/ -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an AS IS BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// - -#include -#include -#include -#include - -using namespace Dali; - -namespace Dali -{ - -namespace Toolkit -{ - -ScrollViewCubeEffect ScrollViewCubeEffect::New() -{ - return ScrollViewCubeEffect(new Internal::ScrollViewCubeEffect()); -} - -ScrollViewCubeEffect::ScrollViewCubeEffect() -{ - -} - -ScrollViewCubeEffect::ScrollViewCubeEffect(Internal::ScrollViewCubeEffect *impl) -: ScrollViewEffect(impl) -{ -} - -ScrollViewCubeEffect ScrollViewCubeEffect::DownCast( BaseHandle handle ) -{ - return ScrollViewCubeEffect( dynamic_cast(handle.GetObjectPtr()) ); -} - -void ScrollViewCubeEffect::ApplyToActor(Actor child, - const Vector3& anchor, - const Vector2& angleSwing, - const Vector2& positionSwing) -{ - GetImpl(*this).ApplyToActor( child, anchor, angleSwing, positionSwing ); -} - -void ScrollViewCubeEffect::ApplyToActor(Actor child, - Actor parentPage, - const Vector3& anchor, - const Vector2& angleSwing, - const Vector2& positionSwing) -{ - GetImpl(*this).ApplyToActor( child, parentPage, anchor, angleSwing, positionSwing ); -} - -} // namespace Toolkit - -} // namespace Dali