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 Library 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 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library 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 #ifndef __ATK_MISC_H__
21 #define __ATK_MISC_H__
23 #include <glib-object.h>
27 #endif /* __cplusplus */
29 #define ATK_TYPE_MISC (atk_misc_get_type ())
30 #define ATK_IS_MISC(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATK_TYPE_MISC)
31 #define ATK_MISC(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATK_TYPE_MISC, AtkMisc)
32 #define ATK_MISC_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ATK_TYPE_MISC, AtkMiscClass))
33 #define ATK_IS_MISC_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ATK_TYPE_MISC))
34 #define ATK_MISC_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ATK_TYPE_MISC, AtkMiscClass))
37 #ifndef _TYPEDEF_ATK_MISC_
38 #define _TYPEDEF_ATK_MISC_
39 typedef struct _AtkMisc AtkMisc;
40 typedef struct _AtkMiscClass AtkMiscClass;
49 * Singleton instance - only the ATK implementation layer for
50 * a given GUI toolkit/application instance should touch this
53 extern AtkMisc *atk_misc_instance;
58 void (* threads_enter) (AtkMisc *misc);
59 void (* threads_leave) (AtkMisc *misc);
60 gpointer vfuncs[32]; /* future bincompat */
62 GType atk_util_get_type (void);
65 * Wrapper for thread lock, i.e. take the thread mutex for the GUI toolkit,
67 * (This method is implemented by the toolkit ATK implementation layer;
68 * for instance, for GTK+, GAIL implements this via GDK_THREADS_ENTER).
70 void atk_misc_threads_enter (AtkMisc *misc);
73 * Wrapper for thread lock, i.e. release the thread mutex for the GUI toolkit,
75 * (This method is implemented by the toolkit ATK implementation layer;
76 * for instance, for GTK+, GAIL implements this via GDK_THREADS_LEAVE).
78 void atk_misc_threads_leave (AtkMisc *misc);
81 * Obtain (singleton) instance of AtkMisc.
83 const AtkMisc *atk_misc_get_instance (void);
87 #endif /* __cplusplus */
90 #endif /* __ATK_MISC_H__ */