nautilus/test/test-eel-background.c
Carlos Soriano 52d960542b general: run uncrustify
And make the style of Nautilus the same for all files.
Hopefully we can fix all the style issues we can find in the next days,
so expect a little of movement on this.

https://bugzilla.gnome.org/show_bug.cgi?id=770564
2016-08-29 18:37:10 +02:00

40 lines
857 B
C

/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
#include <eel/eel-background.h>
#include <gtk/gtk.h>
#define PATTERNS_DIR "/gnome-source/eel/data/patterns"
int
main (int argc,
char *argv[])
{
GtkWidget *window;
EelBackground *background;
char *image_uri;
gtk_init (&argc, &argv);
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
g_signal_connect (window, "destroy",
gtk_main_quit, NULL);
background = eel_get_widget_background (window);
eel_background_set_color (background,
"red-blue:h");
image_uri = g_filename_to_uri (PATTERNS_DIR "/50s.png", NULL, NULL);
#if 1
eel_background_set_image_uri (background, image_uri);
#endif
g_free (image_uri);
gtk_widget_show_all (window);
gtk_main ();
return 0;
}