blob: cce1f940a319dc7be3927fd6892f77f63f88f656 (
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
|
#include <gtk/gtk.h>
static void
test_window_focus (void)
{
GtkWidget *window;
GtkWidget *box;
GtkWidget *entry1;
GtkWidget *entry2;
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
gtk_container_add (GTK_CONTAINER (window), box);
gtk_container_add (GTK_CONTAINER (box), gtk_label_new ("label1"));
entry1 = gtk_entry_new ();
gtk_container_add (GTK_CONTAINER (box), entry1);
gtk_container_add (GTK_CONTAINER (box), gtk_label_new ("label2"));
entry2 = gtk_entry_new ();
gtk_container_add (GTK_CONTAINER (box), entry2);
gtk_widget_show_all (box);
g_assert_null (gtk_window_get_focus (GTK_WINDOW (window)));
gtk_window_set_focus (GTK_WINDOW (window), entry1);
g_assert (gtk_window_get_focus (GTK_WINDOW (window)) == entry1);
gtk_widget_show_now (window);
g_assert (gtk_window_get_focus (GTK_WINDOW (window)) == entry1);
gtk_widget_grab_focus (entry2);
g_assert (gtk_window_get_focus (GTK_WINDOW (window)) == entry2);
gtk_widget_hide (window);
g_assert (gtk_window_get_focus (GTK_WINDOW (window)) == entry2);
gtk_window_set_focus (GTK_WINDOW (window), entry1);
g_assert (gtk_window_get_focus (GTK_WINDOW (window)) == entry1);
gtk_widget_destroy (window);
}
int
main (int argc, char *argv[])
{
gtk_test_init (&argc, &argv);
g_test_add_func ("/focus/window", test_window_focus);
return g_test_run ();
}
|