Mercurial > pidgin
annotate finch/gntui.c @ 25425:0fa91206cf5a
Always publish a <photo/> element, even if we have an empty buddy icon.
XEP-0153 requires we always publish the <x/> element, even if we have no
avatar set, so do that, too. I'd also make the whole set of vcard stuff
dependent on the server advertising support, but SOME servers out there
don't.
References #5082 (I suspect this fixes that.)
author | Paul Aurich <paul@darkrain42.org> |
---|---|
date | Sat, 14 Feb 2009 03:57:22 +0000 |
parents | 88796aff14d6 |
children | f5bcb58bdf56 |
rev | line source |
---|---|
15817 | 1 /** |
15870
66dff3dfdea6
Re-sed the copyright notices so they don't all talk about Purple.
Richard Laager <rlaager@wiktel.com>
parents:
15822
diff
changeset
|
2 * finch |
15817 | 3 * |
15870
66dff3dfdea6
Re-sed the copyright notices so they don't all talk about Purple.
Richard Laager <rlaager@wiktel.com>
parents:
15822
diff
changeset
|
4 * Finch is the legal property of its developers, whose names are too numerous |
15817 | 5 * to list here. Please refer to the COPYRIGHT file distributed with this |
6 * source distribution. | |
7 * | |
8 * This program is free software; you can redistribute it and/or modify | |
9 * it under the terms of the GNU General Public License as published by | |
10 * the Free Software Foundation; either version 2 of the License, or | |
11 * (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, | |
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 * GNU General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU General Public License | |
19 * along with this program; if not, write to the Free Software | |
19681
44b4e8bd759b
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
19655
diff
changeset
|
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
15817 | 21 */ |
22218
5152a14d06a3
Include finch.h from these files, instead of internal.h.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22024
diff
changeset
|
22 #include "finch.h" |
18210
b8572b937c09
#include reorganizations to allow compiling with glib < 2.8 using the
Stu Tomlinson <stu@nosnilmot.com>
parents:
15870
diff
changeset
|
23 |
15817 | 24 #include "gntui.h" |
25 | |
26 #include "gntaccount.h" | |
27 #include "gntblist.h" | |
19516
e1751162ab1f
Add certificate UI in finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19117
diff
changeset
|
28 #include "gntcertmgr.h" |
15817 | 29 #include "gntconn.h" |
30 #include "gntconv.h" | |
31 #include "gntdebug.h" | |
32 #include "gntft.h" | |
22248
88796aff14d6
Add a finch log viewer. This is largely copied from Pidgin.
Richard Nelson <wabz@pidgin.im>
parents:
22218
diff
changeset
|
33 #include "gntlog.h" |
15817 | 34 #include "gntnotify.h" |
35 #include "gntplugin.h" | |
36 #include "gntpounce.h" | |
37 #include "gntprefs.h" | |
38 #include "gntrequest.h" | |
22006
1278280fa0b6
Implementation of the roomlist API.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19681
diff
changeset
|
39 #include "gntroomlist.h" |
15817 | 40 #include "gntstatus.h" |
19100 | 41 #include "gntsound.h" |
15817 | 42 |
43 #include <prefs.h> | |
44 | |
45 void gnt_ui_init() | |
46 { | |
47 #ifdef STANDALONE | |
48 gnt_init(); | |
49 #endif | |
50 | |
15822 | 51 purple_prefs_add_none("/purple/gnt"); |
15817 | 52 |
53 /* Accounts */ | |
54 finch_accounts_init(); | |
15822 | 55 purple_accounts_set_ui_ops(finch_accounts_get_ui_ops()); |
15817 | 56 |
57 /* Connections */ | |
58 finch_connections_init(); | |
15822 | 59 purple_connections_set_ui_ops(finch_connections_get_ui_ops()); |
15817 | 60 |
61 /* Initialize the buddy list */ | |
62 finch_blist_init(); | |
15822 | 63 purple_blist_set_ui_ops(finch_blist_get_ui_ops()); |
15817 | 64 |
19100 | 65 /* Initialize sound */ |
66 purple_sound_set_ui_ops(finch_sound_get_ui_ops()); | |
67 | |
15817 | 68 /* Now the conversations */ |
69 finch_conversation_init(); | |
15822 | 70 purple_conversations_set_ui_ops(finch_conv_get_ui_ops()); |
15817 | 71 |
72 /* Notify */ | |
73 finch_notify_init(); | |
15822 | 74 purple_notify_set_ui_ops(finch_notify_get_ui_ops()); |
15817 | 75 |
22006
1278280fa0b6
Implementation of the roomlist API.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19681
diff
changeset
|
76 /* Request */ |
15817 | 77 finch_request_init(); |
15822 | 78 purple_request_set_ui_ops(finch_request_get_ui_ops()); |
15817 | 79 |
22006
1278280fa0b6
Implementation of the roomlist API.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19681
diff
changeset
|
80 /* Pounce */ |
15817 | 81 finch_pounces_init(); |
82 | |
22248
88796aff14d6
Add a finch log viewer. This is largely copied from Pidgin.
Richard Nelson <wabz@pidgin.im>
parents:
22218
diff
changeset
|
83 /* Log */ |
88796aff14d6
Add a finch log viewer. This is largely copied from Pidgin.
Richard Nelson <wabz@pidgin.im>
parents:
22218
diff
changeset
|
84 finch_log_init(); |
88796aff14d6
Add a finch log viewer. This is largely copied from Pidgin.
Richard Nelson <wabz@pidgin.im>
parents:
22218
diff
changeset
|
85 |
22006
1278280fa0b6
Implementation of the roomlist API.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19681
diff
changeset
|
86 /* File transfer */ |
15817 | 87 finch_xfers_init(); |
15822 | 88 purple_xfers_set_ui_ops(finch_xfers_get_ui_ops()); |
15817 | 89 |
22006
1278280fa0b6
Implementation of the roomlist API.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19681
diff
changeset
|
90 /* Roomlist */ |
22024
57cac5dfda2a
Remember the size of the roomlist window. Handle the categories better.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22006
diff
changeset
|
91 finch_roomlist_init(); |
22006
1278280fa0b6
Implementation of the roomlist API.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19681
diff
changeset
|
92 purple_roomlist_set_ui_ops(finch_roomlist_get_ui_ops()); |
1278280fa0b6
Implementation of the roomlist API.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19681
diff
changeset
|
93 |
15817 | 94 gnt_register_action(_("Accounts"), finch_accounts_show_all); |
95 gnt_register_action(_("Buddy List"), finch_blist_show); | |
96 gnt_register_action(_("Buddy Pounces"), finch_pounces_manager_show); | |
19516
e1751162ab1f
Add certificate UI in finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19117
diff
changeset
|
97 gnt_register_action(_("Certificates"), finch_certmgr_show); |
15817 | 98 gnt_register_action(_("Debug Window"), finch_debug_window_show); |
99 gnt_register_action(_("File Transfers"), finch_xfer_dialog_show); | |
100 gnt_register_action(_("Plugins"), finch_plugins_show_all); | |
22006
1278280fa0b6
Implementation of the roomlist API.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19681
diff
changeset
|
101 gnt_register_action(_("Room List"), finch_roomlist_show_all); |
19117
907c41608ada
Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents:
19109
diff
changeset
|
102 gnt_register_action(_("Sounds"), finch_sounds_show_all); |
15817 | 103 gnt_register_action(_("Preferences"), finch_prefs_show_all); |
104 gnt_register_action(_("Statuses"), finch_savedstatus_show_all); | |
105 | |
106 #ifdef STANDALONE | |
107 } | |
108 | |
109 void gnt_ui_uninit() | |
110 { | |
15822 | 111 purple_accounts_set_ui_ops(NULL); |
15817 | 112 finch_accounts_uninit(); |
113 | |
15822 | 114 purple_connections_set_ui_ops(NULL); |
15817 | 115 finch_connections_uninit(); |
116 | |
15822 | 117 purple_blist_set_ui_ops(NULL); |
15817 | 118 finch_blist_uninit(); |
119 | |
15822 | 120 purple_conversations_set_ui_ops(NULL); |
15817 | 121 finch_conversation_uninit(); |
122 | |
15822 | 123 purple_notify_set_ui_ops(NULL); |
15817 | 124 finch_notify_uninit(); |
125 | |
15822 | 126 purple_request_set_ui_ops(NULL); |
15817 | 127 finch_request_uninit(); |
128 | |
129 finch_pounces_uninit(); | |
130 | |
22248
88796aff14d6
Add a finch log viewer. This is largely copied from Pidgin.
Richard Nelson <wabz@pidgin.im>
parents:
22218
diff
changeset
|
131 finch_log_uninit(); |
88796aff14d6
Add a finch log viewer. This is largely copied from Pidgin.
Richard Nelson <wabz@pidgin.im>
parents:
22218
diff
changeset
|
132 |
15817 | 133 finch_xfers_uninit(); |
15822 | 134 purple_xfers_set_ui_ops(NULL); |
15817 | 135 |
22024
57cac5dfda2a
Remember the size of the roomlist window. Handle the categories better.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22006
diff
changeset
|
136 finch_roomlist_uninit(); |
57cac5dfda2a
Remember the size of the roomlist window. Handle the categories better.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22006
diff
changeset
|
137 purple_roomlist_set_ui_ops(NULL); |
57cac5dfda2a
Remember the size of the roomlist window. Handle the categories better.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22006
diff
changeset
|
138 |
15817 | 139 gnt_quit(); |
140 #endif | |
141 } | |
142 |