atktext: Fixing some typos on atk_text_get_text_at_offset deprecation
[atk.git] / atk / atkmisc.c
blob484b9fd67d987aa1a6313c3605f7fae74c138642
1 /* ATK - Accessibility Toolkit
2 * Copyright 2007 Sun Microsystems Inc.
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.
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.
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.
20 #include "atkmisc.h"
22 static void atk_misc_class_init (AtkMiscClass *klass);
24 GType
25 atk_misc_get_type (void)
27 static GType type = 0;
29 if (!type)
31 static const GTypeInfo typeInfo =
33 sizeof (AtkMiscClass),
34 (GBaseInitFunc) NULL,
35 (GBaseFinalizeFunc) NULL,
36 (GClassInitFunc) atk_misc_class_init,
37 (GClassFinalizeFunc) NULL,
38 NULL,
39 sizeof (AtkMisc),
41 (GInstanceInitFunc) NULL,
42 } ;
43 type = g_type_register_static (G_TYPE_OBJECT, "AtkMisc", &typeInfo, 0) ;
45 return type;
48 static void
49 atk_misc_class_init (AtkMiscClass *klass)
51 klass->threads_enter = NULL;
52 klass->threads_leave = NULL;
55 /**
56 * atk_misc_threads_enter:
57 * @misc: an AtkMisc instance for this application.
59 * Take the thread mutex for the GUI toolkit,
60 * if one exists.
61 * (This method is implemented by the toolkit ATK implementation layer;
62 * for instance, for GTK+, GAIL implements this via GDK_THREADS_ENTER).
64 * Since: 1.13
66 **/
67 void
68 atk_misc_threads_enter (AtkMisc *misc)
70 AtkMiscClass *klass;
72 if (misc == NULL)
73 return;
75 klass = ATK_MISC_GET_CLASS (misc);
77 if (klass->threads_enter)
79 klass->threads_enter (misc);
83 /**
84 * atk_misc_threads_leave:
85 * @misc: an AtkMisc instance for this application.
87 * Release the thread mutex for the GUI toolkit,
88 * if one exists. This method, and atk_misc_threads_enter,
89 * are needed in some situations by threaded application code which
90 * services ATK requests, since fulfilling ATK requests often
91 * requires calling into the GUI toolkit. If a long-running or
92 * potentially blocking call takes place inside such a block, it should
93 * be bracketed by atk_misc_threads_leave/atk_misc_threads_enter calls.
94 * (This method is implemented by the toolkit ATK implementation layer;
95 * for instance, for GTK+, GAIL implements this via GDK_THREADS_LEAVE).
97 * Since: 1.13
99 **/
100 void
101 atk_misc_threads_leave (AtkMisc *misc)
103 AtkMiscClass *klass;
105 if (misc == NULL)
106 return;
108 klass = ATK_MISC_GET_CLASS (misc);
110 if (klass->threads_leave)
112 klass->threads_leave (misc);
116 AtkMisc *atk_misc_instance = NULL;
119 * atk_misc_get_instance:
121 * Obtain the singleton instance of AtkMisc for this application.
123 * Since: 1.13
125 * Returns: The singleton instance of AtkMisc for this application.
128 const AtkMisc *
129 atk_misc_get_instance (void)
131 return atk_misc_instance;