Revert "[Tizen] keygrab & ecore-wl-window-handle c# binding"
[platform/core/uifw/dali-adaptor.git] / adaptors / devel-api / adaptor-framework / window-devel.cpp
index 70ad18e..b6f977c 100644 (file)
@@ -55,6 +55,96 @@ bool IsVisible( Window window )
   return GetImplementation( window ).IsVisible();
 }
 
+unsigned int GetSupportedAuxiliaryHintCount( Window window )
+{
+  return GetImplementation( window ).GetSupportedAuxiliaryHintCount();
+}
+
+std::string GetSupportedAuxiliaryHint( Window window, unsigned int index )
+{
+  return GetImplementation( window ).GetSupportedAuxiliaryHint( index );
+}
+
+unsigned int AddAuxiliaryHint( Window window, const std::string& hint, const std::string& value )
+{
+  return GetImplementation( window ).AddAuxiliaryHint( hint, value );
+}
+
+bool RemoveAuxiliaryHint( Window window, unsigned int id )
+{
+  return GetImplementation( window ).RemoveAuxiliaryHint( id );
+}
+
+bool SetAuxiliaryHintValue( Window window, unsigned int id, const std::string& value )
+{
+  return GetImplementation( window ).SetAuxiliaryHintValue( id, value );
+}
+
+std::string GetAuxiliaryHintValue( Window window, unsigned int id )
+{
+  return GetImplementation( window ).GetAuxiliaryHintValue( id );
+}
+
+unsigned int GetAuxiliaryHintId( Window window, const std::string& hint )
+{
+  return GetImplementation( window ).GetAuxiliaryHintId( hint );
+}
+
+void SetInputRegion( Window window, const Rect< int >& inputRegion )
+{
+  return GetImplementation( window ).SetInputRegion( inputRegion );
+}
+
+void SetType( Window window, Type type )
+{
+  GetImplementation( window ).SetType( type );
+}
+
+Type GetType( Window window )
+{
+  return GetImplementation( window ).GetType();
+}
+
+bool SetNotificationLevel( Window window, NotificationLevel::Type level )
+{
+  return GetImplementation( window ).SetNotificationLevel( level );
+}
+
+NotificationLevel::Type GetNotificationLevel( Window window )
+{
+  return GetImplementation( window ).GetNotificationLevel();
+}
+
+void SetOpaqueState( Window window, bool opaque )
+{
+  GetImplementation( window ).SetOpaqueState( opaque );
+}
+
+bool IsOpaqueState( Window window )
+{
+  return GetImplementation( window ).IsOpaqueState();
+}
+
+bool SetScreenMode( Window window, ScreenMode::Type screenMode )
+{
+  return GetImplementation( window ).SetScreenMode( screenMode );
+}
+
+ScreenMode::Type GetScreenMode( Window window )
+{
+  return GetImplementation( window ).GetScreenMode();
+}
+
+bool SetBrightness( Window window, int brightness )
+{
+  return GetImplementation( window ).SetBrightness( brightness );
+}
+
+int GetBrightness( Window window )
+{
+  return GetImplementation( window ).GetBrightness();
+}
+
 } // namespace DevelWindow
 
 } // namespace Dali