]> Pileus Git - ~andy/gtk/blob - gtk/tests/floating.c
Add more unit tests for GtkTreeModelSort
[~andy/gtk] / gtk / tests / floating.c
1 /* floatingtest.c - test floating flag uses
2  * Copyright (C) 2005 Tim Janik
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19 #include <gtk/gtk.h>
20
21 static gboolean destroyed = FALSE;
22 static void
23 destroy (void)
24 {
25   destroyed = TRUE;
26 }
27
28 static void
29 floating_tests (void)
30 {
31   GtkWidget *widget = g_object_new (GTK_TYPE_LABEL, NULL);
32   g_object_connect (widget, "signal::destroy", destroy, NULL, NULL);
33
34   g_assert (g_object_is_floating (widget));
35
36   g_object_ref_sink (widget);
37   g_assert (!g_object_is_floating (widget));
38
39   g_object_force_floating (G_OBJECT (widget));
40   g_assert (g_object_is_floating (widget));
41
42   g_object_ref_sink (widget);
43   g_assert (!g_object_is_floating (widget));
44
45   g_assert (!destroyed);
46   g_object_unref (widget);
47   g_assert (destroyed);
48 }
49
50 int
51 main (int   argc,
52       char *argv[])
53 {
54   gtk_test_init (&argc, &argv);
55   g_test_add_func ("/floatingtest", floating_tests);
56   return g_test_run();
57 }