aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/IPPCModule.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/IPPCModule.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/IPPCModule.cs15
1 files changed, 5 insertions, 10 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/IPPCModule.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/IPPCModule.cs
index 6c9bf3892..4226e7aad 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/IPPCModule.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/IPPCModule.cs
@@ -17,6 +17,11 @@ namespace Tango.PPC.Common
public interface IPPCModule : IDisposable
{
/// <summary>
+ /// Occurs when the module has been initialized.
+ /// </summary>
+ event EventHandler Initialized;
+
+ /// <summary>
/// Gets the module name.
/// </summary>
String Name { get; }
@@ -37,11 +42,6 @@ namespace Tango.PPC.Common
Type MainViewType { get; }
/// <summary>
- /// Gets or sets a value indicating whether this module is shown under a new window.
- /// </summary>
- bool InNewWindow { get; set; }
-
- /// <summary>
/// Gets the permission required to see and load this module.
/// </summary>
Permissions Permission { get; }
@@ -55,10 +55,5 @@ namespace Tango.PPC.Common
/// Perform any operations required to initialize this module.
/// </summary>
void Initialize();
-
- /// <summary>
- /// Sets a value indicating whether this module is loaded.
- /// </summary>
- bool IsLoaded { set; get; }
}
}