aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Application/IPPCApplicationManager.cs
diff options
context:
space:
mode:
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);
}
}