Wed, 05 Oct 2016 15:10:29 -0500
yahoo: Remove protocol plugin from tree
Yahoo has completely reimplemented their protocol, so this version
is no longer operable as of August 5th, 2016:
https://yahoo.tumblr.com/post/145715934739/q2-2016-progress-report-on-our-product
A new prpl has been written to support the new protocol. It can be
found here: https://github.com/EionRobb/funyahoo-plusplus
This also removes support for Yahoo! Japan. According to
http://messenger.yahoo.co.jp/ the service ended March 26th, 2014.
|
4557
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
1 | /** |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
2 | * @file prpl.h Protocol Plugin functions |
|
5034
077678f7b048
[gaim-migrate @ 5377]
Christian Hammond <chipx86@chipx86.com>
parents:
4966
diff
changeset
|
3 | * @ingroup core |
|
20147
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19907
diff
changeset
|
4 | */ |
|
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19907
diff
changeset
|
5 | |
|
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19907
diff
changeset
|
6 | /* purple |
| 981 | 7 | * |
| 15884 | 8 | * Purple is the legal property of its developers, whose names are too numerous |
| 8046 | 9 | * to list here. Please refer to the COPYRIGHT file distributed with this |
| 10 | * source distribution. | |
|
6451
2ff17ce330d8
[gaim-migrate @ 6960]
Christian Hammond <chipx86@chipx86.com>
parents:
6418
diff
changeset
|
11 | * |
| 981 | 12 | * This program is free software; you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU General Public License as published by | |
| 14 | * the Free Software Foundation; either version 2 of the License, or | |
| 15 | * (at your option) any later version. | |
| 16 | * | |
| 17 | * This program is distributed in the hope that it will be useful, | |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 20 | * GNU General Public License for more details. | |
| 21 | * | |
| 22 | * You should have received a copy of the GNU General Public License | |
| 23 | * 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:
19641
diff
changeset
|
24 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
| 981 | 25 | */ |
| 26 | ||
|
2417
7751d1269b09
[gaim-migrate @ 2430]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2411
diff
changeset
|
27 | /* this file should be all that prpls need to include. therefore, by including |
| 15884 | 28 | * this file, they should get glib, proxy, purple_connection, prpl, etc. */ |
| 981 | 29 | |
| 15884 | 30 | #ifndef _PURPLE_PRPL_H_ |
| 31 | #define _PURPLE_PRPL_H_ | |
|
2417
7751d1269b09
[gaim-migrate @ 2430]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2411
diff
changeset
|
32 | |
| 15884 | 33 | typedef struct _PurplePluginProtocolInfo PurplePluginProtocolInfo; |
|
23513
35c08771d011
document PurpleAttentionType slightly
Will Thompson <resiak@pidgin.im>
parents:
23337
diff
changeset
|
34 | /** @copydoc _PurpleAttentionType */ |
|
19604
ae3d7cc7063d
Attention API for nudges/buzzes/zaps of various protocols.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19401
diff
changeset
|
35 | typedef struct _PurpleAttentionType PurpleAttentionType; |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5148
diff
changeset
|
36 | |
|
4557
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
37 | /**************************************************************************/ |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
38 | /** @name Basic Protocol Information */ |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
39 | /**************************************************************************/ |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
40 | |
| 9318 | 41 | typedef enum { |
| 15884 | 42 | PURPLE_ICON_SCALE_DISPLAY = 0x01, /**< We scale the icon when we display it */ |
| 43 | PURPLE_ICON_SCALE_SEND = 0x02 /**< We scale the icon before we send it to the server */ | |
| 44 | } PurpleIconScaleRules; | |
| 9318 | 45 | |
| 46 | ||
| 9308 | 47 | /** |
| 15884 | 48 | * A description of a Buddy Icon specification. This tells Purple what kind of image file |
| 9308 | 49 | * it should give this prpl, and what kind of image file it should expect back. |
| 9316 | 50 | * Dimensions less than 1 should be ignored and the image not scaled. |
| 9308 | 51 | */ |
| 15884 | 52 | typedef struct _PurpleBuddyIconSpec PurpleBuddyIconSpec; |
| 9308 | 53 | |
|
9999
86e89e1dee10
[gaim-migrate @ 10913]
Mark Doliner <markdoliner@pidgin.im>
parents:
9971
diff
changeset
|
54 | /** |
|
30113
f60cbf3b3ca9
Allow PRPLs to specify the image formats acceptable for thumbnails (in
Marcus Lundblad <malu@pidgin.im>
parents:
29815
diff
changeset
|
55 | * A description of a file transfer thumbnail specification. |
|
f60cbf3b3ca9
Allow PRPLs to specify the image formats acceptable for thumbnails (in
Marcus Lundblad <malu@pidgin.im>
parents:
29815
diff
changeset
|
56 | * This tells the UI if and what image formats the prpl support for file |
|
f60cbf3b3ca9
Allow PRPLs to specify the image formats acceptable for thumbnails (in
Marcus Lundblad <malu@pidgin.im>
parents:
29815
diff
changeset
|
57 | * transfer thumbnails. |
|
f60cbf3b3ca9
Allow PRPLs to specify the image formats acceptable for thumbnails (in
Marcus Lundblad <malu@pidgin.im>
parents:
29815
diff
changeset
|
58 | */ |
|
f60cbf3b3ca9
Allow PRPLs to specify the image formats acceptable for thumbnails (in
Marcus Lundblad <malu@pidgin.im>
parents:
29815
diff
changeset
|
59 | typedef struct _PurpleThumbnailSpec PurpleThumbnailSpec; |
|
f60cbf3b3ca9
Allow PRPLs to specify the image formats acceptable for thumbnails (in
Marcus Lundblad <malu@pidgin.im>
parents:
29815
diff
changeset
|
60 | |
|
f60cbf3b3ca9
Allow PRPLs to specify the image formats acceptable for thumbnails (in
Marcus Lundblad <malu@pidgin.im>
parents:
29815
diff
changeset
|
61 | /** |
|
11035
c10c382f4896
[gaim-migrate @ 12922]
Gary Kramlich <grim@reaperworld.com>
parents:
10870
diff
changeset
|
62 | * This \#define exists just to make it easier to fill out the buddy icon |
|
9999
86e89e1dee10
[gaim-migrate @ 10913]
Mark Doliner <markdoliner@pidgin.im>
parents:
9971
diff
changeset
|
63 | * field in the prpl info struct for protocols that couldn't care less. |
|
86e89e1dee10
[gaim-migrate @ 10913]
Mark Doliner <markdoliner@pidgin.im>
parents:
9971
diff
changeset
|
64 | */ |
|
15281
5c0b8a2f6b3e
[gaim-migrate @ 18009]
Mark Doliner <markdoliner@pidgin.im>
parents:
15205
diff
changeset
|
65 | #define NO_BUDDY_ICONS {NULL, 0, 0, 0, 0, 0, 0} |
|
5c0b8a2f6b3e
[gaim-migrate @ 18009]
Mark Doliner <markdoliner@pidgin.im>
parents:
15205
diff
changeset
|
66 | |
|
17392
e88a54874d37
Don't include unistd.h if HAVE_UNISTD_H isn't defined.
Daniel Atallah <datallah@pidgin.im>
parents:
16961
diff
changeset
|
67 | #ifdef HAVE_UNISTD_H |
|
15281
5c0b8a2f6b3e
[gaim-migrate @ 18009]
Mark Doliner <markdoliner@pidgin.im>
parents:
15205
diff
changeset
|
68 | #include <unistd.h> |
|
17392
e88a54874d37
Don't include unistd.h if HAVE_UNISTD_H isn't defined.
Daniel Atallah <datallah@pidgin.im>
parents:
16961
diff
changeset
|
69 | #endif |
| 9308 | 70 | |
| 8573 | 71 | #include "blist.h" |
|
12216
d80739091a63
[gaim-migrate @ 14518]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
12143
diff
changeset
|
72 | #include "conversation.h" |
|
12143
09f216663302
[gaim-migrate @ 14444]
Evan Schoenberg <evands@pidgin.im>
parents:
12024
diff
changeset
|
73 | #include "ft.h" |
|
16538
c7e61e2917c9
Updates for the account buddy icon stuff. This doesn't yet work fully (and maybe not even partly), but it compiles.
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
74 | #include "imgstore.h" |
|
19882
d8c2a2fc1fbf
Basic Google Talk voice call support. No UI; receiving a call auto-accepts it.
Sean Egan <seanegan@pidgin.im>
parents:
19641
diff
changeset
|
75 | #include "media.h" |
|
15205
f642029b2f97
[gaim-migrate @ 17929]
Evan Schoenberg <evands@pidgin.im>
parents:
15185
diff
changeset
|
76 | #include "notify.h" |
| 8573 | 77 | #include "proxy.h" |
| 78 | #include "plugin.h" | |
|
9999
86e89e1dee10
[gaim-migrate @ 10913]
Mark Doliner <markdoliner@pidgin.im>
parents:
9971
diff
changeset
|
79 | #include "roomlist.h" |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
80 | #include "status.h" |
|
11475
1e222e6e52a0
[gaim-migrate @ 13717]
Gary Kramlich <grim@reaperworld.com>
parents:
11462
diff
changeset
|
81 | #include "whiteboard.h" |
| 8573 | 82 | |
|
23337
2643da079f95
Add doxycomment for PurpleBuddyIcon; tweak that of PurpleBuddyIconSpec.
Will Thompson <resiak@pidgin.im>
parents:
23281
diff
changeset
|
83 | |
|
2643da079f95
Add doxycomment for PurpleBuddyIcon; tweak that of PurpleBuddyIconSpec.
Will Thompson <resiak@pidgin.im>
parents:
23281
diff
changeset
|
84 | /** @copydoc PurpleBuddyIconSpec */ |
| 15884 | 85 | struct _PurpleBuddyIconSpec { |
|
23337
2643da079f95
Add doxycomment for PurpleBuddyIcon; tweak that of PurpleBuddyIconSpec.
Will Thompson <resiak@pidgin.im>
parents:
23281
diff
changeset
|
86 | /** This is a comma-delimited list of image formats or @c NULL if icons |
|
2643da079f95
Add doxycomment for PurpleBuddyIcon; tweak that of PurpleBuddyIconSpec.
Will Thompson <resiak@pidgin.im>
parents:
23281
diff
changeset
|
87 | * are not supported. Neither the core nor the prpl will actually |
|
2643da079f95
Add doxycomment for PurpleBuddyIcon; tweak that of PurpleBuddyIconSpec.
Will Thompson <resiak@pidgin.im>
parents:
23281
diff
changeset
|
88 | * check to see if the data it's given matches this; it's entirely up |
|
2643da079f95
Add doxycomment for PurpleBuddyIcon; tweak that of PurpleBuddyIconSpec.
Will Thompson <resiak@pidgin.im>
parents:
23281
diff
changeset
|
89 | * to the UI to do what it wants |
|
2643da079f95
Add doxycomment for PurpleBuddyIcon; tweak that of PurpleBuddyIconSpec.
Will Thompson <resiak@pidgin.im>
parents:
23281
diff
changeset
|
90 | */ |
|
2643da079f95
Add doxycomment for PurpleBuddyIcon; tweak that of PurpleBuddyIconSpec.
Will Thompson <resiak@pidgin.im>
parents:
23281
diff
changeset
|
91 | char *format; |
|
2643da079f95
Add doxycomment for PurpleBuddyIcon; tweak that of PurpleBuddyIconSpec.
Will Thompson <resiak@pidgin.im>
parents:
23281
diff
changeset
|
92 | |
|
2643da079f95
Add doxycomment for PurpleBuddyIcon; tweak that of PurpleBuddyIconSpec.
Will Thompson <resiak@pidgin.im>
parents:
23281
diff
changeset
|
93 | int min_width; /**< Minimum width of this icon */ |
|
2643da079f95
Add doxycomment for PurpleBuddyIcon; tweak that of PurpleBuddyIconSpec.
Will Thompson <resiak@pidgin.im>
parents:
23281
diff
changeset
|
94 | int min_height; /**< Minimum height of this icon */ |
|
2643da079f95
Add doxycomment for PurpleBuddyIcon; tweak that of PurpleBuddyIconSpec.
Will Thompson <resiak@pidgin.im>
parents:
23281
diff
changeset
|
95 | int max_width; /**< Maximum width of this icon */ |
|
2643da079f95
Add doxycomment for PurpleBuddyIcon; tweak that of PurpleBuddyIconSpec.
Will Thompson <resiak@pidgin.im>
parents:
23281
diff
changeset
|
96 | int max_height; /**< Maximum height of this icon */ |
|
2643da079f95
Add doxycomment for PurpleBuddyIcon; tweak that of PurpleBuddyIconSpec.
Will Thompson <resiak@pidgin.im>
parents:
23281
diff
changeset
|
97 | size_t max_filesize; /**< Maximum size in bytes */ |
|
2643da079f95
Add doxycomment for PurpleBuddyIcon; tweak that of PurpleBuddyIconSpec.
Will Thompson <resiak@pidgin.im>
parents:
23281
diff
changeset
|
98 | PurpleIconScaleRules scale_rules; /**< How to stretch this icon */ |
|
15281
5c0b8a2f6b3e
[gaim-migrate @ 18009]
Mark Doliner <markdoliner@pidgin.im>
parents:
15205
diff
changeset
|
99 | }; |
|
30125
e28699c46311
Whitespace trim.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
30114
diff
changeset
|
100 | |
|
28684
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
101 | /** Represents an entry containing information that must be supplied by the |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
102 | * user when joining a chat. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
103 | */ |
|
9713
bb37562302a1
[gaim-migrate @ 10574]
Mark Doliner <markdoliner@pidgin.im>
parents:
9584
diff
changeset
|
104 | struct proto_chat_entry { |
|
28684
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
105 | const char *label; /**< User-friendly name of the entry */ |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
106 | const char *identifier; /**< Used by the PRPL to identify the option */ |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
107 | gboolean required; /**< True if it's required */ |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
108 | gboolean is_int; /**< True if the entry expects an integer */ |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
109 | int min; /**< Minimum value in case of integer */ |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
110 | int max; /**< Maximum value in case of integer */ |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
111 | gboolean secret; /**< True if the entry is secret (password) */ |
|
9713
bb37562302a1
[gaim-migrate @ 10574]
Mark Doliner <markdoliner@pidgin.im>
parents:
9584
diff
changeset
|
112 | }; |
|
bb37562302a1
[gaim-migrate @ 10574]
Mark Doliner <markdoliner@pidgin.im>
parents:
9584
diff
changeset
|
113 | |
|
23513
35c08771d011
document PurpleAttentionType slightly
Will Thompson <resiak@pidgin.im>
parents:
23337
diff
changeset
|
114 | /** Represents "nudges" and "buzzes" that you may send to a buddy to attract |
|
35c08771d011
document PurpleAttentionType slightly
Will Thompson <resiak@pidgin.im>
parents:
23337
diff
changeset
|
115 | * their attention (or vice-versa). |
|
35c08771d011
document PurpleAttentionType slightly
Will Thompson <resiak@pidgin.im>
parents:
23337
diff
changeset
|
116 | */ |
|
19604
ae3d7cc7063d
Attention API for nudges/buzzes/zaps of various protocols.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19401
diff
changeset
|
117 | struct _PurpleAttentionType |
|
ae3d7cc7063d
Attention API for nudges/buzzes/zaps of various protocols.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19401
diff
changeset
|
118 | { |
|
ae3d7cc7063d
Attention API for nudges/buzzes/zaps of various protocols.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19401
diff
changeset
|
119 | const char *name; /**< Shown in GUI elements */ |
|
ae3d7cc7063d
Attention API for nudges/buzzes/zaps of various protocols.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19401
diff
changeset
|
120 | const char *incoming_description; /**< Shown when sent */ |
|
ae3d7cc7063d
Attention API for nudges/buzzes/zaps of various protocols.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19401
diff
changeset
|
121 | const char *outgoing_description; /**< Shown when receied */ |
|
19639
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
122 | const char *icon_name; /**< Icon to display (optional) */ |
|
22225
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
123 | const char *unlocalized_name; /**< Unlocalized name for UIs needing it */ |
|
19639
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
124 | |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
125 | /* Reserved fields for future purposes */ |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
126 | gpointer _reserved2; |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
127 | gpointer _reserved3; |
|
93a56951f439
In the attention API, use the PURPLE_NOTIFY_MESSAGE flag to serv_got_im()
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19604
diff
changeset
|
128 | gpointer _reserved4; |
|
19604
ae3d7cc7063d
Attention API for nudges/buzzes/zaps of various protocols.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19401
diff
changeset
|
129 | }; |
|
ae3d7cc7063d
Attention API for nudges/buzzes/zaps of various protocols.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19401
diff
changeset
|
130 | |
|
6622
277eb0b14653
[gaim-migrate @ 7146]
Robert McQueen <robot101@debian.org>
parents:
6451
diff
changeset
|
131 | /** |
|
4557
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
132 | * Protocol options |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
133 | * |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
134 | * These should all be stuff that some plugins can do and others can't. |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
135 | */ |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
136 | typedef enum |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
137 | { |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
138 | /** |
|
27132
545109e6826f
Clarify (hopefully) the usage of OPT_PROTO_UNIQUE_CHATNAME; arose in a discussion in #pidgin.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
139 | * User names are unique to a chat and are not shared between rooms. |
|
4557
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
140 | * |
|
27132
545109e6826f
Clarify (hopefully) the usage of OPT_PROTO_UNIQUE_CHATNAME; arose in a discussion in #pidgin.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
141 | * XMPP lets you choose what name you want in chats, so it shouldn't |
|
545109e6826f
Clarify (hopefully) the usage of OPT_PROTO_UNIQUE_CHATNAME; arose in a discussion in #pidgin.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
142 | * be pulling the aliases from the buddy list for the chat list; |
|
4557
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
143 | * it gets annoying. |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
144 | */ |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
145 | OPT_PROTO_UNIQUE_CHATNAME = 0x00000004, |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
146 | |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
147 | /** |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
148 | * Chat rooms have topics. |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
149 | * |
|
16961
b6955f946f8f
s/Jabber/XMPP in user-visible places.
Richard Laager <rlaager@pidgin.im>
parents:
16799
diff
changeset
|
150 | * IRC and XMPP support this. |
|
4557
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
151 | */ |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
152 | OPT_PROTO_CHAT_TOPIC = 0x00000008, |
|
1370
de786e8d0146
[gaim-migrate @ 1380]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1355
diff
changeset
|
153 | |
|
4557
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
154 | /** |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
155 | * Don't require passwords for sign-in. |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
156 | * |
|
9999
86e89e1dee10
[gaim-migrate @ 10913]
Mark Doliner <markdoliner@pidgin.im>
parents:
9971
diff
changeset
|
157 | * Zephyr doesn't require passwords, so there's no |
|
86e89e1dee10
[gaim-migrate @ 10913]
Mark Doliner <markdoliner@pidgin.im>
parents:
9971
diff
changeset
|
158 | * need for a password prompt. |
|
4557
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
159 | */ |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
160 | OPT_PROTO_NO_PASSWORD = 0x00000010, |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
161 | |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
162 | /** |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
163 | * Notify on new mail. |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
164 | * |
|
38089
da90fe7312d3
yahoo: Remove protocol plugin from tree
Mike Ruprecht <cmaiku@gmail.com>
parents:
38086
diff
changeset
|
165 | * If a protocol notifies you when you have new mail. |
|
4557
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
166 | */ |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
167 | OPT_PROTO_MAIL_CHECK = 0x00000020, |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
168 | |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
169 | /** |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
170 | * Images in IMs. |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
171 | * |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
172 | * Oscar lets you send images in direct IMs. |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
173 | */ |
|
9999
86e89e1dee10
[gaim-migrate @ 10913]
Mark Doliner <markdoliner@pidgin.im>
parents:
9971
diff
changeset
|
174 | OPT_PROTO_IM_IMAGE = 0x00000040, |
|
4557
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
175 | |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
176 | /** |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
177 | * Allow passwords to be optional. |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
178 | * |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
179 | * Passwords in IRC are optional, and are needed for certain |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
180 | * functionality. |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
181 | */ |
|
9999
86e89e1dee10
[gaim-migrate @ 10913]
Mark Doliner <markdoliner@pidgin.im>
parents:
9971
diff
changeset
|
182 | OPT_PROTO_PASSWORD_OPTIONAL = 0x00000080, |
|
4557
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
183 | |
| 5367 | 184 | /** |
| 185 | * Allows font size to be specified in sane point size | |
| 186 | * | |
|
16961
b6955f946f8f
s/Jabber/XMPP in user-visible places.
Richard Laager <rlaager@pidgin.im>
parents:
16799
diff
changeset
|
187 | * Probably just XMPP and Y!M |
| 5367 | 188 | */ |
| 11358 | 189 | OPT_PROTO_USE_POINTSIZE = 0x00000100, |
| 190 | ||
| 191 | /** | |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
192 | * Set the Register button active even when the username has not |
|
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
193 | * been specified. |
| 11358 | 194 | * |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
195 | * Gadu-Gadu doesn't need a username to register new account (because |
|
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
196 | * usernames are assigned by the server). |
| 11358 | 197 | */ |
| 198 | OPT_PROTO_REGISTER_NOSCREENNAME = 0x00000200, | |
| 5367 | 199 | |
|
18092
1a2362194473
Mostly taken from the patch on ticket #410, don't send unknown slash
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
17392
diff
changeset
|
200 | /** |
|
1a2362194473
Mostly taken from the patch on ticket #410, don't send unknown slash
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
17392
diff
changeset
|
201 | * Indicates that slash commands are native to this protocol. |
|
1a2362194473
Mostly taken from the patch on ticket #410, don't send unknown slash
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
17392
diff
changeset
|
202 | * Used as a hint that unknown commands should not be sent as messages. |
|
23063
9458eafda32c
Assorted cleanups, mostly to the Doxygen comments. I added a few missing
Richard Laager <rlaager@pidgin.im>
parents:
22906
diff
changeset
|
203 | * @since 2.1.0 |
|
18092
1a2362194473
Mostly taken from the patch on ticket #410, don't send unknown slash
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
17392
diff
changeset
|
204 | */ |
|
31597
3604d574a028
Add a flag indicating that a prpl allows specifying an invite message.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31594
diff
changeset
|
205 | OPT_PROTO_SLASH_COMMANDS_NATIVE = 0x00000400, |
|
3604d574a028
Add a flag indicating that a prpl allows specifying an invite message.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31594
diff
changeset
|
206 | |
|
3604d574a028
Add a flag indicating that a prpl allows specifying an invite message.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31594
diff
changeset
|
207 | /** |
|
3604d574a028
Add a flag indicating that a prpl allows specifying an invite message.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31594
diff
changeset
|
208 | * Indicates that this protocol supports sending a user-supplied message |
|
3604d574a028
Add a flag indicating that a prpl allows specifying an invite message.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31594
diff
changeset
|
209 | * along with an invitation. |
|
3604d574a028
Add a flag indicating that a prpl allows specifying an invite message.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31594
diff
changeset
|
210 | * @since 2.8.0 |
|
3604d574a028
Add a flag indicating that a prpl allows specifying an invite message.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31594
diff
changeset
|
211 | */ |
|
3604d574a028
Add a flag indicating that a prpl allows specifying an invite message.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31594
diff
changeset
|
212 | OPT_PROTO_INVITE_MESSAGE = 0x00000800 |
|
18092
1a2362194473
Mostly taken from the patch on ticket #410, don't send unknown slash
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
17392
diff
changeset
|
213 | |
| 15884 | 214 | } PurpleProtocolOptions; |
|
4557
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
215 | |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
216 | /** |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5148
diff
changeset
|
217 | * A protocol plugin information structure. |
|
4557
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
218 | * |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
219 | * Every protocol plugin initializes this structure. It is the gateway |
|
22906
26919a723b1e
Fix a typo in a doc comment.
Richard Laager <rlaager@pidgin.im>
parents:
22251
diff
changeset
|
220 | * between purple and the protocol plugin. Many of these callbacks can be |
|
10162
432a7a659518
[gaim-migrate @ 11248]
Jonathan Champ <royanee@users.sourceforge.net>
parents:
10160
diff
changeset
|
221 | * NULL. If a callback must be implemented, it has a comment indicating so. |
|
4557
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
222 | */ |
| 15884 | 223 | struct _PurplePluginProtocolInfo |
|
4557
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
224 | { |
| 15884 | 225 | PurpleProtocolOptions options; /**< Protocol options. */ |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5148
diff
changeset
|
226 | |
|
19401
012a56cd0484
Add marginally better doxygen magic to PurplePluginProtocolInfo
Will Thompson <resiak@pidgin.im>
parents:
18243
diff
changeset
|
227 | GList *user_splits; /**< A GList of PurpleAccountUserSplit */ |
|
012a56cd0484
Add marginally better doxygen magic to PurplePluginProtocolInfo
Will Thompson <resiak@pidgin.im>
parents:
18243
diff
changeset
|
228 | GList *protocol_options; /**< A GList of PurpleAccountOption */ |
|
10160
90f207810143
[gaim-migrate @ 11243]
Mark Doliner <markdoliner@pidgin.im>
parents:
10104
diff
changeset
|
229 | |
|
19401
012a56cd0484
Add marginally better doxygen magic to PurplePluginProtocolInfo
Will Thompson <resiak@pidgin.im>
parents:
18243
diff
changeset
|
230 | PurpleBuddyIconSpec icon_spec; /**< The icon spec. */ |
|
10160
90f207810143
[gaim-migrate @ 11243]
Mark Doliner <markdoliner@pidgin.im>
parents:
10104
diff
changeset
|
231 | |
|
6451
2ff17ce330d8
[gaim-migrate @ 6960]
Christian Hammond <chipx86@chipx86.com>
parents:
6418
diff
changeset
|
232 | /** |
|
2ff17ce330d8
[gaim-migrate @ 6960]
Christian Hammond <chipx86@chipx86.com>
parents:
6418
diff
changeset
|
233 | * Returns the base icon name for the given buddy and account. |
|
25888
d0fdd378a635
Remove trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
25231
diff
changeset
|
234 | * If buddy is NULL and the account is non-NULL, it will return the |
|
16320
eec8b2bed22e
Document prpl_info->list_icon(NULL, NULL), and add my name to COPYRIGHT.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
15884
diff
changeset
|
235 | * name to use for the account's icon. If both are NULL, it will |
|
eec8b2bed22e
Document prpl_info->list_icon(NULL, NULL), and add my name to COPYRIGHT.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
15884
diff
changeset
|
236 | * return the name to use for the protocol's icon. |
|
eec8b2bed22e
Document prpl_info->list_icon(NULL, NULL), and add my name to COPYRIGHT.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
15884
diff
changeset
|
237 | * |
|
eec8b2bed22e
Document prpl_info->list_icon(NULL, NULL), and add my name to COPYRIGHT.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
15884
diff
changeset
|
238 | * This must be implemented. |
| 4687 | 239 | */ |
| 15884 | 240 | const char *(*list_icon)(PurpleAccount *account, PurpleBuddy *buddy); |
| 4687 | 241 | |
| 242 | /** | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5148
diff
changeset
|
243 | * Fills the four char**'s with string identifiers for "emblems" |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5148
diff
changeset
|
244 | * that the UI will interpret and display as relevant |
| 4687 | 245 | */ |
| 15884 | 246 | const char *(*list_emblem)(PurpleBuddy *buddy); |
| 4722 | 247 | |
| 248 | /** | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5148
diff
changeset
|
249 | * Gets a short string representing this buddy's status. This will |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5148
diff
changeset
|
250 | * be shown on the buddy list. |
| 4722 | 251 | */ |
| 15884 | 252 | char *(*status_text)(PurpleBuddy *buddy); |
|
6451
2ff17ce330d8
[gaim-migrate @ 6960]
Christian Hammond <chipx86@chipx86.com>
parents:
6418
diff
changeset
|
253 | |
| 4724 | 254 | /** |
|
12970
c2f3b4dcf711
[gaim-migrate @ 15323]
Richard Laager <rlaager@pidgin.im>
parents:
12943
diff
changeset
|
255 | * Allows the prpl to add text to a buddy's tooltip. |
| 4724 | 256 | */ |
| 15884 | 257 | void (*tooltip_text)(PurpleBuddy *buddy, PurpleNotifyUserInfo *user_info, gboolean full); |
|
6451
2ff17ce330d8
[gaim-migrate @ 6960]
Christian Hammond <chipx86@chipx86.com>
parents:
6418
diff
changeset
|
258 | |
|
10200
33c21db946e7
[gaim-migrate @ 11317]
Mark Doliner <markdoliner@pidgin.im>
parents:
10162
diff
changeset
|
259 | /** |
|
20978
f6aededb6700
Add some (but not much!) documentation to PurplePluginProtocolInfo.
Will Thompson <resiak@pidgin.im>
parents:
20147
diff
changeset
|
260 | * Returns a list of #PurpleStatusType which exist for this account; |
|
f6aededb6700
Add some (but not much!) documentation to PurplePluginProtocolInfo.
Will Thompson <resiak@pidgin.im>
parents:
20147
diff
changeset
|
261 | * this must be implemented, and must add at least the offline and |
|
f6aededb6700
Add some (but not much!) documentation to PurplePluginProtocolInfo.
Will Thompson <resiak@pidgin.im>
parents:
20147
diff
changeset
|
262 | * online states. |
|
10200
33c21db946e7
[gaim-migrate @ 11317]
Mark Doliner <markdoliner@pidgin.im>
parents:
10162
diff
changeset
|
263 | */ |
| 15884 | 264 | GList *(*status_types)(PurpleAccount *account); |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5148
diff
changeset
|
265 | |
|
20978
f6aededb6700
Add some (but not much!) documentation to PurplePluginProtocolInfo.
Will Thompson <resiak@pidgin.im>
parents:
20147
diff
changeset
|
266 | /** |
|
f6aededb6700
Add some (but not much!) documentation to PurplePluginProtocolInfo.
Will Thompson <resiak@pidgin.im>
parents:
20147
diff
changeset
|
267 | * Returns a list of #PurpleMenuAction structs, which represent extra |
|
f6aededb6700
Add some (but not much!) documentation to PurplePluginProtocolInfo.
Will Thompson <resiak@pidgin.im>
parents:
20147
diff
changeset
|
268 | * actions to be shown in (for example) the right-click menu for @a |
|
f6aededb6700
Add some (but not much!) documentation to PurplePluginProtocolInfo.
Will Thompson <resiak@pidgin.im>
parents:
20147
diff
changeset
|
269 | * node. |
|
f6aededb6700
Add some (but not much!) documentation to PurplePluginProtocolInfo.
Will Thompson <resiak@pidgin.im>
parents:
20147
diff
changeset
|
270 | */ |
| 15884 | 271 | GList *(*blist_node_menu)(PurpleBlistNode *node); |
|
28684
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
272 | |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
273 | /** |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
274 | * Returns a list of #proto_chat_entry structs, which represent |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
275 | * information required by the PRPL to join a chat. libpurple will |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
276 | * call join_chat along with the information filled by the user. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
277 | * |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
278 | * @return A list of #proto_chat_entry structs |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
279 | */ |
| 15884 | 280 | GList *(*chat_info)(PurpleConnection *); |
|
28684
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
281 | |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
282 | /** |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
283 | * Returns a hashtable which maps #proto_chat_entry struct identifiers |
|
31293
169eeb43b52c
Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents:
30195
diff
changeset
|
284 | * to default options as strings based on chat_name. The resulting |
|
28684
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
285 | * hashtable should be created with g_hash_table_new_full(g_str_hash, |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
286 | * g_str_equal, NULL, g_free);. Use #get_chat_name if you instead need |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
287 | * to extract a chat name from a hashtable. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
288 | * |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
289 | * @param chat_name The chat name to be turned into components |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
290 | * @return Hashtable containing the information extracted from chat_name |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
291 | */ |
| 15884 | 292 | GHashTable *(*chat_info_defaults)(PurpleConnection *, const char *chat_name); |
|
1333
bbd54f86976f
[gaim-migrate @ 1343]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1318
diff
changeset
|
293 | |
|
4557
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
294 | /* All the server-related functions */ |
|
10160
90f207810143
[gaim-migrate @ 11243]
Mark Doliner <markdoliner@pidgin.im>
parents:
10104
diff
changeset
|
295 | |
|
90f207810143
[gaim-migrate @ 11243]
Mark Doliner <markdoliner@pidgin.im>
parents:
10104
diff
changeset
|
296 | /** This must be implemented. */ |
| 15884 | 297 | void (*login)(PurpleAccount *); |
|
10160
90f207810143
[gaim-migrate @ 11243]
Mark Doliner <markdoliner@pidgin.im>
parents:
10104
diff
changeset
|
298 | |
|
90f207810143
[gaim-migrate @ 11243]
Mark Doliner <markdoliner@pidgin.im>
parents:
10104
diff
changeset
|
299 | /** This must be implemented. */ |
| 15884 | 300 | void (*close)(PurpleConnection *); |
|
11693
1a42a66ca0f8
[gaim-migrate @ 13979]
Mark Doliner <markdoliner@pidgin.im>
parents:
11500
diff
changeset
|
301 | |
|
1a42a66ca0f8
[gaim-migrate @ 13979]
Mark Doliner <markdoliner@pidgin.im>
parents:
11500
diff
changeset
|
302 | /** |
|
1a42a66ca0f8
[gaim-migrate @ 13979]
Mark Doliner <markdoliner@pidgin.im>
parents:
11500
diff
changeset
|
303 | * This PRPL function should return a positive value on success. |
|
1a42a66ca0f8
[gaim-migrate @ 13979]
Mark Doliner <markdoliner@pidgin.im>
parents:
11500
diff
changeset
|
304 | * If the message is too big to be sent, return -E2BIG. If |
|
1a42a66ca0f8
[gaim-migrate @ 13979]
Mark Doliner <markdoliner@pidgin.im>
parents:
11500
diff
changeset
|
305 | * the account is not connected, return -ENOTCONN. If the |
|
1a42a66ca0f8
[gaim-migrate @ 13979]
Mark Doliner <markdoliner@pidgin.im>
parents:
11500
diff
changeset
|
306 | * PRPL is unable to send the message for another reason, return |
|
1a42a66ca0f8
[gaim-migrate @ 13979]
Mark Doliner <markdoliner@pidgin.im>
parents:
11500
diff
changeset
|
307 | * some other negative value. You can use one of the valid |
|
1a42a66ca0f8
[gaim-migrate @ 13979]
Mark Doliner <markdoliner@pidgin.im>
parents:
11500
diff
changeset
|
308 | * errno values, or just big something. If the message should |
|
1a42a66ca0f8
[gaim-migrate @ 13979]
Mark Doliner <markdoliner@pidgin.im>
parents:
11500
diff
changeset
|
309 | * not be echoed to the conversation window, return 0. |
|
1a42a66ca0f8
[gaim-migrate @ 13979]
Mark Doliner <markdoliner@pidgin.im>
parents:
11500
diff
changeset
|
310 | */ |
| 15884 | 311 | int (*send_im)(PurpleConnection *, const char *who, |
|
6982
12f08de92674
[gaim-migrate @ 7538]
Mark Doliner <markdoliner@pidgin.im>
parents:
6885
diff
changeset
|
312 | const char *message, |
| 15884 | 313 | PurpleMessageFlags flags); |
|
11693
1a42a66ca0f8
[gaim-migrate @ 13979]
Mark Doliner <markdoliner@pidgin.im>
parents:
11500
diff
changeset
|
314 | |
| 15884 | 315 | void (*set_info)(PurpleConnection *, const char *info); |
|
24853
12c7cef2f980
Add a comment for the meaning of the return value of this function,
Mark Doliner <markdoliner@pidgin.im>
parents:
23875
diff
changeset
|
316 | |
|
12c7cef2f980
Add a comment for the meaning of the return value of this function,
Mark Doliner <markdoliner@pidgin.im>
parents:
23875
diff
changeset
|
317 | /** |
|
12c7cef2f980
Add a comment for the meaning of the return value of this function,
Mark Doliner <markdoliner@pidgin.im>
parents:
23875
diff
changeset
|
318 | * @return If this protocol requires the PURPLE_TYPING message to |
|
24854
876efbc05a4a
Fix a typo in Mark's new comment.
Richard Laager <rlaager@pidgin.im>
parents:
24853
diff
changeset
|
319 | * be sent repeatedly to signify that the user is still |
|
24853
12c7cef2f980
Add a comment for the meaning of the return value of this function,
Mark Doliner <markdoliner@pidgin.im>
parents:
23875
diff
changeset
|
320 | * typing, then the PRPL should return the number of |
|
12c7cef2f980
Add a comment for the meaning of the return value of this function,
Mark Doliner <markdoliner@pidgin.im>
parents:
23875
diff
changeset
|
321 | * seconds to wait before sending a subsequent notification. |
|
12c7cef2f980
Add a comment for the meaning of the return value of this function,
Mark Doliner <markdoliner@pidgin.im>
parents:
23875
diff
changeset
|
322 | * Otherwise the PRPL should return 0. |
|
12c7cef2f980
Add a comment for the meaning of the return value of this function,
Mark Doliner <markdoliner@pidgin.im>
parents:
23875
diff
changeset
|
323 | */ |
| 15884 | 324 | unsigned int (*send_typing)(PurpleConnection *, const char *name, PurpleTypingState state); |
|
24853
12c7cef2f980
Add a comment for the meaning of the return value of this function,
Mark Doliner <markdoliner@pidgin.im>
parents:
23875
diff
changeset
|
325 | |
|
20978
f6aededb6700
Add some (but not much!) documentation to PurplePluginProtocolInfo.
Will Thompson <resiak@pidgin.im>
parents:
20147
diff
changeset
|
326 | /** |
|
f6aededb6700
Add some (but not much!) documentation to PurplePluginProtocolInfo.
Will Thompson <resiak@pidgin.im>
parents:
20147
diff
changeset
|
327 | * Should arrange for purple_notify_userinfo() to be called with |
|
f6aededb6700
Add some (but not much!) documentation to PurplePluginProtocolInfo.
Will Thompson <resiak@pidgin.im>
parents:
20147
diff
changeset
|
328 | * @a who's user info. |
|
f6aededb6700
Add some (but not much!) documentation to PurplePluginProtocolInfo.
Will Thompson <resiak@pidgin.im>
parents:
20147
diff
changeset
|
329 | */ |
| 15884 | 330 | void (*get_info)(PurpleConnection *, const char *who); |
| 331 | void (*set_status)(PurpleAccount *account, PurpleStatus *status); | |
|
9949
377cd65fab3d
[gaim-migrate @ 10845]
Daniel Atallah <datallah@pidgin.im>
parents:
9944
diff
changeset
|
332 | |
| 15884 | 333 | void (*set_idle)(PurpleConnection *, int idletime); |
| 334 | void (*change_passwd)(PurpleConnection *, const char *old_pass, | |
|
5946
ebabcd2b4637
[gaim-migrate @ 6387]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
335 | const char *new_pass); |
|
25505
42fc74ce0064
Update the comment for add_buddy in prpl.h to note it may be called to mean 'request authorization'
Paul Aurich <darkrain42@pidgin.im>
parents:
25231
diff
changeset
|
336 | /** |
|
42fc74ce0064
Update the comment for add_buddy in prpl.h to note it may be called to mean 'request authorization'
Paul Aurich <darkrain42@pidgin.im>
parents:
25231
diff
changeset
|
337 | * Add a buddy to a group on the server. |
|
42fc74ce0064
Update the comment for add_buddy in prpl.h to note it may be called to mean 'request authorization'
Paul Aurich <darkrain42@pidgin.im>
parents:
25231
diff
changeset
|
338 | * |
|
42fc74ce0064
Update the comment for add_buddy in prpl.h to note it may be called to mean 'request authorization'
Paul Aurich <darkrain42@pidgin.im>
parents:
25231
diff
changeset
|
339 | * This PRPL function may be called in situations in which the buddy is |
|
42fc74ce0064
Update the comment for add_buddy in prpl.h to note it may be called to mean 'request authorization'
Paul Aurich <darkrain42@pidgin.im>
parents:
25231
diff
changeset
|
340 | * already in the specified group. If the protocol supports |
|
42fc74ce0064
Update the comment for add_buddy in prpl.h to note it may be called to mean 'request authorization'
Paul Aurich <darkrain42@pidgin.im>
parents:
25231
diff
changeset
|
341 | * authorization and the user is not already authorized to see the |
|
42fc74ce0064
Update the comment for add_buddy in prpl.h to note it may be called to mean 'request authorization'
Paul Aurich <darkrain42@pidgin.im>
parents:
25231
diff
changeset
|
342 | * status of \a buddy, \a add_buddy should request authorization. |
|
31594
ec0856af6477
Add new functions for adding buddies with an invite message. If the
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31293
diff
changeset
|
343 | * |
|
ec0856af6477
Add new functions for adding buddies with an invite message. If the
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31293
diff
changeset
|
344 | * @deprecated Since 2.8.0, add_buddy_with_invite is preferred. |
|
ec0856af6477
Add new functions for adding buddies with an invite message. If the
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31293
diff
changeset
|
345 | * @see add_buddy_with_invite |
|
25505
42fc74ce0064
Update the comment for add_buddy in prpl.h to note it may be called to mean 'request authorization'
Paul Aurich <darkrain42@pidgin.im>
parents:
25231
diff
changeset
|
346 | */ |
| 15884 | 347 | void (*add_buddy)(PurpleConnection *, PurpleBuddy *buddy, PurpleGroup *group); |
| 348 | void (*add_buddies)(PurpleConnection *, GList *buddies, GList *groups); | |
| 349 | void (*remove_buddy)(PurpleConnection *, PurpleBuddy *buddy, PurpleGroup *group); | |
| 350 | void (*remove_buddies)(PurpleConnection *, GList *buddies, GList *groups); | |
| 351 | void (*add_permit)(PurpleConnection *, const char *name); | |
| 352 | void (*add_deny)(PurpleConnection *, const char *name); | |
| 353 | void (*rem_permit)(PurpleConnection *, const char *name); | |
| 354 | void (*rem_deny)(PurpleConnection *, const char *name); | |
| 355 | void (*set_permit_deny)(PurpleConnection *); | |
|
28684
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
356 | |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
357 | /** |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
358 | * Called when the user requests joining a chat. Should arrange for |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
359 | * #serv_got_joined_chat to be called. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
360 | * |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
361 | * @param components A hashtable containing information required to |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
362 | * join the chat as described by the entries returned |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
363 | * by #chat_info. It may also be called when accepting |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
364 | * an invitation, in which case this matches the |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
365 | * data parameter passed to #serv_got_chat_invite. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
366 | */ |
| 15884 | 367 | void (*join_chat)(PurpleConnection *, GHashTable *components); |
|
28684
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
368 | |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
369 | /** |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
370 | * Called when the user refuses a chat invitation. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
371 | * |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
372 | * @param components A hashtable containing information required to |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
373 | * join the chat as passed to #serv_got_chat_invite. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
374 | */ |
| 15884 | 375 | void (*reject_chat)(PurpleConnection *, GHashTable *components); |
|
28684
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
376 | |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
377 | /** |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
378 | * Returns a chat name based on the information in components. Use |
|
31293
169eeb43b52c
Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents:
30195
diff
changeset
|
379 | * #chat_info_defaults if you instead need to generate a hashtable |
|
28684
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
380 | * from a chat name. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
381 | * |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
382 | * @param components A hashtable containing information about the chat. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
383 | */ |
|
9917
2fbb3c9fab2b
[gaim-migrate @ 10809]
Daniel Atallah <datallah@pidgin.im>
parents:
9770
diff
changeset
|
384 | char *(*get_chat_name)(GHashTable *components); |
|
28684
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
385 | |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
386 | /** |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
387 | * Invite a user to join a chat. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
388 | * |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
389 | * @param id The id of the chat to invite the user to. |
|
31293
169eeb43b52c
Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents:
30195
diff
changeset
|
390 | * @param message A message displayed to the user when the invitation |
|
28684
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
391 | * is received. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
392 | * @param who The name of the user to send the invation to. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
393 | */ |
| 15884 | 394 | void (*chat_invite)(PurpleConnection *, int id, |
|
15036
2580e926104d
[gaim-migrate @ 17753]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
15002
diff
changeset
|
395 | const char *message, const char *who); |
|
28684
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
396 | /** |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
397 | * Called when the user requests leaving a chat. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
398 | * |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
399 | * @param id The id of the chat to leave |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
400 | */ |
| 15884 | 401 | void (*chat_leave)(PurpleConnection *, int id); |
|
28684
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
402 | |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
403 | /** |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
404 | * Send a whisper to a user in a chat. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
405 | * |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
406 | * @param id The id of the chat. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
407 | * @param who The name of the user to send the whisper to. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
408 | * @param message The message of the whisper. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
409 | */ |
| 15884 | 410 | void (*chat_whisper)(PurpleConnection *, int id, |
|
6059
9934c862ca14
[gaim-migrate @ 6509]
John Silvestri <john.silvestri@gmail.com>
parents:
5954
diff
changeset
|
411 | const char *who, const char *message); |
|
28684
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
412 | |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
413 | /** |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
414 | * Send a message to a chat. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
415 | * This PRPL function should return a positive value on success. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
416 | * If the message is too big to be sent, return -E2BIG. If |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
417 | * the account is not connected, return -ENOTCONN. If the |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
418 | * PRPL is unable to send the message for another reason, return |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
419 | * some other negative value. You can use one of the valid |
|
33856
a694b89708c3
Fix incorrect documentation for the prpl chat_send function.
Daniel Atallah <datallah@pidgin.im>
parents:
31597
diff
changeset
|
420 | * errno values, or just big something. |
|
28684
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
421 | * |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
422 | * @param id The id of the chat to send the message to. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
423 | * @param message The message to send to the chat. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
424 | * @param flags A bitwise OR of #PurpleMessageFlags representing |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
425 | * message flags. |
|
33856
a694b89708c3
Fix incorrect documentation for the prpl chat_send function.
Daniel Atallah <datallah@pidgin.im>
parents:
31597
diff
changeset
|
426 | * @return A positive number or 0 in case of success, |
|
28684
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
427 | * a negative error number in case of failure. |
|
b4c337df39a1
Documented chat API. References #10605
Felix Kerekes <sttwister@soc.pidgin.im>
parents:
27132
diff
changeset
|
428 | */ |
| 15884 | 429 | int (*chat_send)(PurpleConnection *, int id, const char *message, PurpleMessageFlags flags); |
|
21865
59b1c56633d1
De-magic number the prpl_info->keepalive interval, and document it.
Will Thompson <resiak@pidgin.im>
parents:
21552
diff
changeset
|
430 | |
|
59b1c56633d1
De-magic number the prpl_info->keepalive interval, and document it.
Will Thompson <resiak@pidgin.im>
parents:
21552
diff
changeset
|
431 | /** If implemented, this will be called regularly for this prpl's |
|
59b1c56633d1
De-magic number the prpl_info->keepalive interval, and document it.
Will Thompson <resiak@pidgin.im>
parents:
21552
diff
changeset
|
432 | * active connections. You'd want to do this if you need to repeatedly |
|
59b1c56633d1
De-magic number the prpl_info->keepalive interval, and document it.
Will Thompson <resiak@pidgin.im>
parents:
21552
diff
changeset
|
433 | * send some kind of keepalive packet to the server to avoid being |
|
59b1c56633d1
De-magic number the prpl_info->keepalive interval, and document it.
Will Thompson <resiak@pidgin.im>
parents:
21552
diff
changeset
|
434 | * disconnected. ("Regularly" is defined by |
|
59b1c56633d1
De-magic number the prpl_info->keepalive interval, and document it.
Will Thompson <resiak@pidgin.im>
parents:
21552
diff
changeset
|
435 | * <code>KEEPALIVE_INTERVAL</code> in <tt>libpurple/connection.c</tt>.) |
|
59b1c56633d1
De-magic number the prpl_info->keepalive interval, and document it.
Will Thompson <resiak@pidgin.im>
parents:
21552
diff
changeset
|
436 | */ |
| 15884 | 437 | void (*keepalive)(PurpleConnection *); |
|
1713
3e0138242a5b
[gaim-migrate @ 1723]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1626
diff
changeset
|
438 | |
|
19401
012a56cd0484
Add marginally better doxygen magic to PurplePluginProtocolInfo
Will Thompson <resiak@pidgin.im>
parents:
18243
diff
changeset
|
439 | /** new user registration */ |
| 15884 | 440 | void (*register_user)(PurpleAccount *); |
| 2956 | 441 | |
|
21003
8f3cc6e40d2e
Try my hardest to get rid of some Doxygen warnings. One is left and I don't know why.
Richard Laager <rlaager@pidgin.im>
parents:
20978
diff
changeset
|
442 | /** |
|
8f3cc6e40d2e
Try my hardest to get rid of some Doxygen warnings. One is left and I don't know why.
Richard Laager <rlaager@pidgin.im>
parents:
20978
diff
changeset
|
443 | * @deprecated Use #PurplePluginProtocolInfo.get_info instead. |
|
20978
f6aededb6700
Add some (but not much!) documentation to PurplePluginProtocolInfo.
Will Thompson <resiak@pidgin.im>
parents:
20147
diff
changeset
|
444 | */ |
| 15884 | 445 | void (*get_cb_info)(PurpleConnection *, int, const char *who); |
|
21003
8f3cc6e40d2e
Try my hardest to get rid of some Doxygen warnings. One is left and I don't know why.
Richard Laager <rlaager@pidgin.im>
parents:
20978
diff
changeset
|
446 | /** |
|
8f3cc6e40d2e
Try my hardest to get rid of some Doxygen warnings. One is left and I don't know why.
Richard Laager <rlaager@pidgin.im>
parents:
20978
diff
changeset
|
447 | * @deprecated Use #PurplePluginProtocolInfo.get_cb_real_name and |
|
8f3cc6e40d2e
Try my hardest to get rid of some Doxygen warnings. One is left and I don't know why.
Richard Laager <rlaager@pidgin.im>
parents:
20978
diff
changeset
|
448 | * #PurplePluginProtocolInfo.status_text instead. |
|
20978
f6aededb6700
Add some (but not much!) documentation to PurplePluginProtocolInfo.
Will Thompson <resiak@pidgin.im>
parents:
20147
diff
changeset
|
449 | */ |
| 15884 | 450 | void (*get_cb_away)(PurpleConnection *, int, const char *who); |
|
2827
e3d10df95e74
[gaim-migrate @ 2840]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2773
diff
changeset
|
451 | |
|
19401
012a56cd0484
Add marginally better doxygen magic to PurplePluginProtocolInfo
Will Thompson <resiak@pidgin.im>
parents:
18243
diff
changeset
|
452 | /** save/store buddy's alias on server list/roster */ |
| 15884 | 453 | void (*alias_buddy)(PurpleConnection *, const char *who, |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5148
diff
changeset
|
454 | const char *alias); |
| 3136 | 455 | |
|
19401
012a56cd0484
Add marginally better doxygen magic to PurplePluginProtocolInfo
Will Thompson <resiak@pidgin.im>
parents:
18243
diff
changeset
|
456 | /** change a buddy's group on a server list/roster */ |
| 15884 | 457 | void (*group_buddy)(PurpleConnection *, const char *who, |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5148
diff
changeset
|
458 | const char *old_group, const char *new_group); |
| 3136 | 459 | |
|
19401
012a56cd0484
Add marginally better doxygen magic to PurplePluginProtocolInfo
Will Thompson <resiak@pidgin.im>
parents:
18243
diff
changeset
|
460 | /** rename a group on a server list/roster */ |
| 15884 | 461 | void (*rename_group)(PurpleConnection *, const char *old_name, |
| 462 | PurpleGroup *group, GList *moved_buddies); | |
|
3348
57ed471963ba
[gaim-migrate @ 3367]
Mark Doliner <markdoliner@pidgin.im>
parents:
3313
diff
changeset
|
463 | |
| 15884 | 464 | void (*buddy_free)(PurpleBuddy *); |
|
2607
7bcd3ea48df3
[gaim-migrate @ 2620]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2582
diff
changeset
|
465 | |
| 15884 | 466 | void (*convo_closed)(PurpleConnection *, const char *who); |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5148
diff
changeset
|
467 | |
|
19401
012a56cd0484
Add marginally better doxygen magic to PurplePluginProtocolInfo
Will Thompson <resiak@pidgin.im>
parents:
18243
diff
changeset
|
468 | /** |
|
012a56cd0484
Add marginally better doxygen magic to PurplePluginProtocolInfo
Will Thompson <resiak@pidgin.im>
parents:
18243
diff
changeset
|
469 | * Convert the username @a who to its canonical form. (For example, |
|
012a56cd0484
Add marginally better doxygen magic to PurplePluginProtocolInfo
Will Thompson <resiak@pidgin.im>
parents:
18243
diff
changeset
|
470 | * AIM treats "fOo BaR" and "foobar" as the same user; this function |
|
012a56cd0484
Add marginally better doxygen magic to PurplePluginProtocolInfo
Will Thompson <resiak@pidgin.im>
parents:
18243
diff
changeset
|
471 | * should return the same normalized string for both of those.) |
|
012a56cd0484
Add marginally better doxygen magic to PurplePluginProtocolInfo
Will Thompson <resiak@pidgin.im>
parents:
18243
diff
changeset
|
472 | */ |
|
012a56cd0484
Add marginally better doxygen magic to PurplePluginProtocolInfo
Will Thompson <resiak@pidgin.im>
parents:
18243
diff
changeset
|
473 | const char *(*normalize)(const PurpleAccount *, const char *who); |
|
6451
2ff17ce330d8
[gaim-migrate @ 6960]
Christian Hammond <chipx86@chipx86.com>
parents:
6418
diff
changeset
|
474 | |
|
19401
012a56cd0484
Add marginally better doxygen magic to PurplePluginProtocolInfo
Will Thompson <resiak@pidgin.im>
parents:
18243
diff
changeset
|
475 | /** |
|
012a56cd0484
Add marginally better doxygen magic to PurplePluginProtocolInfo
Will Thompson <resiak@pidgin.im>
parents:
18243
diff
changeset
|
476 | * Set the buddy icon for the given connection to @a img. The prpl |
|
012a56cd0484
Add marginally better doxygen magic to PurplePluginProtocolInfo
Will Thompson <resiak@pidgin.im>
parents:
18243
diff
changeset
|
477 | * does NOT own a reference to @a img; if it needs one, it must |
|
012a56cd0484
Add marginally better doxygen magic to PurplePluginProtocolInfo
Will Thompson <resiak@pidgin.im>
parents:
18243
diff
changeset
|
478 | * #purple_imgstore_ref(@a img) itself. |
|
012a56cd0484
Add marginally better doxygen magic to PurplePluginProtocolInfo
Will Thompson <resiak@pidgin.im>
parents:
18243
diff
changeset
|
479 | */ |
|
16538
c7e61e2917c9
Updates for the account buddy icon stuff. This doesn't yet work fully (and maybe not even partly), but it compiles.
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
480 | void (*set_buddy_icon)(PurpleConnection *, PurpleStoredImage *img); |
|
6885
65132ebfc662
[gaim-migrate @ 7431]
Christian Hammond <chipx86@chipx86.com>
parents:
6846
diff
changeset
|
481 | |
| 15884 | 482 | void (*remove_group)(PurpleConnection *gc, PurpleGroup *group); |
| 7398 | 483 | |
|
21110
7628fe7a7c6e
Document PurplePluginProtocolInfo.get_cb_real_name
Will Thompson <resiak@pidgin.im>
parents:
21099
diff
changeset
|
484 | /** Gets the real name of a participant in a chat. For example, on |
|
7628fe7a7c6e
Document PurplePluginProtocolInfo.get_cb_real_name
Will Thompson <resiak@pidgin.im>
parents:
21099
diff
changeset
|
485 | * XMPP this turns a chat room nick <tt>foo</tt> into |
|
21552
6920e51d8f27
Get rid of a few silly doxygen warnings
Mark Doliner <markdoliner@pidgin.im>
parents:
21110
diff
changeset
|
486 | * <tt>room\@server/foo</tt> |
|
21110
7628fe7a7c6e
Document PurplePluginProtocolInfo.get_cb_real_name
Will Thompson <resiak@pidgin.im>
parents:
21099
diff
changeset
|
487 | * @param gc the connection on which the room is. |
|
7628fe7a7c6e
Document PurplePluginProtocolInfo.get_cb_real_name
Will Thompson <resiak@pidgin.im>
parents:
21099
diff
changeset
|
488 | * @param id the ID of the chat room. |
|
7628fe7a7c6e
Document PurplePluginProtocolInfo.get_cb_real_name
Will Thompson <resiak@pidgin.im>
parents:
21099
diff
changeset
|
489 | * @param who the nickname of the chat participant. |
|
7628fe7a7c6e
Document PurplePluginProtocolInfo.get_cb_real_name
Will Thompson <resiak@pidgin.im>
parents:
21099
diff
changeset
|
490 | * @return the real name of the participant. This string must be |
|
7628fe7a7c6e
Document PurplePluginProtocolInfo.get_cb_real_name
Will Thompson <resiak@pidgin.im>
parents:
21099
diff
changeset
|
491 | * freed by the caller. |
|
7628fe7a7c6e
Document PurplePluginProtocolInfo.get_cb_real_name
Will Thompson <resiak@pidgin.im>
parents:
21099
diff
changeset
|
492 | */ |
| 15884 | 493 | char *(*get_cb_real_name)(PurpleConnection *gc, int id, const char *who); |
| 7971 | 494 | |
| 15884 | 495 | void (*set_chat_topic)(PurpleConnection *gc, int id, const char *topic); |
| 7999 | 496 | |
| 15884 | 497 | PurpleChat *(*find_blist_chat)(PurpleAccount *account, const char *name); |
| 8113 | 498 | |
| 499 | /* room listing prpl callbacks */ | |
| 15884 | 500 | PurpleRoomlist *(*roomlist_get_list)(PurpleConnection *gc); |
| 501 | void (*roomlist_cancel)(PurpleRoomlist *list); | |
| 502 | void (*roomlist_expand_category)(PurpleRoomlist *list, PurpleRoomlistRoom *category); | |
|
9466
b6425eab60ca
[gaim-migrate @ 10291]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
503 | |
|
b6425eab60ca
[gaim-migrate @ 10291]
Daniel Atallah <datallah@pidgin.im>
parents:
9460
diff
changeset
|
504 | /* file transfer callbacks */ |
| 15884 | 505 | gboolean (*can_receive_file)(PurpleConnection *, const char *who); |
| 506 | void (*send_file)(PurpleConnection *, const char *who, const char *filename); | |
| 507 | PurpleXfer *(*new_xfer)(PurpleConnection *, const char *who); | |
|
21099
584da62ea174
Documentation tweaks for the write_conv uiop and for prpl_info.offline_message.
Will Thompson <resiak@pidgin.im>
parents:
21003
diff
changeset
|
508 | |
|
584da62ea174
Documentation tweaks for the write_conv uiop and for prpl_info.offline_message.
Will Thompson <resiak@pidgin.im>
parents:
21003
diff
changeset
|
509 | /** Checks whether offline messages to @a buddy are supported. |
|
584da62ea174
Documentation tweaks for the write_conv uiop and for prpl_info.offline_message.
Will Thompson <resiak@pidgin.im>
parents:
21003
diff
changeset
|
510 | * @return @c TRUE if @a buddy can be sent messages while they are |
|
584da62ea174
Documentation tweaks for the write_conv uiop and for prpl_info.offline_message.
Will Thompson <resiak@pidgin.im>
parents:
21003
diff
changeset
|
511 | * offline, or @c FALSE if not. |
|
584da62ea174
Documentation tweaks for the write_conv uiop and for prpl_info.offline_message.
Will Thompson <resiak@pidgin.im>
parents:
21003
diff
changeset
|
512 | */ |
| 15884 | 513 | gboolean (*offline_message)(const PurpleBuddy *buddy); |
|
12143
09f216663302
[gaim-migrate @ 14444]
Evan Schoenberg <evands@pidgin.im>
parents:
12024
diff
changeset
|
514 | |
| 15884 | 515 | PurpleWhiteboardPrplOps *whiteboard_prpl_ops; |
| 14604 | 516 | |
|
19401
012a56cd0484
Add marginally better doxygen magic to PurplePluginProtocolInfo
Will Thompson <resiak@pidgin.im>
parents:
18243
diff
changeset
|
517 | /** For use in plugins that may understand the underlying protocol */ |
| 15884 | 518 | int (*send_raw)(PurpleConnection *gc, const char *buf, int len); |
| 15185 | 519 | |
| 520 | /* room list serialize */ | |
| 15884 | 521 | char *(*roomlist_room_serialize)(PurpleRoomlistRoom *room); |
|
16743
1ce5ffe12e2a
Initial addition of padding for ui_ops and other class-like structs
Gary Kramlich <grim@reaperworld.com>
parents:
16541
diff
changeset
|
522 | |
|
20978
f6aededb6700
Add some (but not much!) documentation to PurplePluginProtocolInfo.
Will Thompson <resiak@pidgin.im>
parents:
20147
diff
changeset
|
523 | /** Remove the user from the server. The account can either be |
|
f6aededb6700
Add some (but not much!) documentation to PurplePluginProtocolInfo.
Will Thompson <resiak@pidgin.im>
parents:
20147
diff
changeset
|
524 | * connected or disconnected. After the removal is finished, the |
|
f6aededb6700
Add some (but not much!) documentation to PurplePluginProtocolInfo.
Will Thompson <resiak@pidgin.im>
parents:
20147
diff
changeset
|
525 | * connection will stay open and has to be closed! |
|
f6aededb6700
Add some (but not much!) documentation to PurplePluginProtocolInfo.
Will Thompson <resiak@pidgin.im>
parents:
20147
diff
changeset
|
526 | */ |
|
f6aededb6700
Add some (but not much!) documentation to PurplePluginProtocolInfo.
Will Thompson <resiak@pidgin.im>
parents:
20147
diff
changeset
|
527 | /* This is here rather than next to register_user for API compatibility |
|
f6aededb6700
Add some (but not much!) documentation to PurplePluginProtocolInfo.
Will Thompson <resiak@pidgin.im>
parents:
20147
diff
changeset
|
528 | * reasons. |
|
18912
606597744812
Added unregistering XMPP accounts. This requires a new prpl-struct entry, but I got an ok for that on the mailing list.
Andreas Monitzer <am@adiumx.com>
parents:
18718
diff
changeset
|
529 | */ |
|
18994
310e9d853e2b
Implemented a callback for unregistering, mirroring the registration callback. Since this is a new API, I can do it properly by passing it right in the unregister function call, instead of having a separate function for setting it.
Andreas Monitzer <am@adiumx.com>
parents:
18912
diff
changeset
|
530 | void (*unregister_user)(PurpleAccount *, PurpleAccountUnregistrationCb cb, void *user_data); |
|
25888
d0fdd378a635
Remove trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
25231
diff
changeset
|
531 | |
|
19604
ae3d7cc7063d
Attention API for nudges/buzzes/zaps of various protocols.
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19401
diff
changeset
|
532 | /* Attention API for sending & receiving zaps/nudges/buzzes etc. */ |
|
19641
4a93c044199c
Change serv_send_attention() to call prpl_info->send_attention(), and
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19639
diff
changeset
|
533 | gboolean (*send_attention)(PurpleConnection *gc, const char *username, guint type); |
|
19907
39d8855e8344
- Rename attention_types to get_attention_types, which seems more standard.
Richard Laager <rlaager@pidgin.im>
parents:
19897
diff
changeset
|
534 | GList *(*get_attention_types)(PurpleAccount *acct); |
|
19641
4a93c044199c
Change serv_send_attention() to call prpl_info->send_attention(), and
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19639
diff
changeset
|
535 | |
|
23276
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
536 | /** |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
537 | * The size of the PurplePluginProtocolInfo. This should always be sizeof(PurplePluginProtocolInfo). |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
538 | * This allows adding more functions to this struct without requiring a major version bump. |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
539 | */ |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
540 | unsigned long struct_size; |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
541 | |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
542 | /* NOTE: |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
543 | * If more functions are added, they should accessed using the following syntax: |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
544 | * |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
545 | * if (PURPLE_PROTOCOL_PLUGIN_HAS_FUNC(prpl, new_function)) |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
546 | * prpl->new_function(...); |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
547 | * |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
548 | * instead of |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
549 | * |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
550 | * if (prpl->new_function != NULL) |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
551 | * prpl->new_function(...); |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
552 | * |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
553 | * The PURPLE_PROTOCOL_PLUGIN_HAS_FUNC macro can be used for the older member |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
554 | * functions (e.g. login, send_im etc.) too. |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
555 | */ |
|
23277
ea315a8d5bad
Patch from Jaywalker to let prpls add some helpful text for some account
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23276
diff
changeset
|
556 | |
|
ea315a8d5bad
Patch from Jaywalker to let prpls add some helpful text for some account
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23276
diff
changeset
|
557 | /** This allows protocols to specify additional strings to be used for |
|
ea315a8d5bad
Patch from Jaywalker to let prpls add some helpful text for some account
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23276
diff
changeset
|
558 | * various purposes. The idea is to stuff a bunch of strings in this hash |
|
ea315a8d5bad
Patch from Jaywalker to let prpls add some helpful text for some account
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23276
diff
changeset
|
559 | * table instead of expanding the struct for every addition. This hash |
|
ea315a8d5bad
Patch from Jaywalker to let prpls add some helpful text for some account
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23276
diff
changeset
|
560 | * table is allocated every call and MUST be unrefed by the caller. |
|
ea315a8d5bad
Patch from Jaywalker to let prpls add some helpful text for some account
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23276
diff
changeset
|
561 | * |
|
ea315a8d5bad
Patch from Jaywalker to let prpls add some helpful text for some account
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23276
diff
changeset
|
562 | * @param account The account to specify. This can be NULL. |
|
ea315a8d5bad
Patch from Jaywalker to let prpls add some helpful text for some account
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23276
diff
changeset
|
563 | * @return The protocol's string hash table. The hash table should be |
|
ea315a8d5bad
Patch from Jaywalker to let prpls add some helpful text for some account
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23276
diff
changeset
|
564 | * destroyed by the caller when it's no longer needed. |
|
ea315a8d5bad
Patch from Jaywalker to let prpls add some helpful text for some account
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23276
diff
changeset
|
565 | */ |
|
ea315a8d5bad
Patch from Jaywalker to let prpls add some helpful text for some account
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23276
diff
changeset
|
566 | GHashTable *(*get_account_text_table)(PurpleAccount *account); |
|
24912
9ae8349f0353
Move the mood UI for ICQ into Pidgin. It still uses the new request API
Richard Laager <rlaager@pidgin.im>
parents:
23875
diff
changeset
|
567 | |
|
9ae8349f0353
Move the mood UI for ICQ into Pidgin. It still uses the new request API
Richard Laager <rlaager@pidgin.im>
parents:
23875
diff
changeset
|
568 | /** |
|
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
|
569 | * Initiate a media session with the given contact. |
|
3f03e67b89ba
Fixed up media functions in prpl.c and prpl.h, adding more documentation and
Michael Ruprecht <maiku@pidgin.im>
parents:
26106
diff
changeset
|
570 | * |
|
26746
2a2d45ac9774
Switch media to store accounts rather than connections.
Michael Ruprecht <maiku@pidgin.im>
parents:
26611
diff
changeset
|
571 | * @param account The account to initiate the media session on. |
|
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
|
572 | * @param who The remote user to initiate the session with. |
|
3f03e67b89ba
Fixed up media functions in prpl.c and prpl.h, adding more documentation and
Michael Ruprecht <maiku@pidgin.im>
parents:
26106
diff
changeset
|
573 | * @param type The type of media session to initiate. |
|
26495
52846ebe1c7d
Don't assume a PurpleMedia instance will be created immediately.
Michael Ruprecht <maiku@pidgin.im>
parents:
26482
diff
changeset
|
574 | * @return TRUE if the call succeeded else FALSE. (Doesn't imply the media session or stream will be successfully created) |
|
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
|
575 | */ |
|
26746
2a2d45ac9774
Switch media to store accounts rather than connections.
Michael Ruprecht <maiku@pidgin.im>
parents:
26611
diff
changeset
|
576 | gboolean (*initiate_media)(PurpleAccount *account, const char *who, |
|
26108
8d0fd2f195aa
Changed PurpleMediaStreamType to PurpleMediaSessionType.
Michael Ruprecht <maiku@pidgin.im>
parents:
26107
diff
changeset
|
577 | PurpleMediaSessionType type); |
|
23707
480f94157418
propagate from branch 'im.pidgin.pidgin' (head bd5f7f61d9349053ee4738efc0d17453f0574057)
Sadrul Habib Chowdhury <sadrul@pidgin.im>
diff
changeset
|
578 | |
|
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
|
579 | /** |
|
3f03e67b89ba
Fixed up media functions in prpl.c and prpl.h, adding more documentation and
Michael Ruprecht <maiku@pidgin.im>
parents:
26106
diff
changeset
|
580 | * Checks to see if the given contact supports the given type of media session. |
|
3f03e67b89ba
Fixed up media functions in prpl.c and prpl.h, adding more documentation and
Michael Ruprecht <maiku@pidgin.im>
parents:
26106
diff
changeset
|
581 | * |
|
26746
2a2d45ac9774
Switch media to store accounts rather than connections.
Michael Ruprecht <maiku@pidgin.im>
parents:
26611
diff
changeset
|
582 | * @param account The account the contact is on. |
|
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
|
583 | * @param who The remote user to check for media capability with. |
|
26316
950c0d491c0d
Change purple_prpl_can_do_media to purple_prpl_get_media_caps.
Michael Ruprecht <maiku@pidgin.im>
parents:
26186
diff
changeset
|
584 | * @return The media caps the contact supports. |
|
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
|
585 | */ |
|
26746
2a2d45ac9774
Switch media to store accounts rather than connections.
Michael Ruprecht <maiku@pidgin.im>
parents:
26611
diff
changeset
|
586 | PurpleMediaCaps (*get_media_caps)(PurpleAccount *account, |
|
26316
950c0d491c0d
Change purple_prpl_can_do_media to purple_prpl_get_media_caps.
Michael Ruprecht <maiku@pidgin.im>
parents:
26186
diff
changeset
|
587 | const char *who); |
|
26657
1067482b6de1
propagate from branch 'im.pidgin.pidgin' (head 69f29e0c8111a1c5b6270f7924a468b75f6b5aa9)
Richard Laager <rlaager@pidgin.im>
diff
changeset
|
588 | |
|
1067482b6de1
propagate from branch 'im.pidgin.pidgin' (head 69f29e0c8111a1c5b6270f7924a468b75f6b5aa9)
Richard Laager <rlaager@pidgin.im>
diff
changeset
|
589 | /** |
|
24912
9ae8349f0353
Move the mood UI for ICQ into Pidgin. It still uses the new request API
Richard Laager <rlaager@pidgin.im>
parents:
23875
diff
changeset
|
590 | * Returns an array of "PurpleMood"s, with the last one having |
|
29815
e75c3336b42a
Allow showing moods for buddies when signed on using an XMPP account not
Marcus Lundblad <malu@pidgin.im>
parents:
29803
diff
changeset
|
591 | * "mood" set to @c NULL. |
|
30138
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
592 | * @since 2.7.0 |
|
24912
9ae8349f0353
Move the mood UI for ICQ into Pidgin. It still uses the new request API
Richard Laager <rlaager@pidgin.im>
parents:
23875
diff
changeset
|
593 | */ |
|
9ae8349f0353
Move the mood UI for ICQ into Pidgin. It still uses the new request API
Richard Laager <rlaager@pidgin.im>
parents:
23875
diff
changeset
|
594 | PurpleMood *(*get_moods)(PurpleAccount *account); |
|
30138
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
595 | |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
596 | /** |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
597 | * Set the user's "friendly name" (or alias or nickname or |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
598 | * whatever term you want to call it) on the server. The |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
599 | * protocol plugin should call success_cb or failure_cb |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
600 | * *asynchronously* (if it knows immediately that the set will fail, |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
601 | * call one of the callbacks from an idle/0-second timeout) depending |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
602 | * on if the nickname is set successfully. |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
603 | * |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
604 | * @param gc The connection for which to set an alias |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
605 | * @param alias The new server-side alias/nickname for this account, |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
606 | * or NULL to unset the alias/nickname (or return it to |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
607 | * a protocol-specific "default"). |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
608 | * @param success_cb Callback to be called if the public alias is set |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
609 | * @param failure_cb Callback to be called if setting the public alias |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
610 | * fails |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
611 | * @see purple_account_set_public_alias |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
612 | * @since 2.7.0 |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
613 | */ |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
614 | void (*set_public_alias)(PurpleConnection *gc, const char *alias, |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
615 | PurpleSetPublicAliasSuccessCallback success_cb, |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
616 | PurpleSetPublicAliasFailureCallback failure_cb); |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
617 | /** |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
618 | * Retrieve the user's "friendly name" as set on the server. |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
619 | * The protocol plugin should call success_cb or failure_cb |
|
30195
c292bad63d91
Fix copy&paste typos.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
30138
diff
changeset
|
620 | * *asynchronously* (even if it knows immediately that the get will fail, |
|
30138
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
621 | * call one of the callbacks from an idle/0-second timeout) depending |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
622 | * on if the nickname is retrieved. |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
623 | * |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
624 | * @param gc The connection for which to retireve the alias |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
625 | * @param success_cb Callback to be called with the retrieved alias |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
626 | * @param failure_cb Callback to be called if the prpl is unable to |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
627 | * retrieve the alias |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
628 | * @see purple_account_get_public_alias |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
629 | * @since 2.7.0 |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
630 | */ |
|
cca9685df785
Add purple_account_[gs]et_public_alias functions, per discussion in d@cpi
Paul Aurich <darkrain42@pidgin.im>
parents:
30125
diff
changeset
|
631 | void (*get_public_alias)(PurpleConnection *gc, |
|
30195
c292bad63d91
Fix copy&paste typos.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
30138
diff
changeset
|
632 | PurpleGetPublicAliasSuccessCallback success_cb, |
|
c292bad63d91
Fix copy&paste typos.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
30138
diff
changeset
|
633 | PurpleGetPublicAliasFailureCallback failure_cb); |
|
31594
ec0856af6477
Add new functions for adding buddies with an invite message. If the
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31293
diff
changeset
|
634 | |
|
ec0856af6477
Add new functions for adding buddies with an invite message. If the
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31293
diff
changeset
|
635 | /** |
|
ec0856af6477
Add new functions for adding buddies with an invite message. If the
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31293
diff
changeset
|
636 | * Add a buddy to a group on the server. |
|
ec0856af6477
Add new functions for adding buddies with an invite message. If the
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31293
diff
changeset
|
637 | * |
|
ec0856af6477
Add new functions for adding buddies with an invite message. If the
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31293
diff
changeset
|
638 | * This PRPL function may be called in situations in which the buddy is |
|
ec0856af6477
Add new functions for adding buddies with an invite message. If the
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31293
diff
changeset
|
639 | * already in the specified group. If the protocol supports |
|
ec0856af6477
Add new functions for adding buddies with an invite message. If the
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31293
diff
changeset
|
640 | * authorization and the user is not already authorized to see the |
|
ec0856af6477
Add new functions for adding buddies with an invite message. If the
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31293
diff
changeset
|
641 | * status of \a buddy, \a add_buddy should request authorization. |
|
ec0856af6477
Add new functions for adding buddies with an invite message. If the
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31293
diff
changeset
|
642 | * |
|
ec0856af6477
Add new functions for adding buddies with an invite message. If the
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31293
diff
changeset
|
643 | * If authorization is required, then use the supplied invite message. |
|
ec0856af6477
Add new functions for adding buddies with an invite message. If the
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31293
diff
changeset
|
644 | * |
|
ec0856af6477
Add new functions for adding buddies with an invite message. If the
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31293
diff
changeset
|
645 | * @since 2.8.0 |
|
ec0856af6477
Add new functions for adding buddies with an invite message. If the
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31293
diff
changeset
|
646 | */ |
|
ec0856af6477
Add new functions for adding buddies with an invite message. If the
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31293
diff
changeset
|
647 | void (*add_buddy_with_invite)(PurpleConnection *pc, PurpleBuddy *buddy, PurpleGroup *group, const char *message); |
|
ec0856af6477
Add new functions for adding buddies with an invite message. If the
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31293
diff
changeset
|
648 | void (*add_buddies_with_invite)(PurpleConnection *pc, GList *buddies, GList *groups, const char *message); |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5148
diff
changeset
|
649 | }; |
|
2246
8ade8b7421af
[gaim-migrate @ 2256]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2232
diff
changeset
|
650 | |
|
23276
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
651 | #define PURPLE_PROTOCOL_PLUGIN_HAS_FUNC(prpl, member) \ |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
652 | (((G_STRUCT_OFFSET(PurplePluginProtocolInfo, member) < G_STRUCT_OFFSET(PurplePluginProtocolInfo, struct_size)) \ |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
653 | || (G_STRUCT_OFFSET(PurplePluginProtocolInfo, member) < prpl->struct_size)) && \ |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
654 | prpl->member != NULL) |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
655 | |
|
f4944cfaa1ff
Use up the last padding for PurplePluginProtocolInfo in a way that allows
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23272
diff
changeset
|
656 | |
| 15884 | 657 | #define PURPLE_IS_PROTOCOL_PLUGIN(plugin) \ |
| 658 | ((plugin)->info->type == PURPLE_PLUGIN_PROTOCOL) | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
5148
diff
changeset
|
659 | |
| 15884 | 660 | #define PURPLE_PLUGIN_PROTOCOL_INFO(plugin) \ |
| 661 | ((PurplePluginProtocolInfo *)(plugin)->info->extra_info) | |
| 981 | 662 | |
|
5944
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5943
diff
changeset
|
663 | #ifdef __cplusplus |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5943
diff
changeset
|
664 | extern "C" { |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5943
diff
changeset
|
665 | #endif |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5943
diff
changeset
|
666 | |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
667 | /**************************************************************************/ |
|
22225
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
668 | /** @name Attention Type API */ |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
669 | /**************************************************************************/ |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
670 | /*@{*/ |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
671 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
672 | /** |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
673 | * Creates a new #PurpleAttentionType object and sets its mandatory parameters. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
674 | * |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
675 | * @param ulname A non-localized string that can be used by UIs in need of such |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
676 | * non-localized strings. This should be the same as @a name, |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
677 | * without localization. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
678 | * @param name A localized string that the UI may display for the event. This |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
679 | * should be the same string as @a ulname, with localization. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
680 | * @param inc_desc A localized description shown when the event is received. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
681 | * @param out_desc A localized description shown when the event is sent. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
682 | * @return A pointer to the new object. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
683 | * @since 2.4.0 |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
684 | */ |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
685 | PurpleAttentionType *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:
21865
diff
changeset
|
686 | 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:
21865
diff
changeset
|
687 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
688 | /** |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
689 | * Sets the displayed name of the attention-demanding event. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
690 | * |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
691 | * @param type The attention type. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
692 | * @param name The localized name that will be displayed by UIs. This should be |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
693 | * the same string given as the unlocalized name, but with |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
694 | * localization. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
695 | * @since 2.4.0 |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
696 | */ |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
697 | void 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:
21865
diff
changeset
|
698 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
699 | /** |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
700 | * Sets the description of the attention-demanding event shown in conversations |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
701 | * when the event is received. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
702 | * |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
703 | * @param type The attention type. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
704 | * @param desc The localized description for incoming events. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
705 | * @since 2.4.0 |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
706 | */ |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
707 | void 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:
21865
diff
changeset
|
708 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
709 | /** |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
710 | * Sets the description of the attention-demanding event shown in conversations |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
711 | * when the event is sent. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
712 | * |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
713 | * @param type The attention type. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
714 | * @param desc The localized description for outgoing events. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
715 | * @since 2.4.0 |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
716 | */ |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
717 | void 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:
21865
diff
changeset
|
718 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
719 | /** |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
720 | * Sets the name of the icon to display for the attention event; this is optional. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
721 | * |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
722 | * @param type The attention type. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
723 | * @param name The icon's name. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
724 | * @note Icons are optional for attention events. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
725 | * @since 2.4.0 |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
726 | */ |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
727 | void 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:
21865
diff
changeset
|
728 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
729 | /** |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
730 | * Sets the unlocalized name of the attention event; some UIs may need this, |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
731 | * thus it is required. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
732 | * |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
733 | * @param type The attention type. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
734 | * @param ulname The unlocalized name. This should be the same string given as |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
735 | * the localized name, but without localization. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
736 | * @since 2.4.0 |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
737 | */ |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
738 | void 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:
21865
diff
changeset
|
739 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
740 | /** |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
741 | * Get the attention type's name as displayed by the UI. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
742 | * |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
743 | * @param type The attention type. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
744 | * @return The name. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
745 | * @since 2.4.0 |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
746 | */ |
|
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
|
747 | const char *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:
21865
diff
changeset
|
748 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
749 | /** |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
750 | * Get the attention type's description shown when the event is received. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
751 | * |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
752 | * @param type The attention type. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
753 | * @return The description. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
754 | * @since 2.4.0 |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
755 | */ |
|
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
|
756 | const char *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:
21865
diff
changeset
|
757 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
758 | /** |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
759 | * Get the attention type's description shown when the event is sent. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
760 | * |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
761 | * @param type The attention type. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
762 | * @return The description. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
763 | * @since 2.4.0 |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
764 | */ |
|
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
|
765 | const char *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:
21865
diff
changeset
|
766 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
767 | /** |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
768 | * Get the attention type's icon name. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
769 | * |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
770 | * @param type The attention type. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
771 | * @return The icon name or @c NULL if unset/empty. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
772 | * @note Icons are optional for attention events. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
773 | * @since 2.4.0 |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
774 | */ |
|
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
|
775 | const char *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:
21865
diff
changeset
|
776 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
777 | /** |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
778 | * Get the attention type's unlocalized name; this is useful for some UIs. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
779 | * |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
780 | * @param type The attention type |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
781 | * @return The unlocalized name. |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
782 | * @since 2.4.0 |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
783 | */ |
|
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
|
784 | const char *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:
21865
diff
changeset
|
785 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
786 | /*@}*/ |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
787 | |
|
6cd802a8c5ad
This adds accessor and mutator API for the PurpleAttentionType struct.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21865
diff
changeset
|
788 | /**************************************************************************/ |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
789 | /** @name Protocol Plugin API */ |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
790 | /**************************************************************************/ |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
791 | /*@{*/ |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
792 | |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
793 | /** |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
794 | * Notifies Purple that our account's idle state and time have changed. |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
795 | * |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
796 | * This is meant to be called from protocol plugins. |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
797 | * |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
798 | * @param account The account. |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
799 | * @param idle The user's idle state. |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
800 | * @param idle_time The user's idle time. |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
801 | */ |
| 15884 | 802 | void purple_prpl_got_account_idle(PurpleAccount *account, gboolean idle, |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
803 | time_t idle_time); |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
804 | |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
805 | /** |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
806 | * Notifies Purple of our account's log-in time. |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
807 | * |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
808 | * This is meant to be called from protocol plugins. |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
809 | * |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
810 | * @param account The account the user is on. |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
811 | * @param login_time The user's log-in time. |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
812 | */ |
| 15884 | 813 | void purple_prpl_got_account_login_time(PurpleAccount *account, time_t login_time); |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
814 | |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
815 | /** |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
816 | * Notifies Purple that our account's status has changed. |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
817 | * |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
818 | * This is meant to be called from protocol plugins. |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
819 | * |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
820 | * @param account The account the user is on. |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
821 | * @param status_id The status ID. |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
822 | * @param ... A NULL-terminated list of attribute IDs and values, |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
823 | * beginning with the value for @a attr_id. |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
824 | */ |
| 15884 | 825 | void purple_prpl_got_account_status(PurpleAccount *account, |
|
18243
c68ce32c3449
Add G_GNUC_NULL_TERMINATED to a few functions that expect a NULL terminated
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18092
diff
changeset
|
826 | const char *status_id, ...) G_GNUC_NULL_TERMINATED; |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
827 | |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
828 | /** |
|
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
|
829 | * Notifies Purple that our account's actions have changed. This is only |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
830 | * called after the initial connection. Emits the 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
|
831 | * signal. |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
832 | * |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
833 | * This is meant to be called from protocol plugins. |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
834 | * |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
835 | * @param account The 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
|
836 | * |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
837 | * @see 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
|
838 | * @since 2.6.0 |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
839 | */ |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
840 | void 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
|
841 | |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26746
diff
changeset
|
842 | /** |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
843 | * Notifies Purple that a buddy's idle state and time have changed. |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
844 | * |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
845 | * This is meant to be called from protocol plugins. |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
846 | * |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
847 | * @param account The account the user is on. |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
848 | * @param name The name of the buddy. |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
849 | * @param idle The user's idle state. |
|
10860
8f600347b9e4
[gaim-migrate @ 12543]
Palmer Cox <enix@users.sourceforge.net>
parents:
10475
diff
changeset
|
850 | * @param idle_time The user's idle time. This is the time at |
|
8f600347b9e4
[gaim-migrate @ 12543]
Palmer Cox <enix@users.sourceforge.net>
parents:
10475
diff
changeset
|
851 | * which the user became idle, in seconds since |
|
25231
099746be0c86
Add a comment that 0 should be used when a buddies idle time is unknown
Mark Doliner <markdoliner@pidgin.im>
parents:
25105
diff
changeset
|
852 | * the epoch. If the PRPL does not know this value |
|
099746be0c86
Add a comment that 0 should be used when a buddies idle time is unknown
Mark Doliner <markdoliner@pidgin.im>
parents:
25105
diff
changeset
|
853 | * then it should pass 0. |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
854 | */ |
| 15884 | 855 | void purple_prpl_got_user_idle(PurpleAccount *account, const char *name, |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
856 | gboolean idle, time_t idle_time); |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
857 | |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
858 | /** |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
859 | * Notifies Purple of a buddy's log-in time. |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
860 | * |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
861 | * This is meant to be called from protocol plugins. |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
862 | * |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
863 | * @param account The account the user is on. |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
864 | * @param name The name of the buddy. |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
865 | * @param login_time The user's log-in time. |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
866 | */ |
| 15884 | 867 | void purple_prpl_got_user_login_time(PurpleAccount *account, const char *name, |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
868 | time_t login_time); |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
869 | |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
870 | /** |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
871 | * Notifies Purple that a buddy's status has been activated. |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
872 | * |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
873 | * This is meant to be called from protocol plugins. |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
874 | * |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
875 | * @param account The account the user is on. |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
876 | * @param name The name of the buddy. |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
877 | * @param status_id The status ID. |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
878 | * @param ... A NULL-terminated list of attribute IDs and values, |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
879 | * beginning with the value for @a attr_id. |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
880 | */ |
| 15884 | 881 | void purple_prpl_got_user_status(PurpleAccount *account, const char *name, |
|
18243
c68ce32c3449
Add G_GNUC_NULL_TERMINATED to a few functions that expect a NULL terminated
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18092
diff
changeset
|
882 | const char *status_id, ...) G_GNUC_NULL_TERMINATED; |
|
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:
15524
diff
changeset
|
883 | |
|
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:
15524
diff
changeset
|
884 | /** |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
885 | * Notifies libpurple that a buddy's status has been deactivated |
|
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:
15524
diff
changeset
|
886 | * |
|
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:
15524
diff
changeset
|
887 | * This is meant to be called from protocol plugins. |
|
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:
15524
diff
changeset
|
888 | * |
|
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:
15524
diff
changeset
|
889 | * @param account The account the user is on. |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
890 | * @param name The name of the buddy. |
|
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:
15524
diff
changeset
|
891 | * @param status_id The 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:
15524
diff
changeset
|
892 | */ |
| 15884 | 893 | 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:
15524
diff
changeset
|
894 | const char *status_id); |
|
25888
d0fdd378a635
Remove trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
25231
diff
changeset
|
895 | |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
896 | /** |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
897 | * Informs the server that our account's status changed. |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
898 | * |
|
10447
887380ec66f5
[gaim-migrate @ 11712]
Mark Doliner <markdoliner@pidgin.im>
parents:
10400
diff
changeset
|
899 | * @param account The account the user is on. |
|
887380ec66f5
[gaim-migrate @ 11712]
Mark Doliner <markdoliner@pidgin.im>
parents:
10400
diff
changeset
|
900 | * @param old_status The previous status. |
|
887380ec66f5
[gaim-migrate @ 11712]
Mark Doliner <markdoliner@pidgin.im>
parents:
10400
diff
changeset
|
901 | * @param new_status The status that was activated, or deactivated |
|
887380ec66f5
[gaim-migrate @ 11712]
Mark Doliner <markdoliner@pidgin.im>
parents:
10400
diff
changeset
|
902 | * (in the case of independent statuses). |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
903 | */ |
| 15884 | 904 | void purple_prpl_change_account_status(PurpleAccount *account, |
| 905 | PurpleStatus *old_status, | |
| 906 | PurpleStatus *new_status); | |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
907 | |
|
10006
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9999
diff
changeset
|
908 | /** |
|
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9999
diff
changeset
|
909 | * Retrieves the list of stock status types from a prpl. |
|
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9999
diff
changeset
|
910 | * |
|
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9999
diff
changeset
|
911 | * @param account The account the user is on. |
|
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9999
diff
changeset
|
912 | * @param presence The presence for which we're going to get statuses |
|
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9999
diff
changeset
|
913 | * |
|
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9999
diff
changeset
|
914 | * @return List of statuses |
|
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9999
diff
changeset
|
915 | */ |
| 15884 | 916 | GList *purple_prpl_get_statuses(PurpleAccount *account, PurplePresence *presence); |
|
10006
800a81666868
[gaim-migrate @ 10923]
Dave West <kat@users.sourceforge.net>
parents:
9999
diff
changeset
|
917 | |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
918 | /** |
|
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
919 | * Send an attention request message. |
|
23875
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
920 | * |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
921 | * @param gc The connection to send the message on. |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
922 | * @param who Whose attention to request. |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
923 | * @param type_code An index into the prpl's attention_types list determining the type |
|
38089
da90fe7312d3
yahoo: Remove protocol plugin from tree
Mike Ruprecht <cmaiku@gmail.com>
parents:
38086
diff
changeset
|
924 | * of the attention request command to send. 0 if prpl only defines one, |
|
da90fe7312d3
yahoo: Remove protocol plugin from tree
Mike Ruprecht <cmaiku@gmail.com>
parents:
38086
diff
changeset
|
925 | * but protocols are allowed to define more. |
|
23875
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
926 | * |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
927 | * Note that you can't send arbitrary PurpleAttentionType's, because there is |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
928 | * only a fixed set of attention commands. |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
929 | * |
|
23875
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
930 | * @since 2.5.0 |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
931 | */ |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
932 | void 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:
23513
diff
changeset
|
933 | |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
934 | /** |
|
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
935 | * Process an incoming attention message. |
|
23875
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
936 | * |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
937 | * @param gc The connection that received the attention message. |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
938 | * @param who Who requested your attention. |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
939 | * @param type_code An index into the prpl's attention_types list determining the type |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
940 | * of the attention request command to send. |
|
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
941 | * |
|
23875
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
942 | * @since 2.5.0 |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
943 | */ |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
944 | void 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:
23513
diff
changeset
|
945 | |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
946 | /** |
|
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
947 | * Process an incoming attention message in a chat. |
|
23875
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
948 | * |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
949 | * @param gc The connection that received the attention message. |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
950 | * @param id The chat id. |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
951 | * @param who Who requested your attention. |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
952 | * @param type_code An index into the prpl's attention_types list determining the type |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
953 | * of the attention request command to send. |
|
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
25888
diff
changeset
|
954 | * |
|
23875
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
955 | * @since 2.5.0 |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
956 | */ |
|
d7e5f66cbfc9
Add purple_prpl_got_attention_in_chat, then deprecate
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
23513
diff
changeset
|
957 | void 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:
23513
diff
changeset
|
958 | |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
23740
diff
changeset
|
959 | /** |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
23740
diff
changeset
|
960 | * Determines if the contact supports the given media session type. |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
23740
diff
changeset
|
961 | * |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
23740
diff
changeset
|
962 | * @param account The account the user is on. |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
23740
diff
changeset
|
963 | * @param who The name of the contact to check capabilities for. |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
23740
diff
changeset
|
964 | * |
|
26316
950c0d491c0d
Change purple_prpl_can_do_media to purple_prpl_get_media_caps.
Michael Ruprecht <maiku@pidgin.im>
parents:
26186
diff
changeset
|
965 | * @return The media caps the contact supports. |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
23740
diff
changeset
|
966 | */ |
|
26316
950c0d491c0d
Change purple_prpl_can_do_media to purple_prpl_get_media_caps.
Michael Ruprecht <maiku@pidgin.im>
parents:
26186
diff
changeset
|
967 | PurpleMediaCaps purple_prpl_get_media_caps(PurpleAccount *account, |
|
950c0d491c0d
Change purple_prpl_can_do_media to purple_prpl_get_media_caps.
Michael Ruprecht <maiku@pidgin.im>
parents:
26186
diff
changeset
|
968 | const char *who); |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
23740
diff
changeset
|
969 | |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
23740
diff
changeset
|
970 | /** |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
23740
diff
changeset
|
971 | * Initiates a media session with the given contact. |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
23740
diff
changeset
|
972 | * |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
23740
diff
changeset
|
973 | * @param account The account the user is on. |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
23740
diff
changeset
|
974 | * @param who The name of the contact to start a session with. |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
23740
diff
changeset
|
975 | * @param type The type of media session to start. |
|
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
23740
diff
changeset
|
976 | * |
|
26495
52846ebe1c7d
Don't assume a PurpleMedia instance will be created immediately.
Michael Ruprecht <maiku@pidgin.im>
parents:
26482
diff
changeset
|
977 | * @return TRUE if the call succeeded else FALSE. (Doesn't imply the media session or stream will be successfully created) |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
23740
diff
changeset
|
978 | */ |
|
26495
52846ebe1c7d
Don't assume a PurpleMedia instance will be created immediately.
Michael Ruprecht <maiku@pidgin.im>
parents:
26482
diff
changeset
|
979 | gboolean purple_prpl_initiate_media(PurpleAccount *account, |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
23740
diff
changeset
|
980 | const char *who, |
|
26108
8d0fd2f195aa
Changed PurpleMediaStreamType to PurpleMediaSessionType.
Michael Ruprecht <maiku@pidgin.im>
parents:
26107
diff
changeset
|
981 | PurpleMediaSessionType type); |
|
26099
2ba28e840a95
Convert serv_* media functions to purple_prpl_* functions.
Michael Ruprecht <maiku@pidgin.im>
parents:
23740
diff
changeset
|
982 | |
|
29543
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27132
diff
changeset
|
983 | /** |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27132
diff
changeset
|
984 | * Signals that the prpl received capabilities for the given contact. |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27132
diff
changeset
|
985 | * |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27132
diff
changeset
|
986 | * This function is intended to be used only by prpls. |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27132
diff
changeset
|
987 | * |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27132
diff
changeset
|
988 | * @param account The account the user is on. |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27132
diff
changeset
|
989 | * @param who The name of the contact for which capabilities have been received. |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27132
diff
changeset
|
990 | * @since 2.7.0 |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27132
diff
changeset
|
991 | */ |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27132
diff
changeset
|
992 | void purple_prpl_got_media_caps(PurpleAccount *account, const char *who); |
|
4e38799c741e
Add the purple_media_got_media_caps function in order to signal when a prpl
Michael Ruprecht <maiku@pidgin.im>
parents:
27132
diff
changeset
|
993 | |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
994 | /*@}*/ |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
995 | |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
996 | /**************************************************************************/ |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
997 | /** @name Protocol Plugin Subsystem API */ |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
998 | /**************************************************************************/ |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
999 | /*@{*/ |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
1000 | |
|
4557
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
1001 | /** |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
1002 | * Finds a protocol plugin structure of the specified type. |
|
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
1003 | * |
| 9000 | 1004 | * @param id The protocol plugin; |
|
4557
40c90b1671cf
[gaim-migrate @ 4837]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
1005 | */ |
| 15884 | 1006 | PurplePlugin *purple_find_prpl(const char *id); |
| 981 | 1007 | |
|
9944
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
1008 | /*@}*/ |
|
71ef020ec4b0
[gaim-migrate @ 10838]
Christian Hammond <chipx86@chipx86.com>
parents:
9943
diff
changeset
|
1009 | |
|
5944
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5943
diff
changeset
|
1010 | #ifdef __cplusplus |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5943
diff
changeset
|
1011 | } |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5943
diff
changeset
|
1012 | #endif |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5943
diff
changeset
|
1013 | |
|
36038
c986b1e3fa1d
Silence a result_independent_of_operands coverity false positive
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
33856
diff
changeset
|
1014 | #ifdef __COVERITY__ |
|
c986b1e3fa1d
Silence a result_independent_of_operands coverity false positive
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
33856
diff
changeset
|
1015 | #undef PURPLE_PROTOCOL_PLUGIN_HAS_FUNC |
|
c986b1e3fa1d
Silence a result_independent_of_operands coverity false positive
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
33856
diff
changeset
|
1016 | #define PURPLE_PROTOCOL_PLUGIN_HAS_FUNC(prpl, member) (prpl->member != NULL) |
|
c986b1e3fa1d
Silence a result_independent_of_operands coverity false positive
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
33856
diff
changeset
|
1017 | #endif |
|
c986b1e3fa1d
Silence a result_independent_of_operands coverity false positive
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents:
33856
diff
changeset
|
1018 | |
|
2417
7751d1269b09
[gaim-migrate @ 2430]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2411
diff
changeset
|
1019 | #endif /* _PRPL_H_ */ |