Mercurial > pidgin
view plugins/mono/api/GaimPlugin.cs @ 12141:dcd2bcad2f3d
[gaim-migrate @ 14442]
These strings have been bothering me for quite some time. Flame me if you object to the changes. I also changed the default pounce action to 'pop up notification'. This isn't a big deal, as the action(s) you choose are saved as the default for the next time.
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Fri, 18 Nov 2005 23:35:26 +0000 |
| parents | a3302d271199 |
| children |
line wrap: on
line source
namespace Gaim { public class GaimPluginInfo { private string name; private string version; private string summary; private string description; private string author; private string homepage; public GaimPluginInfo(string name, string version, string summary, string description, string author, string homepage) { this.name = name; this.version = version; this.summary = summary; this.description = description; this.author = author; this.homepage = homepage; } public string Name { get { return name; } } public string Version { get { return version; } } public string Summary { get { return summary; } } public string Description { get { return description; } } public string Author { get { return author; } } public string Homepage { get { return homepage; } } } abstract public class GaimPlugin { public abstract void Load(); public abstract void Unload(); public abstract void Destroy(); public abstract GaimPluginInfo Info(); } }
