2014-07-30 21:11:17 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 Red Hat Inc.
|
|
|
|
*
|
|
|
|
* Author:
|
|
|
|
* Matthias Clasen <mclasen@redhat.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_popover_parent (void)
|
|
|
|
{
|
|
|
|
GtkWidget *w;
|
|
|
|
GtkWidget *p;
|
|
|
|
AtkObject *a;
|
|
|
|
|
2019-05-10 13:00:12 +00:00
|
|
|
/*http://bugzilla.gnome.org/show_bug.cgi?id=733923 */
|
2014-07-30 21:11:17 +00:00
|
|
|
|
|
|
|
w = gtk_entry_new ();
|
|
|
|
|
2020-02-24 12:21:46 +00:00
|
|
|
p = gtk_popover_new ();
|
2014-07-30 21:11:17 +00:00
|
|
|
a = gtk_widget_get_accessible (p);
|
|
|
|
|
|
|
|
g_assert (a != NULL);
|
|
|
|
g_assert (atk_object_get_parent (a) == NULL);
|
|
|
|
|
2020-02-24 12:21:46 +00:00
|
|
|
gtk_widget_set_parent (p, w);
|
2014-07-30 21:11:17 +00:00
|
|
|
|
|
|
|
g_assert (atk_object_get_parent (a) != NULL);
|
|
|
|
|
2020-05-09 14:33:02 +00:00
|
|
|
gtk_widget_unparent (w);
|
|
|
|
g_object_unref (g_object_ref_sink (p));
|
2014-07-30 21:11:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char *argv[])
|
|
|
|
{
|
|
|
|
gtk_test_init (&argc, &argv, NULL);
|
|
|
|
|
|
|
|
g_test_add_func ("/popover/accessible-parent", test_popover_parent);
|
|
|
|
|
|
|
|
return g_test_run ();
|
|
|
|
}
|
|
|
|
|