Sat, 01 Sep 2007 23:50:22 +0000
Tooltips can be for the buddylist or for conversation windows.
A more appropriate fix for #2723.
| 14478 | 1 | #include "gtkmodule.h" |
| 2 | ||
|
16276
8853d1da70f5
Rename a number of Perl functions which were munged at some point
Warren Togami Jr. <warren@togami.com>
parents:
15899
diff
changeset
|
3 | MODULE = Pidgin::Dialogs PACKAGE = Pidgin::Dialogs PREFIX = pidgin_dialogs_ |
| 14478 | 4 | PROTOTYPES: ENABLE |
| 5 | ||
| 6 | void | |
|
16276
8853d1da70f5
Rename a number of Perl functions which were munged at some point
Warren Togami Jr. <warren@togami.com>
parents:
15899
diff
changeset
|
7 | pidgin_dialogs_destroy_all() |
| 14478 | 8 | |
| 9 | void | |
|
19732
f08436883bb1
Tooltips can be for the buddylist or for conversation windows.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16276
diff
changeset
|
10 | pidgin_dialogs_about(parent) |
|
f08436883bb1
Tooltips can be for the buddylist or for conversation windows.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16276
diff
changeset
|
11 | GtkWidget * parent |
| 14478 | 12 | |
| 13 | void | |
|
16276
8853d1da70f5
Rename a number of Perl functions which were munged at some point
Warren Togami Jr. <warren@togami.com>
parents:
15899
diff
changeset
|
14 | pidgin_dialogs_im() |
| 14478 | 15 | |
| 16 | void | |
|
16276
8853d1da70f5
Rename a number of Perl functions which were munged at some point
Warren Togami Jr. <warren@togami.com>
parents:
15899
diff
changeset
|
17 | pidgin_dialogs_im_with_user(account, username) |
|
15899
75f0041f72b8
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <datallah@pidgin.im>
parents:
15590
diff
changeset
|
18 | Purple::Account account |
| 14478 | 19 | const char * username |
| 20 | ||
| 21 | void | |
|
16276
8853d1da70f5
Rename a number of Perl functions which were munged at some point
Warren Togami Jr. <warren@togami.com>
parents:
15899
diff
changeset
|
22 | pidgin_dialogs_info() |
| 14478 | 23 | |
| 24 | void | |
|
16276
8853d1da70f5
Rename a number of Perl functions which were munged at some point
Warren Togami Jr. <warren@togami.com>
parents:
15899
diff
changeset
|
25 | pidgin_dialogs_log() |
| 14478 | 26 | |
| 27 | void | |
|
16276
8853d1da70f5
Rename a number of Perl functions which were munged at some point
Warren Togami Jr. <warren@togami.com>
parents:
15899
diff
changeset
|
28 | pidgin_dialogs_alias_contact(contact) |
|
15899
75f0041f72b8
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <datallah@pidgin.im>
parents:
15590
diff
changeset
|
29 | Purple::BuddyList::Contact contact |
| 14478 | 30 | |
| 31 | void | |
|
16276
8853d1da70f5
Rename a number of Perl functions which were munged at some point
Warren Togami Jr. <warren@togami.com>
parents:
15899
diff
changeset
|
32 | pidgin_dialogs_alias_buddy(buddy) |
|
15899
75f0041f72b8
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <datallah@pidgin.im>
parents:
15590
diff
changeset
|
33 | Purple::BuddyList::Buddy buddy |
| 14478 | 34 | |
| 35 | void | |
|
16276
8853d1da70f5
Rename a number of Perl functions which were munged at some point
Warren Togami Jr. <warren@togami.com>
parents:
15899
diff
changeset
|
36 | pidgin_dialogs_alias_chat(chat) |
|
15899
75f0041f72b8
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <datallah@pidgin.im>
parents:
15590
diff
changeset
|
37 | Purple::BuddyList::Chat chat |
| 14478 | 38 | |
| 39 | void | |
|
16276
8853d1da70f5
Rename a number of Perl functions which were munged at some point
Warren Togami Jr. <warren@togami.com>
parents:
15899
diff
changeset
|
40 | pidgin_dialogs_remove_buddy(buddy) |
|
15899
75f0041f72b8
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <datallah@pidgin.im>
parents:
15590
diff
changeset
|
41 | Purple::BuddyList::Buddy buddy |
| 14478 | 42 | |
| 43 | void | |
|
16276
8853d1da70f5
Rename a number of Perl functions which were munged at some point
Warren Togami Jr. <warren@togami.com>
parents:
15899
diff
changeset
|
44 | pidgin_dialogs_remove_group(group) |
|
15899
75f0041f72b8
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <datallah@pidgin.im>
parents:
15590
diff
changeset
|
45 | Purple::BuddyList::Group group |
| 14478 | 46 | |
| 47 | void | |
|
16276
8853d1da70f5
Rename a number of Perl functions which were munged at some point
Warren Togami Jr. <warren@togami.com>
parents:
15899
diff
changeset
|
48 | pidgin_dialogs_remove_chat(chat) |
|
15899
75f0041f72b8
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <datallah@pidgin.im>
parents:
15590
diff
changeset
|
49 | Purple::BuddyList::Chat chat |
| 14478 | 50 | |
| 51 | void | |
|
16276
8853d1da70f5
Rename a number of Perl functions which were munged at some point
Warren Togami Jr. <warren@togami.com>
parents:
15899
diff
changeset
|
52 | pidgin_dialogs_remove_contact(contact) |
|
15899
75f0041f72b8
Pidgin perl fixes for s/gaim/purple/.
Daniel Atallah <datallah@pidgin.im>
parents:
15590
diff
changeset
|
53 | Purple::BuddyList::Contact contact |