Mon, 12 Dec 2005 19:30:11 +0000
[gaim-migrate @ 14780]
SF Patch #1362633 from charkins
"This patch adds a submenu (Unread Messages) in the
docklet menu which shows conversations with unseen
messages. The submenu will be insensitive when there
are no conversations with unread messages.
I also removed a second GtkWidget* variable from the
menu building function (s/entry/menuitem), only one was
necessary. A second is now necessary (submenu), but the
scope is limited to an if block."
Plus changes from me so it'd actually compile and work. ;)
committer: Richard Laager <rlaager@pidgin.im>
| 11660 | 1 | import Gaim |
| 2 | ||
| 3 | class BooPlugin(GaimPlugin): | |
| 4 | ||
| 5 | def handle(*args as (object)): | |
| 6 | b as Buddy | |
| 7 | b = args[0] | |
| 8 | Debug.debug(Debug.INFO, "booplugin", "Boo Plugin knows that " + b.Alias + " is away\n") | |
| 9 | ||
| 10 | override def Load(): | |
| 11 | Debug.debug(Debug.INFO, "booplugin", "loading...\n") | |
| 12 | BuddyList.OnBuddyAway.connect(self, handle) | |
| 13 | ||
| 14 | override def Unload(): | |
| 15 | Debug.debug(Debug.INFO, "booplugin", "unloading...\n") | |
| 16 | ||
| 17 | override def Destroy(): | |
| 18 | Debug.debug(Debug.INFO, "booplugin", "destroying...\n") | |
| 19 | ||
| 20 | override def Info(): | |
| 21 | return GaimPluginInfo("Boo Plugin", "0.1", "Test Boo Plugin", "Longer Description", "Eoin Coffey", "urled") | |
| 22 |