1/* ATK - Accessibility Toolkit
2 * Copyright 2007 Sun Microsystems Inc.
3 *
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.
8 *
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.
13 *
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.
18 */
19
20#ifndef __ATK_MISC_H__
21#define __ATK_MISC_H__
22
23#if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined(__ATK_H_INSIDE__) && !defined(ATK_COMPILATION)
24#error "Only <atk/atk.h> can be included directly."
25#endif
26
27#include <atk/atkversion.h>
28#include <glib-object.h>
29
30/* We prefix variable declarations so they can
31 * properly get exported in Windows DLLs.
32 */
33#ifndef ATK_VAR
34#ifdef G_PLATFORM_WIN32
35#ifdef ATK_STATIC_COMPILATION
36#define ATK_VAR extern
37#else /* !ATK_STATIC_COMPILATION */
38#ifdef ATK_COMPILATION
39#ifdef DLL_EXPORT
40#define ATK_VAR _ATK_EXTERN
41#else /* !DLL_EXPORT */
42#define ATK_VAR extern
43#endif /* !DLL_EXPORT */
44#else /* !ATK_COMPILATION */
45#define ATK_VAR extern __declspec(dllimport)
46#endif /* !ATK_COMPILATION */
47#endif /* !ATK_STATIC_COMPILATION */
48#else /* !G_PLATFORM_WIN32 */
49#define ATK_VAR _ATK_EXTERN
50#endif /* !G_PLATFORM_WIN32 */
51#endif /* ATK_VAR */
52
53G_BEGIN_DECLS
54
55#define ATK_TYPE_MISC (atk_misc_get_type ())
56#define ATK_IS_MISC(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATK_TYPE_MISC)
57#define ATK_MISC(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATK_TYPE_MISC, AtkMisc)
58#define ATK_MISC_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ATK_TYPE_MISC, AtkMiscClass))
59#define ATK_IS_MISC_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ATK_TYPE_MISC))
60#define ATK_MISC_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ATK_TYPE_MISC, AtkMiscClass))
61
62#ifndef _TYPEDEF_ATK_MISC_
63#define _TYPEDEF_ATK_MISC_
64typedef struct _AtkMisc AtkMisc;
65typedef struct _AtkMiscClass AtkMiscClass;
66#endif
67
68struct _AtkMisc
69{
70 GObject parent;
71};
72
73/*
74 * Singleton instance - only the ATK implementation layer for
75 * a given GUI toolkit/application instance should touch this
76 * symbol directly.
77 *
78 * Deprecated: Since 2.12.
79 */
80ATK_VAR AtkMisc *atk_misc_instance;
81
82/**
83 * AtkMiscClass:
84 * @threads_enter: This virtual function is deprecated since 2.12 and
85 * it should not be overriden.
86 * @threads_leave: This virtual function is deprecated sice 2.12 and
87 * it should not be overriden.
88 *
89 * Usage of AtkMisc is deprecated since 2.12 and heavily discouraged.
90 */
91struct _AtkMiscClass
92{
93 GObjectClass parent;
94 void (*threads_enter) (AtkMisc *misc);
95 void (*threads_leave) (AtkMisc *misc);
96 gpointer vfuncs[32]; /* future bincompat */
97};
98
99ATK_DEPRECATED_IN_2_12
100GType atk_misc_get_type (void);
101
102ATK_DEPRECATED_IN_2_12
103void atk_misc_threads_enter (AtkMisc *misc);
104ATK_DEPRECATED_IN_2_12
105void atk_misc_threads_leave (AtkMisc *misc);
106ATK_DEPRECATED_IN_2_12
107const AtkMisc *atk_misc_get_instance (void);
108
109G_END_DECLS
110
111#endif /* __ATK_MISC_H__ */
112

source code of include/atk-1.0/atk/atkmisc.h