using System.Drawing;
namespace DesktopMagicPluginAPI
{
///
/// Defines properties and methods that provide information about the main application.
///
public interface IPluginData
{
///
/// Gets the font of the main application.
///
string Font { get; }
///
/// Gets the color of the main application.
///
Color Color { get; }
///
/// Gets the window size of the plugin window.
///
Point WindowSize { get; }
///
/// Gets the window position of the plugin window.
///
Point WindowPosition { get; }
///
/// Gets the name of the plugin.
///
string PluginName { get; }
///
/// Gets the path of the parent directory of the plugin.
///
string PluginPath { get; }
///
/// Updates the plugin window.
///
void UpdateWindow();
}
}