/* * Authors: Rodney Dawes * * Copyright 2003-2005 Novell, Inc. (www.novell.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of version 2 of the GNU General Public License * as published by the Free Software Foundation * * 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., 59 Temple Street #330, Boston, MA 02111-1307, USA. * */ #ifndef _GNOME_WP_UTILS_H_ #define _GNOME_WP_UTILS_H_ #include #include #define WP_PATH_KEY "/desktop/gnome/background" #define WP_FILE_KEY WP_PATH_KEY "/picture_filename" #define WP_OPTIONS_KEY WP_PATH_KEY "/picture_options" #define WP_SHADING_KEY WP_PATH_KEY "/color_shading_type" #define WP_PCOLOR_KEY WP_PATH_KEY "/primary_color" #define WP_SCOLOR_KEY WP_PATH_KEY "/secondary_color" #define WP_KEYBOARD_PATH "/desktop/gnome/peripherals/keyboard" #define WP_DELAY_KEY WP_KEYBOARD_PATH "/delay" G_BEGIN_DECLS GdkPixbuf * gnome_wp_pixbuf_new_gradient (GtkOrientation orientation, GdkColor * c1, GdkColor * c2, gint width, gint height); GdkPixbuf * gnome_wp_pixbuf_new_solid (GdkColor * color, gint width, gint height); GdkPixbuf * gnome_wp_pixbuf_tile (GdkPixbuf * src_pixbuf, GdkPixbuf * dest_pixbuf, gint scaled_width, gint scaled_height); GdkPixbuf * gnome_wp_pixbuf_center (GdkPixbuf * src_pixbuf, GdkPixbuf * dest_pixbuf, gint scaled_width, gint scaled_height); G_END_DECLS #endif