From ab33a1073c83ece1a48eb967cfe7fe9b0df568c0 Mon Sep 17 00:00:00 2001 From: Viras- Date: Fri, 20 Sep 2013 19:01:55 +0200 Subject: [PATCH] [WP] added option for running under the lock screen as well --- src/wp/PowerManagement.cs | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/src/wp/PowerManagement.cs b/src/wp/PowerManagement.cs index 2ca0cd0..0b479c6 100644 --- a/src/wp/PowerManagement.cs +++ b/src/wp/PowerManagement.cs @@ -30,13 +30,32 @@ namespace Cordova.Extension.Commands { class PowerManagement : BaseCommand { + /// + /// acquires the stay awake lock by disabling UserIdleDetection mode and optionally disable the ApplicationIdleDetection + /// + /// acquire options + /// exec(win, fail, 'PowerManagement', 'acquire', [runLockScreen]); public void acquire(string options) { + string[] optionStrings = JsonHelper.Deserialize(options); + bool runLockScreen = false; + bool.TryParse(optionStrings[0], out runLockScreen); + PhoneApplicationService.Current.UserIdleDetectionMode = IdleDetectionMode.Disabled; - PhoneApplicationService.Current.ApplicationIdleDetectionMode = IdleDetectionMode.Disabled; + + // check if we should continue running within the lock screen + if (runLockScreen) + { + PhoneApplicationService.Current.ApplicationIdleDetectionMode = IdleDetectionMode.Disabled; + } DispatchCommandResult(); } + /// + /// releases the stay awake lock + /// + /// release options + /// exec(win, fail, 'PowerManagement', 'release', []); public void release(string options) { PhoneApplicationService.Current.UserIdleDetectionMode = IdleDetectionMode.Enabled;