X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=base%2Fdali-toolkit%2Finternal%2Fcontrols%2Fbuttons%2Fcheck-box-button-impl.cpp;h=c15c15e08e9be4134254df6ac0f12f9eb00f0738;hp=4eb7831028edede2cc5e189d9625b335843ee652;hb=88eec954ad7b59851b423be3b82a4af569f892dd;hpb=30f6ca1e541089b19f2b349a8a12d8a5bcaf2f9e diff --git a/base/dali-toolkit/internal/controls/buttons/check-box-button-impl.cpp b/base/dali-toolkit/internal/controls/buttons/check-box-button-impl.cpp index 4eb7831..c15c15e 100644 --- a/base/dali-toolkit/internal/controls/buttons/check-box-button-impl.cpp +++ b/base/dali-toolkit/internal/controls/buttons/check-box-button-impl.cpp @@ -1,29 +1,29 @@ -// -// 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 "check-box-button-impl.h" // EXTERNAL INCLUDES - #include +#include +#include // INTERNAL INCLUDES - #include "check-box-button-default-painter-impl.h" namespace Dali @@ -75,7 +75,7 @@ Dali::Toolkit::CheckBoxButton CheckBoxButton::New() void CheckBoxButton::SetChecked( bool checked ) { - if( !mDimmed && ( checked != mChecked ) ) + if( !mDisabled && ( checked != mChecked ) ) { // Stores the state. mChecked = checked; @@ -85,8 +85,8 @@ void CheckBoxButton::SetChecked( bool checked ) // Notifies the painter the checkbox has been checked. GetCheckBoxButtonPainter( mPainter )->Checked( handle ); - // Emit signal. - mClickedSignalV2.Emit( handle ); + // Raise state changed signal + mStateChangedSignal.Emit( handle, mChecked ); } } @@ -137,46 +137,46 @@ Actor CheckBoxButton::GetCheckedImage() const return mCheckedImage; } -void CheckBoxButton::SetDimmedBackgroundImage( Image image ) +void CheckBoxButton::SetDisabledBackgroundImage( Image image ) { - SetDimmedBackgroundImage( ImageActor::New( image ) ); + SetDisabledBackgroundImage( ImageActor::New( image ) ); } -void CheckBoxButton::SetDimmedBackgroundImage( Actor image ) +void CheckBoxButton::SetDisabledBackgroundImage( Actor image ) { Toolkit::CheckBoxButton handle( GetOwner() ); - GetCheckBoxButtonPainter( mPainter )->SetDimmedBackgroundImage( handle, image ); + GetCheckBoxButtonPainter( mPainter )->SetDisabledBackgroundImage( handle, image ); } -Actor& CheckBoxButton::GetDimmedBackgroundImage() +Actor& CheckBoxButton::GetDisabledBackgroundImage() { - return mDimmedBackgroundImage; + return mDisabledBackgroundImage; } -Actor CheckBoxButton::GetDimmedBackgroundImage() const +Actor CheckBoxButton::GetDisabledBackgroundImage() const { - return mDimmedBackgroundImage; + return mDisabledBackgroundImage; } -void CheckBoxButton::SetDimmedCheckedImage( Image image ) +void CheckBoxButton::SetDisabledCheckedImage( Image image ) { - SetDimmedCheckedImage( ImageActor::New( image ) ); + SetDisabledCheckedImage( ImageActor::New( image ) ); } -void CheckBoxButton::SetDimmedCheckedImage( Actor image ) +void CheckBoxButton::SetDisabledCheckedImage( Actor image ) { Toolkit::CheckBoxButton handle( GetOwner() ); - GetCheckBoxButtonPainter( mPainter )->SetDimmedCheckedImage( handle, image ); + GetCheckBoxButtonPainter( mPainter )->SetDisabledCheckedImage( handle, image ); } -Actor& CheckBoxButton::GetDimmedCheckedImage() +Actor& CheckBoxButton::GetDisabledCheckedImage() { - return mDimmedCheckedImage; + return mDisabledCheckedImage; } -Actor CheckBoxButton::GetDimmedCheckedImage() const +Actor CheckBoxButton::GetDisabledCheckedImage() const { - return mDimmedCheckedImage; + return mDisabledCheckedImage; } Actor& CheckBoxButton::GetFadeOutBackgroundImage() @@ -191,8 +191,6 @@ Actor& CheckBoxButton::GetFadeOutCheckedImage() void CheckBoxButton::OnButtonInitialize() { - mUseFadeAnimationProperty = Self().RegisterProperty( Toolkit::CheckBoxButton::USE_FADE_ANIMATION_PROPERTY_NAME, false ); - mUseCheckAnimationProperty = Self().RegisterProperty( Toolkit::CheckBoxButton::USE_CHECK_ANIMATION_PROPERTY_NAME, true ); } void CheckBoxButton::OnButtonUp() @@ -217,7 +215,7 @@ float CheckBoxButton::OnAnimationTimeRequested() const void CheckBoxButton::OnActivated() { // When the button is activated, it performs the click action - std::vector attributes; + PropertyValueContainer attributes; DoClickAction(attributes); } @@ -233,7 +231,7 @@ void CheckBoxButton::DoClickAction(const PropertyValueContainer& attributes) } } -bool CheckBoxButton::DoAction(BaseObject* object, const std::string& actionName, const std::vector& attributes) +bool CheckBoxButton::DoAction(BaseObject* object, const std::string& actionName, const PropertyValueContainer& attributes) { bool ret = false;