Remove dependency on libxkbcommon
[platform/upstream/at-spi2-core.git] / atspi / atspi-application.c
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2001, 2002 Sun Microsystems Inc.,
6  * Copyright 2001, 2002 Ximian, Inc.
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23
24 #include "atspi-private.h"
25
26 G_DEFINE_TYPE (AtspiApplication, atspi_application, G_TYPE_OBJECT)
27
28 static void
29 atspi_application_init (AtspiApplication *application)
30 {
31 }
32
33 static void
34 dispose_accessible (gpointer key, gpointer obj_data, gpointer data)
35 {
36   g_object_run_dispose (obj_data);
37 }
38
39 static void
40 atspi_application_dispose (GObject *object)
41 {
42   AtspiApplication *application = ATSPI_APPLICATION (object);
43
44   if (application->bus)
45   {
46     if (application->bus != _atspi_bus ())
47       dbus_connection_close (application->bus);
48     dbus_connection_unref (application->bus);
49     application->bus = NULL;
50   }
51
52   if (application->hash)
53   {
54     g_hash_table_foreach (application->hash, dispose_accessible, NULL);
55     g_hash_table_unref (application->hash);
56     application->hash = NULL;
57   }
58
59   if (application->root)
60   {
61     g_clear_object (&application->root->parent.app);
62     g_object_unref (application->root);
63     application->root = NULL;
64   }
65
66   G_OBJECT_CLASS (atspi_application_parent_class)->dispose (object);
67 }
68
69 static void
70 atspi_application_finalize (GObject *object)
71 {
72   AtspiApplication *application = ATSPI_APPLICATION (object);
73
74   g_free (application->bus_name);
75   g_free (application->toolkit_name);
76   g_free (application->toolkit_version);
77   g_free (application->atspi_version);
78
79   G_OBJECT_CLASS (atspi_application_parent_class)->finalize (object);
80 }
81
82 static void
83 atspi_application_class_init (AtspiApplicationClass *klass)
84 {
85   GObjectClass *object_class = G_OBJECT_CLASS (klass);
86
87   object_class->dispose = atspi_application_dispose;
88   object_class->finalize = atspi_application_finalize;
89 }
90
91 AtspiApplication *
92 _atspi_application_new (const gchar *bus_name)
93 {
94   AtspiApplication *application;
95   
96   application = g_object_new (ATSPI_TYPE_APPLICATION, NULL);
97   application->bus_name = g_strdup (bus_name);
98   application->root = NULL;
99   return application;
100 }