X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=automated-tests%2Fsrc%2Fdali-toolkit%2Fdali-toolkit-test-utils%2Ftoolkit-style-monitor.cpp;h=65750c1e1e78c87917dd26088b212bc48a2c187e;hb=2bba426880bd73a3b763623a3b32c3bd23b7dd90;hp=6b200637be3cab133e5728eac9c09b4d2167d4f5;hpb=30f6ca1e541089b19f2b349a8a12d8a5bcaf2f9e;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-style-monitor.cpp b/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-style-monitor.cpp index 6b20063..65750c1 100644 --- a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-style-monitor.cpp +++ b/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-style-monitor.cpp @@ -1,24 +1,25 @@ -// -// 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 "toolkit-style-monitor.h" #include #include -#include +#include namespace Dali { @@ -45,15 +46,15 @@ public: // Style Information void SetTheme(std::string theme); public: // Signals - Dali::StyleMonitor::StyleChangeSignalV2& StyleChangeSignal(); + Dali::StyleMonitor::StyleChangeSignalType& StyleChangeSignal(); - void EmitStyleChangeSignal(StyleChange styleChange) + void EmitStyleChangeSignal(StyleChange::Type styleChange) { mStyleChangeSignal.Emit(Dali::StyleMonitor(this), styleChange); } private: - Dali::StyleMonitor::StyleChangeSignalV2 mStyleChangeSignal; + Dali::StyleMonitor::StyleChangeSignalType mStyleChangeSignal; static Dali::StyleMonitor mToolkitStyleMonitor; std::string mTheme; }; @@ -95,14 +96,11 @@ const std::string& StyleMonitor::GetTheme() const void StyleMonitor::SetTheme(std::string path) { - StyleChange styleChange; - styleChange.themeChange = true; - styleChange.themeFilePath = path; mTheme = path; - EmitStyleChangeSignal(styleChange); + EmitStyleChangeSignal( StyleChange::THEME_CHANGE ); } -Dali::StyleMonitor::StyleChangeSignalV2& StyleMonitor::StyleChangeSignal() +Dali::StyleMonitor::StyleChangeSignalType& StyleMonitor::StyleChangeSignal() { return mStyleChangeSignal; } @@ -164,12 +162,12 @@ void StyleMonitor::SetTheme(std::string themeFilePath) GetImplementation(*this).SetTheme(themeFilePath); } -StyleMonitor::StyleChangeSignalV2& StyleMonitor::StyleChangeSignal() +StyleMonitor::StyleChangeSignalType& StyleMonitor::StyleChangeSignal() { return GetImplementation(*this).StyleChangeSignal(); } -void StyleMonitor::EmitStyleChangeSignal(StyleChange styleChange) +void StyleMonitor::EmitStyleChangeSignal(StyleChange::Type styleChange) { GetImplementation(*this).EmitStyleChangeSignal(styleChange); }