aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Application/IPPCApplicationManager.cs
diff options
context:
space:
mode:
authorMirta <mirta@twine-s.com>2020-12-30 16:39:52 +0200
committerMirta <mirta@twine-s.com>2020-12-30 16:39:52 +0200
commit00a491d93733d4625ad329b2ba8237f445364b3f (patch)
tree4b24c6fa78d7648f4bb7cefafa464bb0b063fec4 /Software/Visual_Studio/PPC/Tango.PPC.Common/Application/IPPCApplicationManager.cs
parent124ad4150f80c6846fdee41dbbda9848c105f6e5 (diff)
downloadTango-00a491d9.tar.gz
Tango-00a491d9.zip
merge
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Application/IPPCApplicationManager.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/Application/IPPCApplicationManager.cs31
1 files changed, 0 insertions, 31 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 a9d4e7c3a..7c67ac1a3 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Application/IPPCApplicationManager.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Application/IPPCApplicationManager.cs
@@ -46,11 +46,6 @@ namespace Tango.PPC.Common.Application
event EventHandler SystemRestartRequired;
/// <summary>
- /// Occurs when the updater utility has failed to perform the last update.
- /// </summary>
- event EventHandler UpdaterFailed;
-
- /// <summary>
/// Occurs when the application has encountered an error when initializing.
/// </summary>
event EventHandler<Exception> ApplicationInitializationError;
@@ -66,16 +61,6 @@ namespace Tango.PPC.Common.Application
bool IsInTechnicianMode { get; }
/// <summary>
- /// Gets a value indicating whether an update has occurred before the application started.
- /// </summary>
- bool IsAfterUpdate { get; }
-
- /// <summary>
- /// Gets a value indicating whether the updater utility has failed to perform the last update.
- /// </summary>
- bool IsUpdateFailed { get; }
-
- /// <summary>
/// Shutdown the application.
/// </summary>
void ShutDown();
@@ -106,11 +91,6 @@ namespace Tango.PPC.Common.Application
Version Version { get; }
/// <summary>
- /// Gets the firmware version.
- /// </summary>
- Version FirmwareVersion { get; }
-
- /// <summary>
/// Gets the application build date.
/// </summary>
String BuildDate { get; }
@@ -121,11 +101,6 @@ namespace Tango.PPC.Common.Application
DateTime StartUpDate { get; }
/// <summary>
- /// Gets or sets the application folder.
- /// </summary>
- String StartPath { get; }
-
- /// <summary>
/// Gets or sets a value indicating whether the screen is currently locked.
/// </summary>
bool IsScreenLocked { get; set; }
@@ -139,11 +114,5 @@ namespace Tango.PPC.Common.Application
/// Invokes a dialog for entering a password and releasing the screen lock.
/// </summary>
void ReleaseScreenLock();
-
- /// <summary>
- /// Sets the state of the main window.
- /// </summary>
- /// <param name="state">The state.</param>
- void SetWindowState(WindowState state);
}
}