1 /* GIMP - The GNU Image Manipulation Program
2  * Copyright (C) 1995 Spencer Kimball and Peter Mattis
3  *
4  * Wilber Cairo rendering
5  * Copyright (C) 2008  Sven Neumann <sven@gimp.org>
6  *
7  * Some code here is based on code from librsvg that was originally
8  * written by Raph Levien <raph@artofcode.com> for Gill.
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
22  */
23 
24 #ifndef __GIMP_CAIRO_WILBER_H__
25 #define __GIMP_CAIRO_WILBER_H__
26 
27 
28 void   gimp_cairo_wilber_toggle_pointer_eyes (void);
29 
30 
31 void   gimp_cairo_draw_toolbox_wilber        (GtkWidget *widget,
32                                               cairo_t   *cr);
33 void   gimp_cairo_draw_drop_wilber           (GtkWidget *widget,
34                                               cairo_t   *cr,
35                                               gboolean   blink);
36 
37 void   gimp_cairo_wilber                     (cairo_t   *cr,
38                                               gdouble    x,
39                                               gdouble    y);
40 void   gimp_cairo_wilber_get_size            (cairo_t   *cr,
41                                               gdouble   *width,
42                                               gdouble   *height);
43 
44 
45 #endif /* __GIMP_CAIRO_WILBER_H__ */
46