aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/IPPCModule.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-06-12 19:04:09 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-06-12 19:04:09 +0300
commitca50e0c8fc88acd06d6e1932e9412464bff95edb (patch)
treeaaafb06deca983c1e80c8c34508d23a452e4a235 /Software/Visual_Studio/PPC/Tango.PPC.Common/IPPCModule.cs
parent8a59643571080bfff715f0b0e4bb03e2dee4961a (diff)
downloadTango-ca50e0c8fc88acd06d6e1932e9412464bff95edb.tar.gz
Tango-ca50e0c8fc88acd06d6e1932e9412464bff95edb.zip
Working on PPC modules and loading.
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; }
}
}