Mercurial > pidgin
view libpurple/whiteboard.c @ 32675:59b0cf585038
Apply some changes that don't require GTK+ 3.0.
applied changes from f017f92d2834b148a4583586bf9ba2d7a184e149
through 3a572d2b49759264dd54b77ac23764af78d630c6
Changelog: Hide some Facebook settings hacks for now.
applied changes from 3a572d2b49759264dd54b77ac23764af78d630c6
through 5a380480965863fe5303a11e5b54915402525a55
Changelog: We don't need this extra slash.
applied changes from 5a380480965863fe5303a11e5b54915402525a55
through 84f2abc2501c34fb226b46effa1713fe0fc7ae01
Changelog: Add back the More and plugin action menu entries.
applied changes from 9f9150c83aa41a5ad716a09dc9be9079a5235a85
through 5204b1b3816e4356312730935b2f3b6e9b940e1a
Changelog: Enable the menu-refreshing logic in the conversation
menu, now that the signal (un)blocking affects the
correct widget.
author | Elliott Sales de Andrade <qulogic@pidgin.im> |
---|---|
date | Sat, 08 Oct 2011 21:48:38 +0000 |
parents | 2bf260b86086 |
children | 46177ee4af40 |
line wrap: on
line source
/* * purple * * Purple is the legal property of its developers, whose names are too numerous * to list here. Please refer to the COPYRIGHT file distributed with this * source distribution. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA * */ #include "internal.h" #include "whiteboard.h" #include "prpl.h" /****************************************************************************** * Globals *****************************************************************************/ static PurpleWhiteboardUiOps *whiteboard_ui_ops = NULL; /* static PurpleWhiteboardPrplOps *whiteboard_prpl_ops = NULL; */ static GList *wbList = NULL; /*static gboolean auto_accept = TRUE; */ /****************************************************************************** * API *****************************************************************************/ void purple_whiteboard_set_ui_ops(PurpleWhiteboardUiOps *ops) { whiteboard_ui_ops = ops; } void purple_whiteboard_set_prpl_ops(PurpleWhiteboard *wb, PurpleWhiteboardPrplOps *ops) { wb->prpl_ops = ops; } PurpleWhiteboard *purple_whiteboard_create(PurpleAccount *account, const char *who, int state) { PurplePluginProtocolInfo *prpl_info; PurpleWhiteboard *wb = g_new0(PurpleWhiteboard, 1); wb->account = account; wb->state = state; wb->who = g_strdup(who); prpl_info = PURPLE_PLUGIN_PROTOCOL_INFO(purple_connection_get_prpl( purple_account_get_connection(account))); purple_whiteboard_set_prpl_ops(wb, prpl_info->whiteboard_prpl_ops); /* Start up protocol specifics */ if(wb->prpl_ops && wb->prpl_ops->start) wb->prpl_ops->start(wb); wbList = g_list_append(wbList, wb); return wb; } void purple_whiteboard_destroy(PurpleWhiteboard *wb) { g_return_if_fail(wb != NULL); if(wb->ui_data) { /* Destroy frontend */ if(whiteboard_ui_ops && whiteboard_ui_ops->destroy) whiteboard_ui_ops->destroy(wb); } /* Do protocol specific session ending procedures */ if(wb->prpl_ops && wb->prpl_ops->end) wb->prpl_ops->end(wb); g_free(wb->who); wbList = g_list_remove(wbList, wb); g_free(wb); } PurpleAccount *purple_whiteboard_get_account(const PurpleWhiteboard *wb) { g_return_val_if_fail(wb != NULL, NULL); return wb->account; } const char *purple_whiteboard_get_who(const PurpleWhiteboard *wb) { g_return_val_if_fail(wb != NULL, NULL); return wb->who; } void purple_whiteboard_set_state(PurpleWhiteboard *wb, int state) { g_return_if_fail(wb != NULL); wb->state = state; } int purple_whiteboard_get_state(const PurpleWhiteboard *wb) { g_return_val_if_fail(wb != NULL, -1); return wb->state; } void purple_whiteboard_start(PurpleWhiteboard *wb) { /* Create frontend for whiteboard */ if(whiteboard_ui_ops && whiteboard_ui_ops->create) whiteboard_ui_ops->create(wb); } /* Looks through the list of whiteboard sessions for one that is between * usernames 'me' and 'who'. Returns a pointer to a matching whiteboard * session; if none match, it returns NULL. */ PurpleWhiteboard *purple_whiteboard_get_session(const PurpleAccount *account, const char *who) { PurpleWhiteboard *wb; GList *l = wbList; /* Look for a whiteboard session between the local user and the remote user */ while(l != NULL) { wb = l->data; if(wb->account == account && purple_strequal(wb->who, who)) return wb; l = l->next; } return NULL; } void purple_whiteboard_draw_list_destroy(GList *draw_list) { g_list_free(draw_list); } gboolean purple_whiteboard_get_dimensions(const PurpleWhiteboard *wb, int *width, int *height) { PurpleWhiteboardPrplOps *prpl_ops = wb->prpl_ops; if (prpl_ops && prpl_ops->get_dimensions) { prpl_ops->get_dimensions(wb, width, height); return TRUE; } return FALSE; } void purple_whiteboard_set_dimensions(PurpleWhiteboard *wb, int width, int height) { if(whiteboard_ui_ops && whiteboard_ui_ops->set_dimensions) whiteboard_ui_ops->set_dimensions(wb, width, height); } void purple_whiteboard_send_draw_list(PurpleWhiteboard *wb, GList *list) { PurpleWhiteboardPrplOps *prpl_ops = wb->prpl_ops; if (prpl_ops && prpl_ops->send_draw_list) prpl_ops->send_draw_list(wb, list); } void purple_whiteboard_draw_point(PurpleWhiteboard *wb, int x, int y, int color, int size) { if(whiteboard_ui_ops && whiteboard_ui_ops->draw_point) whiteboard_ui_ops->draw_point(wb, x, y, color, size); } void purple_whiteboard_draw_line(PurpleWhiteboard *wb, int x1, int y1, int x2, int y2, int color, int size) { if(whiteboard_ui_ops && whiteboard_ui_ops->draw_line) whiteboard_ui_ops->draw_line(wb, x1, y1, x2, y2, color, size); } void purple_whiteboard_clear(PurpleWhiteboard *wb) { if(whiteboard_ui_ops && whiteboard_ui_ops->clear) whiteboard_ui_ops->clear(wb); } void purple_whiteboard_send_clear(PurpleWhiteboard *wb) { PurpleWhiteboardPrplOps *prpl_ops = wb->prpl_ops; if (prpl_ops && prpl_ops->clear) prpl_ops->clear(wb); } void purple_whiteboard_send_brush(PurpleWhiteboard *wb, int size, int color) { PurpleWhiteboardPrplOps *prpl_ops = wb->prpl_ops; if (prpl_ops && prpl_ops->set_brush) prpl_ops->set_brush(wb, size, color); } gboolean purple_whiteboard_get_brush(const PurpleWhiteboard *wb, int *size, int *color) { PurpleWhiteboardPrplOps *prpl_ops = wb->prpl_ops; if (prpl_ops && prpl_ops->get_brush) { prpl_ops->get_brush(wb, size, color); return TRUE; } return FALSE; } void purple_whiteboard_set_brush(PurpleWhiteboard *wb, int size, int color) { if (whiteboard_ui_ops && whiteboard_ui_ops->set_brush) whiteboard_ui_ops->set_brush(wb, size, color); } GList *purple_whiteboard_get_draw_list(const PurpleWhiteboard *wb) { g_return_val_if_fail(wb != NULL, NULL); return wb->draw_list; } void purple_whiteboard_set_draw_list(PurpleWhiteboard *wb, GList* draw_list) { g_return_if_fail(wb != NULL); wb->draw_list = draw_list; } void purple_whiteboard_set_protocol_data(PurpleWhiteboard *wb, gpointer proto_data) { g_return_if_fail(wb != NULL); wb->proto_data = proto_data; } gpointer purple_whiteboard_get_protocol_data(const PurpleWhiteboard *wb) { g_return_val_if_fail(wb != NULL, NULL); return wb->proto_data; } void purple_whiteboard_set_ui_data(PurpleWhiteboard *wb, gpointer ui_data) { g_return_if_fail(wb != NULL); wb->ui_data = ui_data; } gpointer purple_whiteboard_get_ui_data(const PurpleWhiteboard *wb) { g_return_val_if_fail(wb != NULL, NULL); return wb->ui_data; }