1 /* vi:set et ai sw=2 sts=2 ts=2: */
2 /*-
3  * Copyright (c) 2003-2007 Benedikt Meurer <benny@xfce.org>
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the Free
7  * Software Foundation; either version 2 of the License, or (at your option)
8  * any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
13  * more details.
14  *
15  * You should have received a copy of the GNU General Public License along with
16  * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
17  * Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19 
20 #ifndef __THUNAR_GDK_EXTENSIONS_H__
21 #define __THUNAR_GDK_EXTENSIONS_H__
22 
23 #include <gdk/gdk.h>
24 #include <gdk-pixbuf/gdk-pixbuf.h>
25 
26 G_BEGIN_DECLS;
27 
28 GdkScreen *thunar_gdk_screen_open             (const gchar *display_name,
29                                                GError     **error);
30 
31 void       thunar_gdk_cairo_set_source_pixbuf (cairo_t     *cr,
32                                                GdkPixbuf   *pixbuf,
33                                                gdouble      pixbuf_x,
34                                                gdouble      pixbuf_y);
35 
36 G_END_DECLS;
37 
38 #endif /* !__THUNAR_GDK_EXTENSIONS_H__ */
39