X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fpublic-api%2Fcommon%2Fstage.cpp;h=cf5c03ab533613d5d93118520b55d2a2c18d5f4e;hb=646f736e77b085c86e982c0d1d4b895c2a431330;hp=9a1e43f08ee158a203dfb98bd3845a0aece2bb3f;hpb=72c608065bd622298f1017f291cd725b28d8ede9;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/public-api/common/stage.cpp b/dali/public-api/common/stage.cpp index 9a1e43f..cf5c03a 100644 --- a/dali/public-api/common/stage.cpp +++ b/dali/public-api/common/stage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2018 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. @@ -90,12 +90,12 @@ Vector2 Stage::GetSize() const return GetImplementation(*this).GetSize(); } -unsigned int Stage::GetLayerCount() const +uint32_t Stage::GetLayerCount() const { return GetImplementation(*this).GetLayerCount(); } -Layer Stage::GetLayer(unsigned int depth) const +Layer Stage::GetLayer(uint32_t depth) const { return GetImplementation(*this).GetLayer(depth); } @@ -146,9 +146,16 @@ Stage::EventProcessingFinishedSignalType& Stage::EventProcessingFinishedSignal() Stage::TouchedSignalType& Stage::TouchedSignal() { + DALI_LOG_WARNING_NOFN("DEPRECATION WARNING: TouchedSignal() is deprecated and will be removed from next release. Use TouchSignal() instead.\n" ); + return GetImplementation(*this).TouchedSignal(); } +Stage::TouchSignalType& Stage::TouchSignal() +{ + return GetImplementation( *this ).TouchSignal(); +} + Stage::WheelEventSignalType& Stage::WheelEventSignal() { return GetImplementation(*this).WheelEventSignal();