X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fdevel-api%2Fcontrols%2Fcontrol-wrapper-impl.cpp;h=c5c2d0b3b69471ae177941e4a00128c03c7d4170;hb=20125e47f9f183b0d39972ada01280da8984d942;hp=8c7a76e2313231b5965e9380e562fcb6ecf72d27;hpb=a2d9a530516aa8e8db9ffb1cdfc5e121fc0df46d;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/devel-api/controls/control-wrapper-impl.cpp b/dali-toolkit/devel-api/controls/control-wrapper-impl.cpp index 8c7a76e..c5c2d0b 100755 --- a/dali-toolkit/devel-api/controls/control-wrapper-impl.cpp +++ b/dali-toolkit/devel-api/controls/control-wrapper-impl.cpp @@ -23,6 +23,7 @@ #include #include #include +#include // INTERNAL INCLUDES #include @@ -125,7 +126,7 @@ void ControlWrapper::RegisterVisual( Property::Index index, Toolkit::Visual::Bas DevelControl::RegisterVisual( *this, index, visual ); } -void ControlWrapper::RegisterVisual( Property::Index index, Toolkit::Visual::Base& visual, float depthIndex ) +void ControlWrapper::RegisterVisual( Property::Index index, Toolkit::Visual::Base& visual, int depthIndex ) { DevelControl::RegisterVisual( *this, index, visual, depthIndex ); } @@ -135,7 +136,7 @@ void ControlWrapper::RegisterVisual( Property::Index index, Toolkit::Visual::Bas DevelControl::RegisterVisual( *this, index, visual, enabled ); } -void ControlWrapper::RegisterVisual( Property::Index index, Toolkit::Visual::Base& visual, bool enabled, float depthIndex ) +void ControlWrapper::RegisterVisual( Property::Index index, Toolkit::Visual::Base& visual, bool enabled, int depthIndex ) { DevelControl::RegisterVisual( *this, index, visual, enabled, depthIndex ); } @@ -165,6 +166,11 @@ Dali::Animation ControlWrapper::CreateTransition( const Toolkit::TransitionData& return DevelControl::CreateTransition( *this, handle ); } +void ControlWrapper::EmitKeyInputFocusSignal( bool focusGained ) +{ + Control::EmitKeyInputFocusSignal( focusGained ); +} + void ControlWrapper::ApplyThemeStyle() { Toolkit::StyleManager styleManager = StyleManager::Get(); @@ -179,6 +185,11 @@ void ControlWrapper::ApplyThemeStyle() } } +Dali::TypeInfo ControlWrapper::GetTypeInfo() +{ + return DevelCustomActor::GetTypeInfo(Self()); +} + } // namespace Internal } // namespace Toolkit