1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
|
/*
* 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);
}
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);
}
|