2 * @file gtkconv.h GTK+ Conversation API
4 * @see @ref gtkconv-signals
9 * Pidgin is the legal property of its developers, whose names are too numerous
10 * to list here. Please refer to the COPYRIGHT file distributed with this
11 * source distribution.
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
27 #ifndef _PIDGIN_CONVERSATION_H_
28 #define _PIDGIN_CONVERSATION_H_
30 typedef struct _PidginImPane PidginImPane
;
31 typedef struct _PidginChatPane PidginChatPane
;
32 typedef struct _PidginConversation PidginConversation
;
39 PIDGIN_UNSEEN_NONE
, /**< No unseen text in the conversation. */
40 PIDGIN_UNSEEN_EVENT
, /**< Unseen events in the conversation. */
41 PIDGIN_UNSEEN_NO_LOG
, /**< Unseen text with NO_LOG flag. */
42 PIDGIN_UNSEEN_TEXT
, /**< Unseen text in the conversation. */
43 PIDGIN_UNSEEN_NICK
/**< Unseen text and the nick was said. */
47 CHAT_USERS_ICON_COLUMN
,
48 CHAT_USERS_ALIAS_COLUMN
,
49 CHAT_USERS_ALIAS_KEY_COLUMN
,
50 CHAT_USERS_NAME_COLUMN
,
51 CHAT_USERS_FLAGS_COLUMN
,
52 CHAT_USERS_COLOR_COLUMN
,
53 CHAT_USERS_WEIGHT_COLUMN
,
54 CHAT_USERS_ICON_STOCK_COLUMN
, /** @since 2.6.0 */
58 #define PIDGIN_CONVERSATION(conv) \
59 ((PidginConversation *)(conv)->ui_data)
61 #define PIDGIN_IS_PIDGIN_CONVERSATION(conv) \
62 (purple_conversation_get_ui_ops(conv) == \
63 pidgin_conversations_get_conv_ui_ops())
66 #include "conversation.h"
67 #include "gtkconvwin.h"
69 /**************************************************************************
71 **************************************************************************/
75 * A GTK+ representation of a graphical window containing one or more
80 * A GTK+ Instant Message pane.
92 /* Buddy icon stuff */
93 GtkWidget
*icon_container
;
97 GdkPixbufAnimation
*anim
;
98 GdkPixbufAnimationIter
*iter
;
105 struct _PidginChatPane
109 GtkWidget
*topic_text
;
113 * A GTK+ conversation pane.
115 struct _PidginConversation
117 PurpleConversation
*active_conv
;
125 GtkTooltips
*tooltips
;
129 GtkWidget
*menu_tabby
;
132 GtkTextBuffer
*entry_buffer
;
134 gboolean auto_resize
; /* this is set to TRUE if the conversation
135 * is being resized by a non-user-initiated
136 * event, such as the buddy icon appearing
138 gboolean entry_growing
; /* True if the size of the entry was set
139 * automatically by typing too much to fit
142 GtkWidget
*close
; /* "x" on the tab */
144 GtkWidget
*tab_label
;
145 GtkWidget
*menu_icon
;
146 GtkWidget
*menu_label
;
147 #if !(defined PIDGIN_DISABLE_DEPRECATED) || (defined _PIDGIN_GTKCONV_C_)
154 GtkWidget
*lower_hbox
;
158 PidginUnseenState unseen_state
;
164 PidginChatPane
*chat
;
169 GtkWidget
*infopane_hbox
;
171 GtkListStore
*infopane_model
;
172 GtkTreeIter infopane_iter
;
174 /* Used when attaching a PidginConversation to a PurpleConversation
175 * with message history */
181 /* Quick Find (since 2.7.0) */
184 GtkWidget
*container
;
190 /**************************************************************************
191 * @name GTK+ Conversation API
192 **************************************************************************/
196 * Returns the UI operations structure for GTK+ conversations.
198 * @return The GTK+ conversation operations structure.
200 PurpleConversationUiOps
*pidgin_conversations_get_conv_ui_ops(void);
203 * Updates the buddy icon on a conversation.
205 * @param conv The conversation.
207 void pidgin_conv_update_buddy_icon(PurpleConversation
*conv
);
210 * Sets the active conversation within a GTK-conversation.
212 * @param conv The conversation
214 void pidgin_conv_switch_active_conversation(PurpleConversation
*conv
);
217 * Updates conversation buttons by protocol.
219 * @param conv The conversation.
221 void pidgin_conv_update_buttons_by_protocol(PurpleConversation
*conv
);
224 * Returns a list of conversations of the given type which have an unseen
225 * state greater than or equal to the specified minimum state. Using the
226 * hidden_only parameter, this search can be limited to hidden
227 * conversations. The max_count parameter will limit the total number of
228 * converations returned if greater than zero. The returned list should
229 * be freed by the caller.
231 * @param type The type of conversation.
232 * @param min_state The minimum unseen state.
233 * @param hidden_only If TRUE, only consider hidden conversations.
234 * @param max_count Maximum number of conversations to return, or 0 for
236 * @return List of PurpleConversation matching criteria, or NULL.
239 pidgin_conversations_find_unseen_list(PurpleConversationType type
,
240 PidginUnseenState min_state
,
241 gboolean hidden_only
,
245 * Fill a menu with a list of conversations. Clicking the conversation
246 * menu item will present that conversation to the user.
248 * @param menu Menu widget to add items to.
249 * @param convs List of PurpleConversation to add to menu.
250 * @return Number of conversations added to menu.
253 pidgin_conversations_fill_menu(GtkWidget
*menu
, GList
*convs
);
256 * Presents a purple conversation to the user.
258 * @param conv The conversation.
260 void pidgin_conv_present_conversation(PurpleConversation
*conv
);
263 * Reattach Pidgin UI to a conversation.
265 * @param conv The conversation.
267 * @return Wheter Pidgin UI was successfully attached.
271 gboolean
pidgin_conv_attach_to_conversation(PurpleConversation
*conv
);
273 PidginWindow
*pidgin_conv_get_window(PidginConversation
*gtkconv
);
274 GdkPixbuf
*pidgin_conv_get_tab_icon(PurpleConversation
*conv
, gboolean small_icon
);
275 void pidgin_conv_new(PurpleConversation
*conv
);
276 int pidgin_conv_get_tab_at_xy(PidginWindow
*win
, int x
, int y
, gboolean
*to_right
);
277 gboolean
pidgin_conv_is_hidden(PidginConversation
*gtkconv
);
280 /**************************************************************************/
281 /** @name GTK+ Conversations Subsystem */
282 /**************************************************************************/
286 * Returns the gtk conversations subsystem handle.
288 * @return The conversations subsystem handle.
290 void *pidgin_conversations_get_handle(void);
293 * Initializes the GTK+ conversations subsystem.
295 void pidgin_conversations_init(void);
298 * Uninitialized the GTK+ conversation subsystem.
300 void pidgin_conversations_uninit(void);
304 #endif /* _PIDGIN_CONVERSATION_H_ */