| 94 |
94 |
| 95 } PurpleConversationUpdateType; |
95 } PurpleConversationUpdateType; |
| 96 |
96 |
| 97 /** |
97 /** |
| 98 * PurpleConversationType: |
98 * PurpleConversationType: |
| 99 * @PurpleConversationTypeUnset: A value to specify that the property has not |
99 * @PURPLE_CONVERSATION_TYPE_UNSET: A value to specify that the property has |
| 100 * been set. |
100 * not been set. |
| 101 * @PurpleConversationTypeDM: A direct message between two contacts. |
101 * @PURPLE_CONVERSATION_TYPE_DM: A direct message between two contacts. |
| 102 * @PurpleConversationTypeGroupDM: A direct message between a protocol |
102 * @PURPLE_CONVERSATION_TYPE_GROUP_DM: A direct message between a protocol |
| 103 * dependent number of contacts. |
103 * dependent number of contacts. |
| 104 * @PurpleConversationTypeChannel: A multi-user chat that is available to all |
104 * @PURPLE_CONVERSATION_TYPE_CHANNEL: A multi-user chat that is available to |
| 105 * users on the protocol and has features like |
105 * all users on the protocol and has |
| 106 * moderation. |
106 * features like moderation. |
| 107 * @PurpleConversationTypeThread: A thread is a subset of messages from a |
107 * @PURPLE_CONVERSATION_TYPE_THREAD: A thread is a subset of messages from a |
| 108 * conversation that are related. |
108 * conversation that are related. |
| 109 * |
109 * |
| 110 * The type of the conversation. This is mostly ignored, but could be useful in |
110 * The type of the conversation. This is mostly ignored, but could be useful in |
| 111 * ways we can't imagine right now. If you come up with one in the future, |
111 * ways we can't imagine right now. If you come up with one in the future, |
| 112 * please let us know! |
112 * please let us know! |
| 113 * |
113 * |
| 114 * Since: 3.0 |
114 * Since: 3.0 |
| 115 */ |
115 */ |
| 116 PURPLE_AVAILABLE_TYPE_IN_3_0 |
116 PURPLE_AVAILABLE_TYPE_IN_3_0 |
| 117 typedef enum { |
117 typedef enum { |
| 118 PurpleConversationTypeUnset, |
118 PURPLE_CONVERSATION_TYPE_UNSET, |
| 119 PurpleConversationTypeDM, |
119 PURPLE_CONVERSATION_TYPE_DM, |
| 120 PurpleConversationTypeGroupDM, |
120 PURPLE_CONVERSATION_TYPE_GROUP_DM, |
| 121 PurpleConversationTypeChannel, |
121 PURPLE_CONVERSATION_TYPE_CHANNEL, |
| 122 PurpleConversationTypeThread, |
122 PURPLE_CONVERSATION_TYPE_THREAD, |
| 123 } PurpleConversationType; |
123 } PurpleConversationType; |
| 124 |
124 |
| 125 /** |
125 /** |
| 126 * PurpleConversation: |
126 * PurpleConversation: |
| 127 * |
127 * |