summaryrefslogtreecommitdiff
path: root/test/test-nautilus-background.c
blob: 6fa22c27f1827e96e52da93cd1955231c97d7a43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */

#include <libnautilus-extensions/nautilus-background.h>
#include <libgnomevfs/gnome-vfs-init.h>
#include <gtk/gtk.h>

#define BACKGROUNDS_DIR "/gnome-source/nautilus/data/backgrounds"

int
main  (int argc, char *argv[])
{
	GtkWidget *window, *ctree;
	NautilusBackground *background;
	char *image_uri;
	char *titles[] = { "test 1", "test 2", "test 3"};

	gtk_init (&argc, &argv);

	gnome_vfs_init ();

	window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
	ctree = gtk_ctree_new_with_titles (3, 2, titles);
#if 0
	gtk_container_add (GTK_CONTAINER (window), ctree);
#endif
	gtk_signal_connect (GTK_OBJECT (window), "destroy",
			    gtk_main_quit, NULL);

	background = nautilus_get_widget_background (window);

	nautilus_background_set_color (background,
				       "red-blue:h");

	image_uri = g_strconcat ("file://", BACKGROUNDS_DIR, "/50s.png", NULL);

#if 1
	nautilus_background_set_image_uri (background, image_uri);
#endif
	g_free (image_uri);


	gtk_widget_show_all (window);
	gtk_main ();

	return 0;
}