Let's make Ivan a developer!
[pidgin-git.git] / pidgin / gtkwhiteboard.h
blobd5bad34a36ef679290555c5ac986df180c41e782
1 /**
2 * @file gtkwhiteboard.h The PidginWhiteboard frontend object
3 */
5 /* pidgin
7 * Pidgin is the legal property of its developers, whose names are too numerous
8 * to list here. Please refer to the COPYRIGHT file distributed with this
9 * source distribution.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
26 #ifndef _PIDGINWHITEBOARD_H_
27 #define _PIDGINWHITEBOARD_H_
29 #include "pidgin.h"
31 #include "whiteboard.h"
33 #define FULL_CIRCLE_DEGREES 23040
35 /* TODO: Make into an enum. */
36 #define BRUSH_STATE_UP 0
37 #define BRUSH_STATE_DOWN 1
38 #define BRUSH_STATE_MOTION 2
40 /* XXX: This seems duplicated with the Yahoo! Doodle prpl code.
41 * XXX: How should they work together? */
42 #define PALETTE_NUM_COLORS 7
44 /**
45 * A PidginWhiteboard
47 typedef struct _PidginWhiteboard
49 PurpleWhiteboard *wb; /**< backend data for this whiteboard */
51 GtkWidget *window; /**< Window for the Doodle session */
52 GtkWidget *drawing_area; /**< Drawing area */
54 GdkPixmap *pixmap; /**< Memory for drawing area */
56 int width; /**< Canvas width */
57 int height; /**< Canvas height */
58 int brush_color; /**< Foreground color */
59 int brush_size; /**< Brush size */
60 } PidginWhiteboard;
62 #ifdef __cplusplus
63 extern "C" {
64 #endif /* __cplusplus */
66 /*****************************************************************************/
67 /** @name PidginWhiteboard API */
68 /*****************************************************************************/
69 /*@{*/
71 /**
72 * Gets the GtkWhiteboard UI Operations.
74 * @return The GtkWhiteboard UI Operations.
76 PurpleWhiteboardUiOps *pidgin_whiteboard_get_ui_ops( void );
78 /*@}*/
80 #ifdef __cplusplus
82 #endif /* __cplusplus */
84 #endif /* _PIDGINWHITEBOARD_H_ */