76 lines
1.9 KiB
C#
76 lines
1.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Virtuoso.Miranda.Plugins;
|
|
using Miranda;
|
|
using Virtuoso.Miranda.Plugins.Collections;
|
|
|
|
[assembly: ExposingPluginAttribute(typeof(AutoConnect))]
|
|
namespace Miranda
|
|
{
|
|
public class AutoConnect : MirandaPlugin
|
|
{
|
|
#region -= [ Plugin Info ]=-
|
|
public override Version Version
|
|
{
|
|
get { return new Version(0, 0, 0, 1); }
|
|
}
|
|
public override string Name
|
|
{
|
|
get { return "AutoConnect"; }
|
|
}
|
|
public override string Author
|
|
{
|
|
get { return "BlubbFish"; }
|
|
}
|
|
public override string Description
|
|
{
|
|
get { return "Plugin to Reconnect Miranda"; }
|
|
}
|
|
public override bool HasOptions
|
|
{
|
|
get { return true; }
|
|
}
|
|
public override Uri HomePage
|
|
{
|
|
get { return new Uri("http://www.blubbfish.net/miranda/autoconnect"); }
|
|
}
|
|
#endregion
|
|
|
|
public AutoConnect()
|
|
{
|
|
}
|
|
|
|
protected override void AfterPluginInitialization()
|
|
{
|
|
base.AfterPluginInitialization();
|
|
}
|
|
|
|
protected override void AfterPluginEnable()
|
|
{
|
|
base.AfterPluginEnable();
|
|
}
|
|
|
|
protected override void AfterMenuItemsPopulation(MenuItemDeclarationCollection items)
|
|
{
|
|
base.AfterMenuItemsPopulation(items);
|
|
}
|
|
|
|
protected override void BeforePluginDisable()
|
|
{
|
|
base.BeforePluginDisable();
|
|
}
|
|
|
|
protected override void BeforeMirandaShutdown()
|
|
{
|
|
base.BeforeMirandaShutdown();
|
|
}
|
|
|
|
public override object InitializeLifetimeService()
|
|
{
|
|
return base.InitializeLifetimeService();
|
|
}
|
|
}
|
|
}
|