Mon, 07 Sep 2009 19:33:39 +0000
merge of '6942d82d575944b6f6c28653bde5673c80f15bb5'
and '71cb694c7b56ef35b47abdd013200f7127c36198'
| 981 | 1 | /* |
| 15884 | 2 | * purple |
| 981 | 3 | * |
| 15884 | 4 | * Purple is the legal property of its developers, whose names are too numerous |
| 8046 | 5 | * to list here. Please refer to the COPYRIGHT file distributed with this |
| 6 | * source distribution. | |
|
6460
fc288e7221ca
[gaim-migrate @ 6969]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
7 | * |
| 981 | 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 | |
|
19859
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
19692
diff
changeset
|
20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
| 981 | 21 | * |
| 22 | */ | |
|
5872
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5717
diff
changeset
|
23 | #include "internal.h" |
|
5945
941f14d90d22
[gaim-migrate @ 6386]
Christian Hammond <chipx86@chipx86.com>
parents:
5943
diff
changeset
|
24 | #include "conversation.h" |
|
5872
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5717
diff
changeset
|
25 | #include "debug.h" |
|
24519
d4af3d043211
Improve our NetworkManager support in a couple of ways:
Richard Laager <rlaager@pidgin.im>
parents:
23875
diff
changeset
|
26 | #include "network.h" |
|
5872
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5717
diff
changeset
|
27 | #include "notify.h" |
| 981 | 28 | #include "prpl.h" |
|
5872
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5717
diff
changeset
|
29 | #include "request.h" |
|
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5717
diff
changeset
|
30 | #include "util.h" |
| 3738 | 31 | |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
32 | /**************************************************************************/ |
|
22225
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
33 | /** @name Attention Type API */ |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
34 | /**************************************************************************/ |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
35 | PurpleAttentionType * |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
36 | purple_attention_type_new(const char *ulname, const char *name, |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
37 | const char *inc_desc, const char *out_desc) |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
38 | { |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
39 | PurpleAttentionType *attn = g_new0(PurpleAttentionType, 1); |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
40 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
41 | purple_attention_type_set_name(attn, name); |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
42 | purple_attention_type_set_incoming_desc(attn, inc_desc); |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
43 | purple_attention_type_set_outgoing_desc(attn, out_desc); |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
44 | purple_attention_type_set_unlocalized_name(attn, ulname); |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
45 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
46 | return attn; |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
47 | } |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
48 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
49 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
50 | void |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
51 | purple_attention_type_set_name(PurpleAttentionType *type, const char *name) |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
52 | { |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
53 | g_return_if_fail(type != NULL); |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
54 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
55 | type->name = name; |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
56 | } |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
57 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
58 | void |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
59 | purple_attention_type_set_incoming_desc(PurpleAttentionType *type, const char *desc) |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
60 | { |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
61 | g_return_if_fail(type != NULL); |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
62 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
63 | type->incoming_description = desc; |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
64 | } |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
65 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
66 | void |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
67 | purple_attention_type_set_outgoing_desc(PurpleAttentionType *type, const char *desc) |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
68 | { |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
69 | g_return_if_fail(type != NULL); |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
70 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
71 | type->outgoing_description = desc; |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
72 | } |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
73 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
74 | void |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
75 | purple_attention_type_set_icon_name(PurpleAttentionType *type, const char *name) |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
76 | { |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
77 | g_return_if_fail(type != NULL); |
|
25888
d0fdd378a635
Remove trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
25869
diff
changeset
|
78 | |
|
22225
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
79 | type->icon_name = name; |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
80 | } |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
81 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
82 | void |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
83 | purple_attention_type_set_unlocalized_name(PurpleAttentionType *type, const char *ulname) |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
84 | { |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
85 | g_return_if_fail(type != NULL); |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
86 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
87 | type->unlocalized_name = ulname; |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
88 | } |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
89 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
90 | const char * |
|
22251
a7c65a128467
const-ify paramteters to some of the new API I added. I thought I did this already.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22225
diff
changeset
|
91 | purple_attention_type_get_name(const PurpleAttentionType *type) |
|
22225
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
92 | { |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
93 | g_return_val_if_fail(type != NULL, NULL); |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
94 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
95 | return type->name; |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
96 | } |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
97 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
98 | const char * |
|
22251
a7c65a128467
const-ify paramteters to some of the new API I added. I thought I did this already.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22225
diff
changeset
|
99 | purple_attention_type_get_incoming_desc(const PurpleAttentionType *type) |
|
22225
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
100 | { |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
101 | g_return_val_if_fail(type != NULL, NULL); |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
102 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
103 | return type->incoming_description; |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
104 | } |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
105 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
106 | const char * |
|
22251
a7c65a128467
const-ify paramteters to some of the new API I added. I thought I did this already.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22225
diff
changeset
|
107 | purple_attention_type_get_outgoing_desc(const PurpleAttentionType *type) |
|
22225
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
108 | { |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
109 | g_return_val_if_fail(type != NULL, NULL); |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
110 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
111 | return type->outgoing_description; |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
112 | } |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
113 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
114 | const char * |
|
22251
a7c65a128467
const-ify paramteters to some of the new API I added. I thought I did this already.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22225
diff
changeset
|
115 | purple_attention_type_get_icon_name(const PurpleAttentionType *type) |
|
22225
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
116 | { |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
117 | g_return_val_if_fail(type != NULL, NULL); |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
118 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
119 | if(type->icon_name == NULL || *(type->icon_name) == '\0') |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
120 | return NULL; |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
121 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
122 | return type->icon_name; |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
123 | } |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
124 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
125 | const char * |
|
22251
a7c65a128467
const-ify paramteters to some of the new API I added. I thought I did this already.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22225
diff
changeset
|
126 | purple_attention_type_get_unlocalized_name(const PurpleAttentionType *type) |
|
22225
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
127 | { |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
128 | g_return_val_if_fail(type != NULL, NULL); |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
129 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
130 | return type->unlocalized_name; |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
131 | } |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
132 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21720
diff
changeset
|
133 | /**************************************************************************/ |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
134 | /** @name Protocol Plugin API */ |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
135 | /**************************************************************************/ |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
136 | void |
| 15884 | 137 | purple_prpl_got_account_idle(PurpleAccount *account, gboolean idle, |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
138 | time_t idle_time) |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
139 | { |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
140 | g_return_if_fail(account != NULL); |
| 15884 | 141 | g_return_if_fail(purple_account_is_connected(account)); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
142 | |
| 15884 | 143 | purple_presence_set_idle(purple_account_get_presence(account), |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
144 | idle, idle_time); |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
145 | } |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
146 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
147 | void |
| 15884 | 148 | purple_prpl_got_account_login_time(PurpleAccount *account, time_t login_time) |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
149 | { |
| 15884 | 150 | PurplePresence *presence; |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
151 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
152 | g_return_if_fail(account != NULL); |
| 15884 | 153 | g_return_if_fail(purple_account_is_connected(account)); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
154 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
155 | if (login_time == 0) |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
156 | login_time = time(NULL); |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
157 | |
| 15884 | 158 | presence = purple_account_get_presence(account); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
159 | |
| 15884 | 160 | purple_presence_set_login_time(presence, login_time); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
161 | } |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
162 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
163 | void |
| 15884 | 164 | purple_prpl_got_account_status(PurpleAccount *account, const char *status_id, ...) |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
165 | { |
| 15884 | 166 | PurplePresence *presence; |
| 167 | PurpleStatus *status; | |
|
13374
e5da5325b1fa
[gaim-migrate @ 15746]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13335
diff
changeset
|
168 | va_list args; |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
169 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
170 | g_return_if_fail(account != NULL); |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
171 | g_return_if_fail(status_id != NULL); |
| 15884 | 172 | g_return_if_fail(purple_account_is_connected(account)); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
173 | |
| 15884 | 174 | presence = purple_account_get_presence(account); |
| 175 | status = purple_presence_get_status(presence, status_id); | |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
176 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
177 | g_return_if_fail(status != NULL); |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
178 | |
|
13374
e5da5325b1fa
[gaim-migrate @ 15746]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13335
diff
changeset
|
179 | va_start(args, status_id); |
| 15884 | 180 | purple_status_set_active_with_attrs(status, TRUE, args); |
|
13374
e5da5325b1fa
[gaim-migrate @ 15746]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13335
diff
changeset
|
181 | va_end(args); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
182 | } |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
183 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
184 | void |
|
26871
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
185 | purple_prpl_got_account_actions(PurpleAccount *account) |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
186 | { |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
187 | |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
188 | g_return_if_fail(account != NULL); |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
189 | g_return_if_fail(purple_account_is_connected(account)); |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
190 | |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
191 | purple_signal_emit(purple_accounts_get_handle(), "account-actions-changed", |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
192 | account); |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
193 | } |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
194 | |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
195 | void |
| 15884 | 196 | purple_prpl_got_user_idle(PurpleAccount *account, const char *name, |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
197 | gboolean idle, time_t idle_time) |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
198 | { |
| 15884 | 199 | PurplePresence *presence; |
|
18177
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
200 | GSList *list; |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
201 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
202 | g_return_if_fail(account != NULL); |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
203 | g_return_if_fail(name != NULL); |
|
25428
05aef3d5e63e
I think it's reasonable for prpls to call purple_prpl_got_user_idle()
Mark Doliner <markdoliner@pidgin.im>
parents:
24519
diff
changeset
|
204 | g_return_if_fail(purple_account_is_connected(account) || purple_account_is_connecting(account)); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
205 | |
|
18177
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
206 | if ((list = purple_find_buddies(account, name)) == NULL) |
|
12176
ee1aea253ce3
[gaim-migrate @ 14478]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12126
diff
changeset
|
207 | return; |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
208 | |
|
18177
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
209 | while (list) { |
|
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
210 | presence = purple_buddy_get_presence(list->data); |
|
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
211 | list = g_slist_delete_link(list, list); |
|
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
212 | purple_presence_set_idle(presence, idle, idle_time); |
|
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
213 | } |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
214 | } |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
215 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
216 | void |
| 15884 | 217 | purple_prpl_got_user_login_time(PurpleAccount *account, const char *name, |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
218 | time_t login_time) |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
219 | { |
|
18177
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
220 | GSList *list; |
| 15884 | 221 | PurplePresence *presence; |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
222 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
223 | g_return_if_fail(account != NULL); |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
224 | g_return_if_fail(name != NULL); |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
225 | |
|
18177
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
226 | if ((list = purple_find_buddies(account, name)) == NULL) |
|
12176
ee1aea253ce3
[gaim-migrate @ 14478]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12126
diff
changeset
|
227 | return; |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
228 | |
|
12176
ee1aea253ce3
[gaim-migrate @ 14478]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12126
diff
changeset
|
229 | if (login_time == 0) |
|
ee1aea253ce3
[gaim-migrate @ 14478]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12126
diff
changeset
|
230 | login_time = time(NULL); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
231 | |
|
18177
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
232 | while (list) { |
|
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
233 | PurpleBuddy *buddy = list->data; |
|
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
234 | presence = purple_buddy_get_presence(buddy); |
|
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
235 | list = g_slist_delete_link(list, list); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
236 | |
|
18177
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
237 | if (purple_presence_get_login_time(presence) != login_time) |
|
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
238 | { |
|
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
239 | purple_presence_set_login_time(presence, login_time); |
|
15212
2919bfea7c4a
[gaim-migrate @ 17936]
Evan Schoenberg <evands@pidgin.im>
parents:
14254
diff
changeset
|
240 | |
|
18177
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
241 | purple_signal_emit(purple_blist_get_handle(), "buddy-got-login-time", buddy); |
|
6733196cafc6
Update the idleness and login-time for all the blistnodes of the same buddy.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16958
diff
changeset
|
242 | } |
|
15311
f5cf28c6e665
[gaim-migrate @ 18039]
Evan Schoenberg <evands@pidgin.im>
parents:
15212
diff
changeset
|
243 | } |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
244 | } |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
245 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
246 | void |
| 15884 | 247 | purple_prpl_got_user_status(PurpleAccount *account, const char *name, |
|
13374
e5da5325b1fa
[gaim-migrate @ 15746]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13335
diff
changeset
|
248 | const char *status_id, ...) |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
249 | { |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
250 | GSList *list, *l; |
| 15884 | 251 | PurpleBuddy *buddy; |
| 252 | PurplePresence *presence; | |
| 253 | PurpleStatus *status; | |
| 254 | PurpleStatus *old_status; | |
|
13374
e5da5325b1fa
[gaim-migrate @ 15746]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13335
diff
changeset
|
255 | va_list args; |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
256 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
257 | g_return_if_fail(account != NULL); |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
258 | g_return_if_fail(name != NULL); |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
259 | g_return_if_fail(status_id != NULL); |
| 15884 | 260 | g_return_if_fail(purple_account_is_connected(account) || purple_account_is_connecting(account)); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
261 | |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
262 | if((list = purple_find_buddies(account, name)) == NULL) |
|
12176
ee1aea253ce3
[gaim-migrate @ 14478]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12126
diff
changeset
|
263 | return; |
|
ee1aea253ce3
[gaim-migrate @ 14478]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12126
diff
changeset
|
264 | |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
265 | for(l = list; l != NULL; l = l->next) { |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
266 | buddy = l->data; |
|
12176
ee1aea253ce3
[gaim-migrate @ 14478]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12126
diff
changeset
|
267 | |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
268 | presence = purple_buddy_get_presence(buddy); |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
269 | status = purple_presence_get_status(presence, status_id); |
|
12176
ee1aea253ce3
[gaim-migrate @ 14478]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12126
diff
changeset
|
270 | |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
271 | if(NULL == status) |
| 27786 | 272 | /* |
| 273 | * TODO: This should never happen, right? We should call | |
| 274 | * g_warning() or something. | |
| 275 | */ | |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
276 | continue; |
|
12176
ee1aea253ce3
[gaim-migrate @ 14478]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12126
diff
changeset
|
277 | |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
278 | old_status = purple_presence_get_active_status(presence); |
|
12176
ee1aea253ce3
[gaim-migrate @ 14478]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12126
diff
changeset
|
279 | |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
280 | va_start(args, status_id); |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
281 | purple_status_set_active_with_attrs(status, TRUE, args); |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
282 | va_end(args); |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
283 | |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
284 | purple_blist_update_buddy_status(buddy, old_status); |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
285 | } |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
286 | |
|
12126
3b70215e9630
[gaim-migrate @ 14426]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
12108
diff
changeset
|
287 | g_slist_free(list); |
|
12654
2e25e75190c4
[gaim-migrate @ 14997]
Mark Doliner <markdoliner@pidgin.im>
parents:
12377
diff
changeset
|
288 | |
|
27596
bc7058e10c04
Make the comment reflect that we are actually just stopping the typing
Etan Reisner <deryni@pidgin.im>
parents:
26871
diff
changeset
|
289 | /* The buddy is no longer online, they are therefore by definition not |
|
bc7058e10c04
Make the comment reflect that we are actually just stopping the typing
Etan Reisner <deryni@pidgin.im>
parents:
26871
diff
changeset
|
290 | * still typing to us. */ |
| 15884 | 291 | if (!purple_status_is_online(status)) |
| 292 | serv_got_typing_stopped(purple_account_get_connection(account), name); | |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
293 | } |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
294 | |
| 15884 | 295 | void purple_prpl_got_user_status_deactive(PurpleAccount *account, const char *name, |
|
15588
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
296 | const char *status_id) |
|
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
297 | { |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
298 | GSList *list, *l; |
| 15884 | 299 | PurpleBuddy *buddy; |
| 300 | PurplePresence *presence; | |
| 301 | PurpleStatus *status; | |
|
15588
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
302 | |
|
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
303 | g_return_if_fail(account != NULL); |
|
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
304 | g_return_if_fail(name != NULL); |
|
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
305 | g_return_if_fail(status_id != NULL); |
| 15884 | 306 | g_return_if_fail(purple_account_is_connected(account) || purple_account_is_connecting(account)); |
|
15588
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
307 | |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
308 | if((list = purple_find_buddies(account, name)) == NULL) |
|
15588
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
309 | return; |
|
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
310 | |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
311 | for(l = list; l != NULL; l = l->next) { |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
312 | buddy = l->data; |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
313 | |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
314 | presence = purple_buddy_get_presence(buddy); |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
315 | status = purple_presence_get_status(presence, status_id); |
|
15588
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
316 | |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
317 | if(NULL == status) |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
318 | continue; |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
319 | |
|
19692
06e6aba21930
Deactivate only an active status.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19654
diff
changeset
|
320 | if (purple_status_is_active(status)) { |
|
06e6aba21930
Deactivate only an active status.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19654
diff
changeset
|
321 | purple_status_set_active(status, FALSE); |
|
06e6aba21930
Deactivate only an active status.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19654
diff
changeset
|
322 | purple_blist_update_buddy_status(buddy, status); |
|
06e6aba21930
Deactivate only an active status.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19654
diff
changeset
|
323 | } |
|
16958
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
324 | } |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
325 | |
|
c95f16df72f6
this should fix 647, and a few others
Nathan Walp <nwalp@pidgin.im>
parents:
15884
diff
changeset
|
326 | g_slist_free(list); |
|
15588
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
327 | } |
|
e6e89a427ed5
Use the status API to handle mobileness, and convert AIM to use it. This makes mobile buddies prioritze lower in Perons, and ensures the UI is notified of changes in mobileness. Other protocols to follow.
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
328 | |
|
12304
e849bc5e8d5d
[gaim-migrate @ 14608]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12176
diff
changeset
|
329 | static void |
| 15884 | 330 | do_prpl_change_account_status(PurpleAccount *account, |
| 331 | PurpleStatus *old_status, PurpleStatus *new_status) | |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
332 | { |
| 15884 | 333 | PurplePlugin *prpl; |
| 334 | PurplePluginProtocolInfo *prpl_info; | |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
335 | |
| 15884 | 336 | if (purple_status_is_online(new_status) && |
|
24519
d4af3d043211
Improve our NetworkManager support in a couple of ways:
Richard Laager <rlaager@pidgin.im>
parents:
23875
diff
changeset
|
337 | purple_account_is_disconnected(account) && |
|
d4af3d043211
Improve our NetworkManager support in a couple of ways:
Richard Laager <rlaager@pidgin.im>
parents:
23875
diff
changeset
|
338 | purple_network_is_available()) |
|
11718
90804d019837
[gaim-migrate @ 14009]
Mark Doliner <markdoliner@pidgin.im>
parents:
11628
diff
changeset
|
339 | { |
| 15884 | 340 | purple_account_connect(account); |
|
11718
90804d019837
[gaim-migrate @ 14009]
Mark Doliner <markdoliner@pidgin.im>
parents:
11628
diff
changeset
|
341 | return; |
|
90804d019837
[gaim-migrate @ 14009]
Mark Doliner <markdoliner@pidgin.im>
parents:
11628
diff
changeset
|
342 | } |
|
90804d019837
[gaim-migrate @ 14009]
Mark Doliner <markdoliner@pidgin.im>
parents:
11628
diff
changeset
|
343 | |
| 15884 | 344 | if (!purple_status_is_online(new_status)) |
|
14224
d6d41ff969df
[gaim-migrate @ 16810]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
14097
diff
changeset
|
345 | { |
| 15884 | 346 | if (!purple_account_is_disconnected(account)) |
| 347 | purple_account_disconnect(account); | |
|
20115
89a938d880cb
applied changes from c9d6104bcfe2e630e98e45bc6a0975adfb9544e5
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
348 | /* Clear out the unsaved password if we're already disconnected and we switch to offline status */ |
|
89a938d880cb
applied changes from c9d6104bcfe2e630e98e45bc6a0975adfb9544e5
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
349 | else if (!purple_account_get_remember_password(account)) |
|
89a938d880cb
applied changes from c9d6104bcfe2e630e98e45bc6a0975adfb9544e5
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
350 | purple_account_set_password(account, NULL); |
|
14224
d6d41ff969df
[gaim-migrate @ 16810]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
14097
diff
changeset
|
351 | return; |
|
d6d41ff969df
[gaim-migrate @ 16810]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
14097
diff
changeset
|
352 | } |
|
11718
90804d019837
[gaim-migrate @ 14009]
Mark Doliner <markdoliner@pidgin.im>
parents:
11628
diff
changeset
|
353 | |
| 15884 | 354 | if (purple_account_is_connecting(account)) |
|
12108
a74fd0d6b79c
[gaim-migrate @ 14408]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11948
diff
changeset
|
355 | /* |
|
a74fd0d6b79c
[gaim-migrate @ 14408]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11948
diff
changeset
|
356 | * We don't need to call the set_status PRPL function because |
|
a74fd0d6b79c
[gaim-migrate @ 14408]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11948
diff
changeset
|
357 | * the PRPL will take care of setting its status during the |
|
a74fd0d6b79c
[gaim-migrate @ 14408]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11948
diff
changeset
|
358 | * connection process. |
|
a74fd0d6b79c
[gaim-migrate @ 14408]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11948
diff
changeset
|
359 | */ |
|
a74fd0d6b79c
[gaim-migrate @ 14408]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11948
diff
changeset
|
360 | return; |
|
a74fd0d6b79c
[gaim-migrate @ 14408]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11948
diff
changeset
|
361 | |
| 15884 | 362 | prpl = purple_find_prpl(purple_account_get_protocol_id(account)); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
363 | |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
364 | if (prpl == NULL) |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
365 | return; |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
366 | |
| 15884 | 367 | prpl_info = PURPLE_PLUGIN_PROTOCOL_INFO(prpl); |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
368 | |
| 15884 | 369 | if (!purple_account_is_disconnected(account) && prpl_info->set_status != NULL) |
|
11628
cdd5df7cfbc1
[gaim-migrate @ 13903]
Casey Harkins <charkins@pidgin.im>
parents:
11257
diff
changeset
|
370 | { |
|
10447
887380ec66f5
[gaim-migrate @ 11712]
Mark Doliner <markdoliner@pidgin.im>
parents:
10052
diff
changeset
|
371 | prpl_info->set_status(account, new_status); |
|
11628
cdd5df7cfbc1
[gaim-migrate @ 13903]
Casey Harkins <charkins@pidgin.im>
parents:
11257
diff
changeset
|
372 | } |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
373 | } |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
374 | |
|
12304
e849bc5e8d5d
[gaim-migrate @ 14608]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12176
diff
changeset
|
375 | void |
| 15884 | 376 | purple_prpl_change_account_status(PurpleAccount *account, |
| 377 | PurpleStatus *old_status, PurpleStatus *new_status) | |
|
12304
e849bc5e8d5d
[gaim-migrate @ 14608]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12176
diff
changeset
|
378 | { |
|
e849bc5e8d5d
[gaim-migrate @ 14608]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12176
diff
changeset
|
379 | g_return_if_fail(account != NULL); |
|
e849bc5e8d5d
[gaim-migrate @ 14608]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12176
diff
changeset
|
380 | g_return_if_fail(new_status != NULL); |
|
21720
235394d5c7f4
Pull a bunch of bugfix only changes to im.pidgin.pidgin.2.3.1,
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20115
diff
changeset
|
381 | g_return_if_fail(!purple_status_is_exclusive(new_status) || old_status != NULL); |
|
12304
e849bc5e8d5d
[gaim-migrate @ 14608]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12176
diff
changeset
|
382 | |
|
e849bc5e8d5d
[gaim-migrate @ 14608]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12176
diff
changeset
|
383 | do_prpl_change_account_status(account, old_status, new_status); |
|
e849bc5e8d5d
[gaim-migrate @ 14608]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12176
diff
changeset
|
384 | |
| 15884 | 385 | purple_signal_emit(purple_accounts_get_handle(), "account-status-changed", |
|
12304
e849bc5e8d5d
[gaim-migrate @ 14608]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12176
diff
changeset
|
386 | account, old_status, new_status); |
|
e849bc5e8d5d
[gaim-migrate @ 14608]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12176
diff
changeset
|
387 | } |
|
e849bc5e8d5d
[gaim-migrate @ 14608]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12176
diff
changeset
|
388 | |
|
10006
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9949
diff
changeset
|
389 | GList * |
| 15884 | 390 | purple_prpl_get_statuses(PurpleAccount *account, PurplePresence *presence) |
|
10006
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9949
diff
changeset
|
391 | { |
|
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9949
diff
changeset
|
392 | GList *statuses = NULL; |
|
18190
bcf28ef7e8ff
Re-fix the DBus list handling code by killing const GList* / const GSList*
Richard Laager <rlaager@pidgin.im>
parents:
18177
diff
changeset
|
393 | GList *l; |
| 15884 | 394 | PurpleStatus *status; |
|
10006
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9949
diff
changeset
|
395 | |
|
10447
887380ec66f5
[gaim-migrate @ 11712]
Mark Doliner <markdoliner@pidgin.im>
parents:
10052
diff
changeset
|
396 | g_return_val_if_fail(account != NULL, NULL); |
|
10006
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9949
diff
changeset
|
397 | g_return_val_if_fail(presence != NULL, NULL); |
|
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9949
diff
changeset
|
398 | |
| 15884 | 399 | for (l = purple_account_get_status_types(account); l != NULL; l = l->next) |
|
10006
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9949
diff
changeset
|
400 | { |
| 15884 | 401 | status = purple_status_new((PurpleStatusType *)l->data, presence); |
|
15657
a9e38c097d28
sf patch #1655057, from Peter Tang
Mark Doliner <markdoliner@pidgin.im>
parents:
15588
diff
changeset
|
402 | statuses = g_list_prepend(statuses, status); |
|
10006
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9949
diff
changeset
|
403 | } |
|
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9949
diff
changeset
|
404 | |
|
15657
a9e38c097d28
sf patch #1655057, from Peter Tang
Mark Doliner <markdoliner@pidgin.im>
parents:
15588
diff
changeset
|
405 | statuses = g_list_reverse(statuses); |
|
11730
649c38d2a8ab
[gaim-migrate @ 14021]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
11718
diff
changeset
|
406 | |
|
10006
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9949
diff
changeset
|
407 | return statuses; |
|
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9949
diff
changeset
|
408 | } |
|
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9949
diff
changeset
|
409 | |
|
23875
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
410 | void |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
411 | purple_prpl_send_attention(PurpleConnection *gc, const char *who, guint type_code) |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
412 | { |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
413 | PurpleAttentionType *attn; |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
414 | PurpleMessageFlags flags; |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
415 | PurplePlugin *prpl; |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
416 | PurpleConversation *conv; |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
417 | gboolean (*send_attention)(PurpleConnection *, const char *, guint); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
418 | PurpleBuddy *buddy; |
|
25888
d0fdd378a635
Remove trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
25869
diff
changeset
|
419 | const char *alias; |
|
23875
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
420 | gchar *description; |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
421 | time_t mtime; |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
422 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
423 | g_return_if_fail(gc != NULL); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
424 | g_return_if_fail(who != NULL); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
425 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
426 | prpl = purple_find_prpl(purple_account_get_protocol_id(gc->account)); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
427 | send_attention = PURPLE_PLUGIN_PROTOCOL_INFO(prpl)->send_attention; |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
428 | g_return_if_fail(send_attention != NULL); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
429 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
430 | mtime = time(NULL); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
431 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
432 | attn = purple_get_attention_type_from_code(gc->account, type_code); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
433 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
434 | if ((buddy = purple_find_buddy(purple_connection_get_account(gc), who)) != NULL) |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
435 | alias = purple_buddy_get_contact_alias(buddy); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
436 | else |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
437 | alias = who; |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
438 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
439 | if (attn && purple_attention_type_get_outgoing_desc(attn)) { |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
440 | description = g_strdup_printf(purple_attention_type_get_outgoing_desc(attn), alias); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
441 | } else { |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
442 | description = g_strdup_printf(_("Requesting %s's attention..."), alias); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
443 | } |
|
25888
d0fdd378a635
Remove trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
25869
diff
changeset
|
444 | |
|
23875
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
445 | flags = PURPLE_MESSAGE_SEND | PURPLE_MESSAGE_NOTIFY | PURPLE_MESSAGE_SYSTEM; |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
446 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
447 | purple_debug_info("server", "serv_send_attention: sending '%s' to %s\n", |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
448 | description, who); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
449 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
450 | if (!send_attention(gc, who, type_code)) |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
451 | return; |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
452 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
453 | conv = purple_conversation_new(PURPLE_CONV_TYPE_IM, gc->account, who); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
454 | purple_conv_im_write(PURPLE_CONV_IM(conv), NULL, description, flags, mtime); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
455 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
456 | g_free(description); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
457 | } |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
458 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
459 | static void |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
460 | got_attention(PurpleConnection *gc, int id, const char *who, guint type_code) |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
461 | { |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
462 | PurpleMessageFlags flags; |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
463 | PurpleAttentionType *attn; |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
464 | PurpleBuddy *buddy; |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
465 | const char *alias; |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
466 | gchar *description; |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
467 | time_t mtime; |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
468 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
469 | mtime = time(NULL); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
470 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
471 | attn = purple_get_attention_type_from_code(gc->account, type_code); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
472 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
473 | /* PURPLE_MESSAGE_NOTIFY is for attention messages. */ |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
474 | flags = PURPLE_MESSAGE_SYSTEM | PURPLE_MESSAGE_NOTIFY | PURPLE_MESSAGE_RECV; |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
475 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
476 | /* TODO: if (attn->icon_name) is non-null, use it to lookup an emoticon and display |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
477 | * it next to the attention command. And if it is null, display a generic icon. */ |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
478 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
479 | if ((buddy = purple_find_buddy(purple_connection_get_account(gc), who)) != NULL) |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
480 | alias = purple_buddy_get_contact_alias(buddy); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
481 | else |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
482 | alias = who; |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
483 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
484 | if (attn && purple_attention_type_get_incoming_desc(attn)) { |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
485 | description = g_strdup_printf(purple_attention_type_get_incoming_desc(attn), alias); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
486 | } else { |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
487 | description = g_strdup_printf(_("%s has requested your attention!"), alias); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
488 | } |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
489 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
490 | purple_debug_info("server", "got_attention: got '%s' from %s\n", |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
491 | description, who); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
492 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
493 | if (id == -1) |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
494 | serv_got_im(gc, who, description, flags, mtime); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
495 | else |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
496 | serv_got_chat_in(gc, id, who, flags, description, mtime); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
497 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
498 | /* TODO: sounds (depending on PurpleAttentionType), shaking, etc. */ |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
499 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
500 | g_free(description); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
501 | } |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
502 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
503 | void |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
504 | purple_prpl_got_attention(PurpleConnection *gc, const char *who, guint type_code) |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
505 | { |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
506 | got_attention(gc, -1, who, type_code); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
507 | } |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
508 | |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
509 | void |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
510 | purple_prpl_got_attention_in_chat(PurpleConnection *gc, int id, const char *who, guint type_code) |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
511 | { |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
512 | got_attention(gc, id, who, type_code); |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22251
diff
changeset
|
513 | } |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
514 | |
|
26495
52846ebe1c7d
Don't assume a PurpleMedia instance will be created immediately.
Michael Ruprecht <maiku@pidgin.im>
parents:
26482
diff
changeset
|
515 | gboolean |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
516 | purple_prpl_initiate_media(PurpleAccount *account, |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
517 | const char *who, |
|
26108
8d0fd2f195aa
Changed PurpleMediaStreamType to PurpleMediaSessionType.
Michael Ruprecht <maiku@pidgin.im>
parents:
26107
diff
changeset
|
518 | PurpleMediaSessionType type) |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
519 | { |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
520 | #ifdef USE_VV |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
521 | PurpleConnection *gc = NULL; |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
522 | PurplePlugin *prpl = NULL; |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
523 | PurplePluginProtocolInfo *prpl_info = NULL; |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
524 | |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
525 | if (account) |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
526 | gc = purple_account_get_connection(account); |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
527 | if (gc) |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
528 | prpl = purple_connection_get_prpl(gc); |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
529 | if (prpl) |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
530 | prpl_info = PURPLE_PLUGIN_PROTOCOL_INFO(prpl); |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
531 | |
|
26107
3f03e67b89ba
Fixed up media functions in prpl.c and prpl.h, adding more documentation and
Michael Ruprecht <maiku@pidgin.im>
parents:
26106
diff
changeset
|
532 | if (prpl_info && PURPLE_PROTOCOL_PLUGIN_HAS_FUNC(prpl_info, initiate_media)) { |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
533 | /* should check that the protocol supports this media type here? */ |
|
26746
2a2d45ac9774
Switch media to store accounts rather than connections.
Michael Ruprecht <maiku@pidgin.im>
parents:
26495
diff
changeset
|
534 | return prpl_info->initiate_media(account, who, type); |
|
26495
52846ebe1c7d
Don't assume a PurpleMedia instance will be created immediately.
Michael Ruprecht <maiku@pidgin.im>
parents:
26482
diff
changeset
|
535 | } else |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
536 | #endif |
|
26495
52846ebe1c7d
Don't assume a PurpleMedia instance will be created immediately.
Michael Ruprecht <maiku@pidgin.im>
parents:
26482
diff
changeset
|
537 | return FALSE; |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
538 | } |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
539 | |
|
26316
950c0d491c0d
Change purple_prpl_can_do_media to purple_prpl_get_media_caps.
Michael Ruprecht <maiku@pidgin.im>
parents:
26260
diff
changeset
|
540 | PurpleMediaCaps |
|
950c0d491c0d
Change purple_prpl_can_do_media to purple_prpl_get_media_caps.
Michael Ruprecht <maiku@pidgin.im>
parents:
26260
diff
changeset
|
541 | purple_prpl_get_media_caps(PurpleAccount *account, const char *who) |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
542 | { |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
543 | #ifdef USE_VV |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
544 | PurpleConnection *gc = NULL; |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
545 | PurplePlugin *prpl = NULL; |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
546 | PurplePluginProtocolInfo *prpl_info = NULL; |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
547 | |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
548 | if (account) |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
549 | gc = purple_account_get_connection(account); |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
550 | if (gc) |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
551 | prpl = purple_connection_get_prpl(gc); |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
552 | if (prpl) |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
553 | prpl_info = PURPLE_PLUGIN_PROTOCOL_INFO(prpl); |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
554 | |
|
26316
950c0d491c0d
Change purple_prpl_can_do_media to purple_prpl_get_media_caps.
Michael Ruprecht <maiku@pidgin.im>
parents:
26260
diff
changeset
|
555 | if (prpl_info && PURPLE_PROTOCOL_PLUGIN_HAS_FUNC(prpl_info, |
|
950c0d491c0d
Change purple_prpl_can_do_media to purple_prpl_get_media_caps.
Michael Ruprecht <maiku@pidgin.im>
parents:
26260
diff
changeset
|
556 | get_media_caps)) { |
|
26746
2a2d45ac9774
Switch media to store accounts rather than connections.
Michael Ruprecht <maiku@pidgin.im>
parents:
26495
diff
changeset
|
557 | return prpl_info->get_media_caps(account, who); |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
558 | } |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
559 | #endif |
|
26316
950c0d491c0d
Change purple_prpl_can_do_media to purple_prpl_get_media_caps.
Michael Ruprecht <maiku@pidgin.im>
parents:
26260
diff
changeset
|
560 | return PURPLE_MEDIA_CAPS_NONE; |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
561 | } |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
22251
diff
changeset
|
562 | |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
563 | /************************************************************************** |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
564 | * Protocol Plugin Subsystem API |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
565 | **************************************************************************/ |
|
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
566 | |
| 15884 | 567 | PurplePlugin * |
| 568 | purple_find_prpl(const char *id) | |
| 981 | 569 | { |
|
5573
633880e3f137
[gaim-migrate @ 5976]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
570 | GList *l; |
| 15884 | 571 | PurplePlugin *plugin; |
| 981 | 572 | |
|
10036
743f585a1141
[gaim-migrate @ 10995]
Luke Schierer <lschiere@pidgin.im>
parents:
10023
diff
changeset
|
573 | g_return_val_if_fail(id != NULL, NULL); |
|
743f585a1141
[gaim-migrate @ 10995]
Luke Schierer <lschiere@pidgin.im>
parents:
10023
diff
changeset
|
574 | |
| 15884 | 575 | for (l = purple_plugins_get_protocols(); l != NULL; l = l->next) { |
| 576 | plugin = (PurplePlugin *)l->data; | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5161
diff
changeset
|
577 | |
|
25859
b42be7bb9dac
Patch from Paul Aurich to add purple_strequal to help readability and simplicity of code. Ie, don't need to negate the value of strcmp, since this does a strcmp and does the negation for us
Paul Aurich <darkrain42@pidgin.im>
parents:
24519
diff
changeset
|
578 | if (purple_strequal(plugin->info->id, id)) |
|
11948
94b27c352128
[gaim-migrate @ 14239]
Mark Doliner <markdoliner@pidgin.im>
parents:
11927
diff
changeset
|
579 | return plugin; |
| 981 | 580 | } |
| 581 | ||
| 582 | return NULL; | |
| 583 | } |