1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.ComponentModel; |
4 |
using System.Data; |
5 |
using System.Drawing; |
6 |
using System.Linq; |
7 |
using System.Text; |
8 |
using System.Windows.Forms; |
9 |
using WeifenLuo.WinFormsUI.Docking; |
10 |
using RomCheater.PluginFramework.Interfaces; |
11 |
using System.Diagnostics; |
12 |
|
13 |
namespace RomCheater.Docking |
14 |
{ |
15 |
public partial class FloatingMemorySearcher : DockContent, |
16 |
IProcessConfig, |
17 |
IAcceptsPlugin<IConfigPlugin>, |
18 |
ISearchInProgress |
19 |
{ |
20 |
public FloatingMemorySearcher() { InitializeComponent(); this.AcceptedPlugin = null; this.AcceptedProcess = null; SearchInProgess = false; } |
21 |
public FloatingMemorySearcher(IConfigPlugin config) : this() { this.AcceptedPlugin = config; } |
22 |
public FloatingMemorySearcher(IConfigPlugin config, Process process) : this() { this.AcceptedPlugin = config; this.AcceptedProcess = process; } |
23 |
|
24 |
#region IProcessConfig Members |
25 |
public Process AcceptedProcess { get; set; } |
26 |
#endregion |
27 |
#region IAcceptsPlugin<IConfigPlugin> Members |
28 |
public IConfigPlugin AcceptedPlugin { get; set; } |
29 |
#endregion |
30 |
#region ISearchInProgress members |
31 |
public bool SearchInProgess { get; private set; } |
32 |
#endregion |
33 |
} |
34 |
} |