X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fdevel-api%2Fcontrols%2Fcontrol-wrapper-impl.cpp;h=1a2ec4be7dc6149c79672227c7a045a4814b38e8;hp=8c7a76e2313231b5965e9380e562fcb6ecf72d27;hb=1d784d083e0c864057e146f3227bb16057faf0aa;hpb=535870c8f9a4033ea411b89d30f2ddc1342ac7ee diff --git a/dali-toolkit/devel-api/controls/control-wrapper-impl.cpp b/dali-toolkit/devel-api/controls/control-wrapper-impl.cpp index 8c7a76e..1a2ec4b 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 ); } @@ -179,6 +180,16 @@ void ControlWrapper::ApplyThemeStyle() } } +Dali::TypeInfo ControlWrapper::GetTypeInfo() +{ + return DevelCustomActor::GetTypeInfo(Self()); +} + +void ControlWrapper::EmitKeyInputFocusSignal( bool focusGained ) +{ + Control::EmitKeyInputFocusSignal( focusGained ); +} + } // namespace Internal } // namespace Toolkit