Mercurial > pidgin
annotate src/whiteboard.c @ 11902:391acec18e46
[gaim-migrate @ 14193]
Grab the gaim.desktop file from oldstatus. Are there any other files
we should get? I think the ChangeLogs and NEWS have already been
fixed.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sun, 30 Oct 2005 17:23:15 +0000 |
parents | 2e3a6dcebaf3 |
children | 2219f4bf4a57 |
rev | line source |
---|---|
11475 | 1 /* |
2 * gaim | |
3 * | |
4 * Gaim is the legal property of its developers, whose names are too numerous | |
5 * to list here. Please refer to the COPYRIGHT file distributed with this | |
6 * source distribution. | |
7 * | |
8 * This program is free software; you can redistribute it and/or modify | |
9 * it under the terms of the GNU General Public License as published by | |
10 * the Free Software Foundation; either version 2 of the License, or | |
11 * (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, | |
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 * GNU General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU General Public License | |
19 * along with this program; if not, write to the Free Software | |
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
21 * | |
22 */ | |
23 | |
24 #include <string.h> | |
25 | |
26 #include "whiteboard.h" | |
27 #include "prpl.h" | |
28 | |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
29 /****************************************************************************** |
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
30 * Globals |
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
31 *****************************************************************************/ |
11475 | 32 static GaimWhiteboardUiOps *whiteboard_ui_ops = NULL; |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
33 /* static GaimWhiteboardPrplOps *whiteboard_prpl_ops = NULL; */ |
11475 | 34 |
35 static GList *wbList = NULL; | |
36 | |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
37 /*static gboolean auto_accept = TRUE; */ |
11475 | 38 |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
39 /****************************************************************************** |
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
40 * API |
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
41 *****************************************************************************/ |
11475 | 42 void gaim_whiteboard_set_ui_ops( GaimWhiteboardUiOps *ops ) |
43 { | |
44 whiteboard_ui_ops = ops; | |
45 } | |
46 | |
47 void gaim_whiteboard_set_prpl_ops( GaimWhiteboard *wb, GaimWhiteboardPrplOps *ops ) | |
48 { | |
49 wb->prpl_ops = ops; | |
50 } | |
51 | |
52 GaimWhiteboard *gaim_whiteboard_create( GaimAccount *account, char *who, int state ) | |
53 { | |
11506
88d504770c60
[gaim-migrate @ 13751]
Richard Laager <rlaager@wiktel.com>
parents:
11475
diff
changeset
|
54 GaimPluginProtocolInfo *prpl_info; |
11475 | 55 GaimWhiteboard *wb = g_new0( GaimWhiteboard, 1 ); |
11506
88d504770c60
[gaim-migrate @ 13751]
Richard Laager <rlaager@wiktel.com>
parents:
11475
diff
changeset
|
56 |
11475 | 57 wb->account = account; |
58 wb->state = state; | |
59 wb->who = g_strdup( who ); | |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
60 |
11506
88d504770c60
[gaim-migrate @ 13751]
Richard Laager <rlaager@wiktel.com>
parents:
11475
diff
changeset
|
61 prpl_info = GAIM_PLUGIN_PROTOCOL_INFO( account->gc->prpl ); |
11475 | 62 gaim_whiteboard_set_prpl_ops( wb, prpl_info->whiteboard_prpl_ops ); |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
63 |
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
64 /* Start up protocol specifics */ |
11475 | 65 if( wb->prpl_ops && wb->prpl_ops->start ) |
66 wb->prpl_ops->start( wb ); | |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
67 |
11475 | 68 wbList = g_list_append( wbList, ( gpointer )( wb ) ); |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
69 |
11475 | 70 return( wb ); |
71 } | |
72 | |
73 void gaim_whiteboard_destroy( GaimWhiteboard *wb ) | |
74 { | |
75 if( wb->ui_data ) | |
76 { | |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
77 /* Destroy frontend */ |
11475 | 78 if( whiteboard_ui_ops && whiteboard_ui_ops->destroy ) |
79 whiteboard_ui_ops->destroy( wb ); | |
80 } | |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
81 |
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
82 /* Do protocol specific session ending procedures */ |
11475 | 83 if( wb->prpl_ops && wb->prpl_ops->end ) |
84 wb->prpl_ops->end( wb ); | |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
85 |
11475 | 86 if( wb ) |
87 { | |
88 wb->account = NULL; | |
89 wb->state = 0; | |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
90 |
11475 | 91 if( wb->who ) |
92 g_free( wb->who ); | |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
93 |
11475 | 94 wbList = g_list_remove( wbList, wb ); |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
95 |
11475 | 96 g_free( wb ); |
97 wb = NULL; | |
98 } | |
99 } | |
100 | |
101 void gaim_whiteboard_start( GaimWhiteboard *wb ) | |
102 { | |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
103 /* Create frontend for whiteboard */ |
11475 | 104 if( whiteboard_ui_ops && whiteboard_ui_ops->create ) |
105 whiteboard_ui_ops->create( wb ); | |
106 } | |
107 | |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
108 /* Looks through the list of whiteboard sessions for one that is between |
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
109 * usernames 'me' and 'who'. Returns a pointer to a matching whiteboard |
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
110 * session; if none match, it returns NULL. |
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
111 */ |
11475 | 112 GaimWhiteboard *gaim_whiteboard_get_session( GaimAccount *account, char *who ) |
113 { | |
114 GaimWhiteboard *wb = NULL; | |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
115 |
11475 | 116 GList *l = wbList; |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
117 |
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
118 /* Look for a whiteboard session between the local user and the remote |
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
119 * user |
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
120 */ |
11475 | 121 while( l ) |
122 { | |
123 wb = l->data; | |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
124 |
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
125 if( !strcmp( gaim_account_get_username( wb->account ), |
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
126 gaim_account_get_username( account ) ) && |
11475 | 127 !strcmp( wb->who, who ) ) |
128 return( wb ); | |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
129 |
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
130 l = l->next; |
11475 | 131 } |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
132 |
11475 | 133 return( NULL ); |
134 } | |
135 | |
136 GList *gaim_whiteboard_draw_list_destroy( GList *draw_list ) | |
137 { | |
138 if( draw_list == NULL ) | |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
139 return( NULL ); |
11475 | 140 else |
141 { | |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
142 /* Destroy the contents of this list */ |
11475 | 143 int *n = NULL; |
144 GList *l = draw_list; | |
145 while( l ) | |
146 { | |
147 n = l->data; | |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
148 |
11475 | 149 if( n ) |
150 g_free( n ); | |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
151 |
11475 | 152 l = l->next; |
153 } | |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
154 |
11475 | 155 g_list_free( draw_list ); |
156 draw_list = NULL; | |
157 } | |
11802
2e3a6dcebaf3
[gaim-migrate @ 14093]
Gary Kramlich <grim@reaperworld.com>
parents:
11506
diff
changeset
|
158 |
11475 | 159 return( draw_list ); |
160 } | |
161 | |
162 void gaim_whiteboard_set_dimensions( GaimWhiteboard *wb, int width, int height ) | |
163 { | |
164 if( whiteboard_ui_ops && whiteboard_ui_ops->set_dimensions ) | |
165 whiteboard_ui_ops->set_dimensions( wb, width, height ); | |
166 } | |
167 | |
168 void gaim_whiteboard_draw_point( GaimWhiteboard *wb, int x, int y, int color, int size ) | |
169 { | |
170 if( whiteboard_ui_ops && whiteboard_ui_ops->draw_point ) | |
171 whiteboard_ui_ops->draw_point( wb, x, y, color, size ); | |
172 } | |
173 | |
174 void gaim_whiteboard_draw_line( GaimWhiteboard *wb, int x1, int y1, int x2, int y2, int color, int size ) | |
175 { | |
176 if( whiteboard_ui_ops && whiteboard_ui_ops->draw_line ) | |
177 whiteboard_ui_ops->draw_line( wb, x1, y1, x2, y2, color, size ); | |
178 } | |
179 | |
180 void gaim_whiteboard_clear( GaimWhiteboard *wb ) | |
181 { | |
182 if( whiteboard_ui_ops && whiteboard_ui_ops->clear ) | |
183 whiteboard_ui_ops->clear( wb ); | |
184 } | |
185 |