X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fdevel-api%2Fcontrols%2Fcontrol-wrapper-impl.cpp;h=37def2b4f5c24b6969940077cf33cc43119297a7;hb=8aebf59068ab407648c303efb0e593ce8305d699;hp=fbbfa2efd9e0ad946acd5bf4506c2ec88dc26be7;hpb=7845c204ad99f3452a0afb3b2893b941eeb9feb9;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 fbbfa2e..37def2b 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,11 +126,21 @@ void ControlWrapper::RegisterVisual( Property::Index index, Toolkit::Visual::Bas DevelControl::RegisterVisual( *this, index, visual ); } +void ControlWrapper::RegisterVisual( Property::Index index, Toolkit::Visual::Base& visual, int depthIndex ) +{ + DevelControl::RegisterVisual( *this, index, visual, depthIndex ); +} + void ControlWrapper::RegisterVisual( Property::Index index, Toolkit::Visual::Base& visual, bool enabled ) { DevelControl::RegisterVisual( *this, index, visual, enabled ); } +void ControlWrapper::RegisterVisual( Property::Index index, Toolkit::Visual::Base& visual, bool enabled, int depthIndex ) +{ + DevelControl::RegisterVisual( *this, index, visual, enabled, depthIndex ); +} + void ControlWrapper::UnregisterVisual( Property::Index index ) { DevelControl::UnregisterVisual( *this, index ); @@ -169,6 +180,11 @@ void ControlWrapper::ApplyThemeStyle() } } +Dali::TypeInfo ControlWrapper::GetTypeInfo() +{ + return DevelCustomActor::GetTypeInfo(Self()); +} + } // namespace Internal } // namespace Toolkit