]> Pileus Git - ~andy/gtk/blob - gtk/tests/floating.c
Remove GtkObject floating, weak, arg and user data handling
[~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 #undef GTK_DISABLE_DEPRECATED
20 #include "../gtk/gtk.h"
21
22 static gboolean destroyed = FALSE;
23 static void
24 destroy (void)
25 {
26   destroyed = TRUE;
27 }
28
29 static void
30 floating_tests (void)
31 {
32   GtkWidget *widget = g_object_new (GTK_TYPE_LABEL, NULL);
33   g_object_connect (widget, "signal::destroy", destroy, NULL, NULL);
34
35   g_assert (g_object_is_floating (widget));
36
37   g_object_ref_sink (widget);
38   g_assert (!g_object_is_floating (widget));
39
40   g_object_force_floating (G_OBJECT (widget));
41   g_assert (g_object_is_floating (widget));
42
43   g_object_ref (widget);
44   g_object_ref_sink (widget);
45   g_assert (!g_object_is_floating (widget));
46
47   g_assert (!destroyed);
48   g_object_unref (widget);
49   g_assert (destroyed);
50 }
51
52 int
53 main (int   argc,
54       char *argv[])
55 {
56   gtk_test_init (&argc, &argv);
57   g_test_add_func ("/floatingtest", floating_tests);
58   return g_test_run();
59 }