X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Ffocus-manager%2Ffocus-manager.cpp;h=a480129d65605de2172401bcbab89b114c89608c;hp=8364ae2363649de3d70c47e125c3ac44ad628687;hb=dc3613bb6248908c267a76e378b04962bce85664;hpb=e2eda444afbe82e9591fe198eef339227f90a616 diff --git a/dali-toolkit/public-api/focus-manager/focus-manager.cpp b/dali-toolkit/public-api/focus-manager/focus-manager.cpp index 8364ae2..a480129 100644 --- a/dali-toolkit/public-api/focus-manager/focus-manager.cpp +++ b/dali-toolkit/public-api/focus-manager/focus-manager.cpp @@ -1,27 +1,27 @@ -// -// 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. + * + */ // CLASS HEADER - #include // EXTERNAL INCLUDES +#include // INTERNAL INCLUDES - #include namespace Dali @@ -30,12 +30,6 @@ namespace Dali namespace Toolkit { -const char* const FocusManager::SIGNAL_FOCUS_CHANGED = "focus-changed"; -const char* const FocusManager::SIGNAL_FOCUS_OVERSHOT = "focus-overshot"; -const char* const FocusManager::SIGNAL_FOCUSED_ACTOR_ACTIVATED = "focused-actor-activated"; -const std::string FocusManager::ACTOR_FOCUSABLE("focusable"); -const std::string FocusManager::IS_FOCUS_GROUP("is-focus-group"); - FocusManager::FocusManager() { } @@ -49,19 +43,22 @@ FocusManager FocusManager::Get() FocusManager manager; // Check whether the focus manager is already created - Dali::Adaptor& adaptor = Dali::Adaptor::Get(); - Dali::BaseHandle handle = adaptor.GetSingleton(typeid(FocusManager)); - if(handle) - { - // If so, downcast the handle of singleton to focus manager - manager = FocusManager(dynamic_cast(handle.GetObjectPtr())); - } - - if(!manager) + SingletonService singletonService( SingletonService::Get() ); + if ( singletonService ) { - // If not, create the focus manager and register it as a singleton - manager = FocusManager(new Internal::FocusManager()); - adaptor.RegisterSingleton(typeid(manager), manager); + Dali::BaseHandle handle = singletonService.GetSingleton(typeid(FocusManager)); + if(handle) + { + // If so, downcast the handle of singleton to focus manager + manager = FocusManager(dynamic_cast(handle.GetObjectPtr())); + } + + if(!manager) + { + // If not, create the focus manager and register it as a singleton + manager = FocusManager(new Internal::FocusManager()); + singletonService.Register(typeid(manager), manager); + } } return manager; @@ -187,17 +184,17 @@ Actor FocusManager::GetFocusGroup(Actor actor) return GetImpl(*this).GetFocusGroup(actor); } -FocusManager::FocusChangedSignalV2& FocusManager::FocusChangedSignal() +FocusManager::FocusChangedSignalType& FocusManager::FocusChangedSignal() { return GetImpl(*this).FocusChangedSignal(); } -FocusManager::FocusOvershotSignalV2& FocusManager::FocusOvershotSignal() +FocusManager::FocusOvershotSignalType& FocusManager::FocusOvershotSignal() { return GetImpl(*this).FocusOvershotSignal(); } -FocusManager::FocusedActorActivatedSignalV2& FocusManager::FocusedActorActivatedSignal() +FocusManager::FocusedActorActivatedSignalType& FocusManager::FocusedActorActivatedSignal() { return GetImpl(*this).FocusedActorActivatedSignal(); }