X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=base%2Fdali-toolkit%2Finternal%2Fstyling%2Fstyle-manager-impl.cpp;h=53c05cde0b129fcbc40aaa85573caf54b56310c9;hp=56b97f87eb474922435f2a1207bc44ac1555422b;hb=fb4c5271bfb173434c5ad0e3e0743d9da688eb16;hpb=022b76df6f53c2860f2684ef1ffee81af1805e2e diff --git a/base/dali-toolkit/internal/styling/style-manager-impl.cpp b/base/dali-toolkit/internal/styling/style-manager-impl.cpp index 56b97f8..53c05cd 100644 --- a/base/dali-toolkit/internal/styling/style-manager-impl.cpp +++ b/base/dali-toolkit/internal/styling/style-manager-impl.cpp @@ -1,18 +1,18 @@ -// -// 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 "style-manager-impl.h" @@ -110,6 +110,11 @@ StyleManager::StyleManager() mThemeBuilderConstants[ PACKAGE_PATH_KEY ] = DEFAULT_PACKAGE_PATH; RequestDefaultTheme(); + + if( Adaptor::IsAvailable() ) + { + StyleMonitor::Get().StyleChangeSignal().Connect( this, &StyleManager::StyleMonitorChange ); + } } StyleManager::~StyleManager() @@ -330,17 +335,9 @@ bool StyleManager::LoadFile( const std::string& filename, std::string& stringOut return false; } -Toolkit::StyleManager::ThemeChangeSignalType& StyleManager::ThemeChangeSignal() -{ - return mThemeChangeSignal; -} - -void StyleManager::EmitThemeChangeSignal() +Toolkit::StyleManager::StyleChangeSignalType& StyleManager::StyleChangeSignal() { - if( !mThemeChangeSignal.Empty() ) - { - mThemeChangeSignal.Emit( Toolkit::StyleManager::Get() ); - } + return mStyleChangeSignal; } void StyleManager::RequestThemeChange( const std::string& themeFile ) @@ -368,7 +365,9 @@ void StyleManager::SetTheme() mSetThemeConnection = false; - EmitThemeChangeSignal(); + StyleChange change; + change.themeChange = true; + mStyleChangeSignal.Emit( Toolkit::StyleManager::Get(), change ); } Toolkit::Builder StyleManager::FindCachedBuilder( const std::string& key ) @@ -387,6 +386,11 @@ void StyleManager::CacheBuilder( Toolkit::Builder builder, const std::string& ke mBuilderCache[ key ] = builder; } +void StyleManager::StyleMonitorChange( StyleMonitor styleMonitor, StyleChange styleChange ) +{ + mStyleChangeSignal.Emit( Toolkit::StyleManager::Get(), styleChange ); +} + } // namespace Internal } // namespace Toolkit