2007-05-22 13:45:34 +00:00
|
|
|
using System;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2008-07-21 21:12:59 +00:00
|
|
|
namespace OpenMetaverse.GUITestClient
|
2007-05-22 13:45:34 +00:00
|
|
|
{
|
|
|
|
|
public abstract class Interface
|
|
|
|
|
{
|
|
|
|
|
public string Name;
|
|
|
|
|
public string Description;
|
2008-07-21 21:12:59 +00:00
|
|
|
public GridClient Client;
|
2007-05-22 13:45:34 +00:00
|
|
|
public TabPage TabPage;
|
|
|
|
|
|
|
|
|
|
public abstract void Initialize();
|
|
|
|
|
|
|
|
|
|
public abstract void Paint(object sender, PaintEventArgs e);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// When set to true, think will be called.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool Active;
|
|
|
|
|
}
|
|
|
|
|
}
|