X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fcontrols%2Fscrollable%2Fscroll-connector.cpp;h=a8dac9ece784976cd54236d58d40d1ba50a0c525;hb=6e824d3bfb11cab305d0d8375b202076d59222b0;hp=ef55cdb3fd142bc8ac2feb1e84bb98b5e3bd70b1;hpb=818994dc0acac601b0b27c0b715259b504ef4ceb;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/public-api/controls/scrollable/scroll-connector.cpp b/dali-toolkit/public-api/controls/scrollable/scroll-connector.cpp index ef55cdb..a8dac9e 100644 --- a/dali-toolkit/public-api/controls/scrollable/scroll-connector.cpp +++ b/dali-toolkit/public-api/controls/scrollable/scroll-connector.cpp @@ -1,18 +1,19 @@ -// -// 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. -// +/* + * Copyright (c) 2014 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * 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 @@ -31,8 +32,6 @@ const char* const ScrollConnector::OVERSHOOT_PROPERTY_NAME = "overshoot"; const Property::Index ScrollConnector::SCROLL_POSITION = Internal::ScrollConnector::SCROLL_POSITION; const Property::Index ScrollConnector::OVERSHOOT = Internal::ScrollConnector::OVERSHOOT; -const char* const ScrollConnector::DOMAIN_CHANGED_SIGNAL_NAME = "domain-changed"; - ScrollConnector ScrollConnector::New() { return ScrollConnector( Internal::ScrollConnector::New() ); @@ -76,11 +75,26 @@ float ScrollConnector::GetContentLength() const return GetImpl(*this).GetContentLength(); } -Constrainable ScrollConnector::GetScrollPositionObject() const +Handle ScrollConnector::GetScrollPositionObject() const { return GetImpl(*this).GetScrollPositionObject(); } +void ScrollConnector::SetScrollPosition( float position ) +{ + GetImpl(*this).SetScrollPosition( position ); +} + +float ScrollConnector::GetScrollPosition() const +{ + return GetImpl(*this).GetScrollPosition(); +} + +ScrollConnector::ScrollPositionChangedSignalType& ScrollConnector::ScrollPositionChangedSignal() +{ + return GetImpl(*this).ScrollPositionChangedSignal(); +} + ScrollConnector::DomainChangedSignalType& ScrollConnector::DomainChangedSignal() { return GetImpl(*this).DomainChangedSignal();