Fix InputMethodContext to work well in multi-window env
[platform/core/uifw/dali-adaptor.git] / dali / integration-api / scene-holder.cpp
index ca5e4f4..8f456d9 100644 (file)
@@ -83,6 +83,11 @@ Vector4 SceneHolder::GetBackgroundColor() const
   return GetImplementation(*this).GetBackgroundColor();
 }
 
+Any SceneHolder::GetNativeHandle() const
+{
+  return GetImplementation(*this).GetNativeHandle();
+}
+
 void SceneHolder::FeedTouchPoint( Dali::TouchPoint& point, int timeStamp )
 {
   Integration::Point convertedPoint( point );
@@ -101,6 +106,11 @@ void SceneHolder::FeedKeyEvent( Dali::KeyEvent& keyEvent )
   GetImplementation(*this).FeedKeyEvent( convertedEvent );
 }
 
+SceneHolder SceneHolder::Get( Actor actor )
+{
+  return Internal::Adaptor::SceneHolder::Get( actor );
+}
+
 }// Integration
 
 } // Dali