(Window) Added Add/Show API
[platform/core/uifw/dali-adaptor.git] / adaptors / devel-api / adaptor-framework / window-devel.cpp
index 48898e5..70ad18e 100644 (file)
@@ -40,6 +40,21 @@ bool IsFocusAcceptable( Window window )
   return GetImplementation( window ).IsFocusAcceptable();
 }
 
+void Show( Window window )
+{
+  GetImplementation( window ).Show();
+}
+
+void Hide( Window window )
+{
+  GetImplementation( window ).Hide();
+}
+
+bool IsVisible( Window window )
+{
+  return GetImplementation( window ).IsVisible();
+}
+
 } // namespace DevelWindow
 
 } // namespace Dali