Imported version 2.7.91
[platform/core/uifw/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_object_unref (application->root);
62     application->root = NULL;
63   }
64
65   G_OBJECT_CLASS (atspi_application_parent_class)->dispose (object);
66 }
67
68 static void
69 atspi_application_finalize (GObject *object)
70 {
71   AtspiApplication *application = ATSPI_APPLICATION (object);
72
73   g_free (application->bus_name);
74   g_free (application->toolkit_name);
75   g_free (application->toolkit_version);
76   g_free (application->atspi_version);
77
78   G_OBJECT_CLASS (atspi_application_parent_class)->finalize (object);
79 }
80
81 static void
82 atspi_application_class_init (AtspiApplicationClass *klass)
83 {
84   GObjectClass *object_class = G_OBJECT_CLASS (klass);
85
86   object_class->dispose = atspi_application_dispose;
87   object_class->finalize = atspi_application_finalize;
88 }
89
90 AtspiApplication *
91 _atspi_application_new (const gchar *bus_name)
92 {
93   AtspiApplication *application;
94   
95   application = g_object_new (ATSPI_TYPE_APPLICATION, NULL);
96   application->bus_name = g_strdup (bus_name);
97   application->root = NULL;
98   return application;
99 }