aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Application
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2019-04-23 16:13:41 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2019-04-23 16:13:41 +0300
commitba4aec4c691476d68b3da383a70bff42341c7171 (patch)
treecff1ec9b2b4c6bc09ceb4d2a7a64f8cf1e6a8fc0 /Software/Visual_Studio/PPC/Tango.PPC.Common/Application
parent2c48f9ef5ee4978f531e18d0c5945f33705bfe46 (diff)
downloadTango-ba4aec4c691476d68b3da383a70bff42341c7171.tar.gz
Tango-ba4aec4c691476d68b3da383a70bff42341c7171.zip
Implemented screen lock for PPC.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Application')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/Application/IPPCApplicationManager.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Application/IPPCApplicationManager.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Application/IPPCApplicationManager.cs
index 2d76b202f..5f58be48b 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Application/IPPCApplicationManager.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Application/IPPCApplicationManager.cs
@@ -94,5 +94,20 @@ namespace Tango.PPC.Common.Application
/// Gets the application build date.
/// </summary>
String BuildDate { get; }
+
+ /// <summary>
+ /// Gets or sets a value indicating whether the screen is currently locked.
+ /// </summary>
+ bool IsScreenLocked { get; set; }
+
+ /// <summary>
+ /// Resets the screen lock timer.
+ /// </summary>
+ void ResetScreenLockTimer();
+
+ /// <summary>
+ /// Invokes a dialog for entering a password and releasing the screen lock.
+ /// </summary>
+ void ReleaseScreenLock();
}
}