Mercurial > pidgin
view libgaim/plugins/mono/GetBuddyBack.cs @ 14599:26e7d03d40c5
[gaim-migrate @ 17326]
Show a placeholder icon when there is no global buddy icon selected.
Someone more familiar with gtk might want to look over there...
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Wed, 20 Sep 2006 09:13:17 +0000 |
parents | 60b1bc8dbf37 |
children | fb83c1d7e154 |
line wrap: on
line source
using Gaim; public class GetBuddyBack : GaimPlugin { public void HandleSig(object[] args) { Buddy buddy = (Buddy)args[0]; Debug.debug(Debug.INFO, "buddyback", "buddy " + buddy.Name + " is back!\n"); } public override void Load() { Debug.debug(Debug.INFO, "buddyback", "loading...\n"); /*Signal.connect(BuddyList.GetHandle(), this, "buddy-back", new Signal.Handler(HandleSig));*/ /*BuddyList.OnBuddyBack.connect(this, new Signal.Handler(HandleSig));*/ } public override void Unload() { } public override void Destroy() { } public override GaimPluginInfo Info() { return new GaimPluginInfo("C# Get Buddy Back", "0.1", "Prints when a Buddy returns", "Longer Description", "Eoin Coffey", "urled"); } }