Sun, 14 Apr 2024 01:14:59 -0500
Remove PurpleBuddy
PurpleContactInfo was created long ago to replace this, it is now its time!
Testing Done:
Ran the turtles.
Reviewed at https://reviews.imfreedom.org/r/3123/
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
1 | /* |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
2 | * Purple - Internet Messaging Library |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
3 | * Copyright (C) Pidgin Developers <devel@pidgin.im> |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
4 | * |
|
42594
eddde70cedd8
Create a test for verifying license headers and correct the ones that were wrong
Gary Kramlich <grim@reaperworld.com>
parents:
42387
diff
changeset
|
5 | * Purple is the legal property of its developers, whose names are too numerous |
|
eddde70cedd8
Create a test for verifying license headers and correct the ones that were wrong
Gary Kramlich <grim@reaperworld.com>
parents:
42387
diff
changeset
|
6 | * to list here. Please refer to the COPYRIGHT file distributed with this |
|
eddde70cedd8
Create a test for verifying license headers and correct the ones that were wrong
Gary Kramlich <grim@reaperworld.com>
parents:
42387
diff
changeset
|
7 | * source distribution. |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
8 | * |
|
42594
eddde70cedd8
Create a test for verifying license headers and correct the ones that were wrong
Gary Kramlich <grim@reaperworld.com>
parents:
42387
diff
changeset
|
9 | * This library is free software; you can redistribute it and/or modify it |
|
eddde70cedd8
Create a test for verifying license headers and correct the ones that were wrong
Gary Kramlich <grim@reaperworld.com>
parents:
42387
diff
changeset
|
10 | * under the terms of the GNU General Public License as published by the Free |
|
eddde70cedd8
Create a test for verifying license headers and correct the ones that were wrong
Gary Kramlich <grim@reaperworld.com>
parents:
42387
diff
changeset
|
11 | * Software Foundation; either version 2 of the License, or (at your option) |
|
eddde70cedd8
Create a test for verifying license headers and correct the ones that were wrong
Gary Kramlich <grim@reaperworld.com>
parents:
42387
diff
changeset
|
12 | * any later version. |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
13 | * |
|
42594
eddde70cedd8
Create a test for verifying license headers and correct the ones that were wrong
Gary Kramlich <grim@reaperworld.com>
parents:
42387
diff
changeset
|
14 | * This library is distributed in the hope that it will be useful, but WITHOUT |
|
eddde70cedd8
Create a test for verifying license headers and correct the ones that were wrong
Gary Kramlich <grim@reaperworld.com>
parents:
42387
diff
changeset
|
15 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
eddde70cedd8
Create a test for verifying license headers and correct the ones that were wrong
Gary Kramlich <grim@reaperworld.com>
parents:
42387
diff
changeset
|
16 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
|
eddde70cedd8
Create a test for verifying license headers and correct the ones that were wrong
Gary Kramlich <grim@reaperworld.com>
parents:
42387
diff
changeset
|
17 | * more details. |
|
eddde70cedd8
Create a test for verifying license headers and correct the ones that were wrong
Gary Kramlich <grim@reaperworld.com>
parents:
42387
diff
changeset
|
18 | * |
|
eddde70cedd8
Create a test for verifying license headers and correct the ones that were wrong
Gary Kramlich <grim@reaperworld.com>
parents:
42387
diff
changeset
|
19 | * You should have received a copy of the GNU General Public License along with |
|
eddde70cedd8
Create a test for verifying license headers and correct the ones that were wrong
Gary Kramlich <grim@reaperworld.com>
parents:
42387
diff
changeset
|
20 | * this library; if not, see <https://www.gnu.org/licenses/>. |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
21 | */ |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
22 | |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
23 | #if !defined(PURPLE_GLOBAL_HEADER_INSIDE) && !defined(PURPLE_COMPILATION) |
|
42628
b069ea54b906
Fix the libpurple include warnings that were suggesting pidgin.h be included
Gary Kramlich <grim@reaperworld.com>
parents:
42613
diff
changeset
|
24 | # error "only <purple.h> may be included directly" |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
25 | #endif |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
26 | |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
27 | #ifndef PURPLE_CHANNEL_JOIN_DETAILS_H |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
28 | #define PURPLE_CHANNEL_JOIN_DETAILS_H |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
29 | |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
30 | #include <glib.h> |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
31 | #include <glib-object.h> |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
32 | |
|
42387
d9350cda1556
Export symbols added for 3.0.0
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42326
diff
changeset
|
33 | #include "purpleversion.h" |
|
d9350cda1556
Export symbols added for 3.0.0
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42326
diff
changeset
|
34 | |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
35 | G_BEGIN_DECLS |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
36 | |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
37 | #define PURPLE_TYPE_CHANNEL_JOIN_DETAILS (purple_channel_join_details_get_type()) |
|
42387
d9350cda1556
Export symbols added for 3.0.0
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42326
diff
changeset
|
38 | |
|
d9350cda1556
Export symbols added for 3.0.0
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42326
diff
changeset
|
39 | PURPLE_AVAILABLE_IN_3_0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
40 | G_DECLARE_FINAL_TYPE(PurpleChannelJoinDetails, purple_channel_join_details, PURPLE, CHANNEL_JOIN_DETAILS, GObject) |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
41 | |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
42 | /** |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
43 | * PurpleChannelJoinDetails: |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
44 | * |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
45 | * The details that are necessary for a [class@Protocol] to join a channel. A |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
46 | * user interface will ask a protocol for a [class@ChannelJoinDetails] and then |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
47 | * fill it out and pass it back to the protocol to actually join a channel. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
48 | * |
|
42613
780d7efe37c2
Remove the micro version from since tags for libpurple part 2
Gary Kramlich <grim@reaperworld.com>
parents:
42594
diff
changeset
|
49 | * Since: 3.0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
50 | */ |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
51 | |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
52 | /** |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
53 | * purple_channel_join_details_new: |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
54 | * @nickname_supported: Whether or not nicknames are supported. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
55 | * @password_supported: Whether or not passwords are supported. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
56 | * |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
57 | * Creates a new [class@ChannelJoinDetails]. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
58 | * |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
59 | * Returns: (transfer full): The new instance. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
60 | * |
|
42613
780d7efe37c2
Remove the micro version from since tags for libpurple part 2
Gary Kramlich <grim@reaperworld.com>
parents:
42594
diff
changeset
|
61 | * Since: 3.0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
62 | */ |
|
42387
d9350cda1556
Export symbols added for 3.0.0
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42326
diff
changeset
|
63 | PURPLE_AVAILABLE_IN_3_0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
64 | PurpleChannelJoinDetails *purple_channel_join_details_new(gboolean nickname_supported, gboolean password_supported); |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
65 | |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
66 | /** |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
67 | * purple_channel_join_details_get_name: |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
68 | * @details: The instance. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
69 | * |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
70 | * Gets the name of the channel. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
71 | * |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
72 | * Returns: (nullable): The name of the channel. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
73 | * |
|
42613
780d7efe37c2
Remove the micro version from since tags for libpurple part 2
Gary Kramlich <grim@reaperworld.com>
parents:
42594
diff
changeset
|
74 | * Since: 3.0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
75 | */ |
|
42387
d9350cda1556
Export symbols added for 3.0.0
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42326
diff
changeset
|
76 | PURPLE_AVAILABLE_IN_3_0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
77 | const char *purple_channel_join_details_get_name(PurpleChannelJoinDetails *details); |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
78 | |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
79 | /** |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
80 | * purple_channel_join_details_set_name: |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
81 | * @details: The instance. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
82 | * @name: (nullable): The new name. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
83 | * |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
84 | * Sets the name of the channel to @name. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
85 | * |
|
42613
780d7efe37c2
Remove the micro version from since tags for libpurple part 2
Gary Kramlich <grim@reaperworld.com>
parents:
42594
diff
changeset
|
86 | * Since: 3.0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
87 | */ |
|
42387
d9350cda1556
Export symbols added for 3.0.0
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42326
diff
changeset
|
88 | PURPLE_AVAILABLE_IN_3_0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
89 | void purple_channel_join_details_set_name(PurpleChannelJoinDetails *details, const char *name); |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
90 | |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
91 | /** |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
92 | * purple_channel_join_details_get_nickname: |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
93 | * @details: The instance. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
94 | * |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
95 | * Gets the nickname of the user in the channel. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
96 | * |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
97 | * Returns: (nullable): The user's channel-specific nickname to use. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
98 | * |
|
42613
780d7efe37c2
Remove the micro version from since tags for libpurple part 2
Gary Kramlich <grim@reaperworld.com>
parents:
42594
diff
changeset
|
99 | * Since: 3.0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
100 | */ |
|
42387
d9350cda1556
Export symbols added for 3.0.0
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42326
diff
changeset
|
101 | PURPLE_AVAILABLE_IN_3_0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
102 | const char *purple_channel_join_details_get_nickname(PurpleChannelJoinDetails *details); |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
103 | |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
104 | /** |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
105 | * purple_channel_join_details_set_nickname: |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
106 | * @details: The instance. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
107 | * @nickname: (nullable): The new nickname. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
108 | * |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
109 | * Sets the channel-specific nickname for the user. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
110 | * |
|
42613
780d7efe37c2
Remove the micro version from since tags for libpurple part 2
Gary Kramlich <grim@reaperworld.com>
parents:
42594
diff
changeset
|
111 | * Since: 3.0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
112 | */ |
|
42387
d9350cda1556
Export symbols added for 3.0.0
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42326
diff
changeset
|
113 | PURPLE_AVAILABLE_IN_3_0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
114 | void purple_channel_join_details_set_nickname(PurpleChannelJoinDetails *details, const char *nickname); |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
115 | |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
116 | /** |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
117 | * purple_channel_join_details_get_nickname_supported: |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
118 | * @details: The instance. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
119 | * |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
120 | * Gets whether or not channel-specific nicknames are supported. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
121 | * |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
122 | * Returns: %TRUE if channel-specific nicknames are supported otherwise %FALSE. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
123 | * |
|
42613
780d7efe37c2
Remove the micro version from since tags for libpurple part 2
Gary Kramlich <grim@reaperworld.com>
parents:
42594
diff
changeset
|
124 | * Since: 3.0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
125 | */ |
|
42387
d9350cda1556
Export symbols added for 3.0.0
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42326
diff
changeset
|
126 | PURPLE_AVAILABLE_IN_3_0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
127 | gboolean purple_channel_join_details_get_nickname_supported(PurpleChannelJoinDetails *details); |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
128 | |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
129 | /** |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
130 | * purple_channel_join_details_get_password: |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
131 | * @details: The instance. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
132 | * |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
133 | * Gets the password the user specified to join this channel. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
134 | * |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
135 | * Returns: (nullable): The password to join this channel. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
136 | * |
|
42613
780d7efe37c2
Remove the micro version from since tags for libpurple part 2
Gary Kramlich <grim@reaperworld.com>
parents:
42594
diff
changeset
|
137 | * Since: 3.0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
138 | */ |
|
42387
d9350cda1556
Export symbols added for 3.0.0
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42326
diff
changeset
|
139 | PURPLE_AVAILABLE_IN_3_0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
140 | const char *purple_channel_join_details_get_password(PurpleChannelJoinDetails *details); |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
141 | |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
142 | /** |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
143 | * purple_channel_join_details_set_password: |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
144 | * @details: The instance. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
145 | * @password: (nullable): The new password. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
146 | * |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
147 | * Sets the password to use to join this channel. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
148 | * |
|
42613
780d7efe37c2
Remove the micro version from since tags for libpurple part 2
Gary Kramlich <grim@reaperworld.com>
parents:
42594
diff
changeset
|
149 | * Since: 3.0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
150 | */ |
|
42387
d9350cda1556
Export symbols added for 3.0.0
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42326
diff
changeset
|
151 | PURPLE_AVAILABLE_IN_3_0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
152 | void purple_channel_join_details_set_password(PurpleChannelJoinDetails *details, const char *password); |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
153 | |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
154 | /** |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
155 | * purple_channel_join_details_get_password_supported: |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
156 | * @details: The instance. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
157 | * |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
158 | * Gets whether or not the protocols supports channel passwords. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
159 | * |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
160 | * Returns: %TRUE if channel passwords are supported, otherwise %FALSE. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
161 | * |
|
42613
780d7efe37c2
Remove the micro version from since tags for libpurple part 2
Gary Kramlich <grim@reaperworld.com>
parents:
42594
diff
changeset
|
162 | * Since: 3.0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
163 | */ |
|
42387
d9350cda1556
Export symbols added for 3.0.0
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42326
diff
changeset
|
164 | PURPLE_AVAILABLE_IN_3_0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
165 | gboolean purple_channel_join_details_get_password_supported(PurpleChannelJoinDetails *details); |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
166 | |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
167 | /** |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
168 | * purple_channel_join_details_merge: |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
169 | * @source: The instance to copy from. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
170 | * @destination: The instance to copy to. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
171 | * |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
172 | * Copies the values of [property@PurpleChannelJoinDetails:name], |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
173 | * [property@PurpleChannelJoinDetails:nickname], and |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
174 | * [property@PurpleChannelJoinDetails:password] from @source to @destination. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
175 | * |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
176 | * This function is intended to be used in the join channel dialog when the |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
177 | * user switches accounts and the user interface needs to ask the protocol for |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
178 | * its default [class@ChannelJoinDetails] so that any input from the user can |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
179 | * be maintained. |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
180 | * |
|
42613
780d7efe37c2
Remove the micro version from since tags for libpurple part 2
Gary Kramlich <grim@reaperworld.com>
parents:
42594
diff
changeset
|
181 | * Since: 3.0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
182 | */ |
|
42387
d9350cda1556
Export symbols added for 3.0.0
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42326
diff
changeset
|
183 | PURPLE_AVAILABLE_IN_3_0 |
|
42326
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
184 | void purple_channel_join_details_merge(PurpleChannelJoinDetails *source, PurpleChannelJoinDetails *destination); |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
185 | |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
186 | G_END_DECLS |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
187 | |
|
3fc3dd614b4e
Create PurpleChannelJoinDetails to replace the components for join chats
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
188 | #endif /* PURPLE_CHANNEL_JOIN_DETAILS_H */ |