summaryrefslogtreecommitdiff
path: root/capplets/background/gnome-wp-utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'capplets/background/gnome-wp-utils.h')
-rw-r--r--capplets/background/gnome-wp-utils.h58
1 files changed, 0 insertions, 58 deletions
diff --git a/capplets/background/gnome-wp-utils.h b/capplets/background/gnome-wp-utils.h
deleted file mode 100644
index 0c82726f7..000000000
--- a/capplets/background/gnome-wp-utils.h
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * Authors: Rodney Dawes <dobey@ximian.com>
- *
- * 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 <glib.h>
-#include <gtk/gtk.h>
-
-#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