X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=adaptors%2Fdevel-api%2Fadaptor-framework%2Fwindow-devel.cpp;h=b6f977c06c8c5876849dc7dadf3829a9ca508134;hb=16c6dead54f4cca2ed9ffa9b1ea184696e39d129;hp=70ad18e92f23b32efe0f73fe0dafe2f57de90440;hpb=f1cdfb2f2d85972113d8bb16a775e84aed03d669;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/adaptors/devel-api/adaptor-framework/window-devel.cpp b/adaptors/devel-api/adaptor-framework/window-devel.cpp index 70ad18e..b6f977c 100644 --- a/adaptors/devel-api/adaptor-framework/window-devel.cpp +++ b/adaptors/devel-api/adaptor-framework/window-devel.cpp @@ -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