summaryrefslogtreecommitdiff
path: root/test/test-nautilus-smooth-graphics.c
blob: 275b18fdae66ac00a2c3ad11825ef561dc401b29 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include <config.h>

#include <gtk/gtk.h>
#include <libgnome/gnome-defs.h>
#include <libgnomeui/gnome-init.h>
#include <libnautilus-extensions/nautilus-global-preferences.h>

static void
button_toggled (GtkWidget *button,
		gpointer callback_data)
{
	nautilus_preferences_set_boolean (NAUTILUS_PREFERENCES_SMOOTH_GRAPHICS_MODE,
					  GTK_TOGGLE_BUTTON (button)->active);
}

static void
smooth_graphics_mode_changed_callback (gpointer callback_data)
{
	gboolean is_smooth;

	is_smooth = nautilus_preferences_get_boolean (NAUTILUS_PREFERENCES_SMOOTH_GRAPHICS_MODE);
	
	gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (callback_data),
				      nautilus_preferences_get_boolean (NAUTILUS_PREFERENCES_SMOOTH_GRAPHICS_MODE));
}

static void
delete_event (GtkWidget *widget, GdkEvent *event, gpointer callback_data)
{
	gtk_main_quit ();
}
	
int
main (int argc, char * argv[])
{
	GtkWidget *window;
	GtkWidget *button;
	
	gnome_init ("foo", "bar", argc, argv);

	nautilus_global_preferences_initialize ();

	window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
	gtk_signal_connect (GTK_OBJECT (window), "delete_event", GTK_SIGNAL_FUNC (delete_event), NULL);
	
	button = gtk_toggle_button_new_with_label ("Smooth Graphics");

	gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button),
				      nautilus_preferences_get_boolean (NAUTILUS_PREFERENCES_SMOOTH_GRAPHICS_MODE));
	
	gtk_container_add (GTK_CONTAINER (window), button);

	gtk_signal_connect (GTK_OBJECT (button),
			    "toggled",
			    GTK_SIGNAL_FUNC (button_toggled),
			    NULL);

	nautilus_preferences_add_callback (NAUTILUS_PREFERENCES_SMOOTH_GRAPHICS_MODE, 
					   smooth_graphics_mode_changed_callback, 
					   button);

	gtk_widget_show (button);
	gtk_widget_show (window);

	gtk_main ();

	return 0;
}