1 /* CALLY - The Clutter Accessibility Implementation Library
2  *
3  * Copyright (C) 2009 Igalia, S.L.
4  *
5  * Author: Alejandro Piñeiro Iglesias <apinheiro@igalia.com>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
19  */
20 
21 #ifndef __CALLY_ROOT_H__
22 #define __CALLY_ROOT_H__
23 
24 #if !defined(__CALLY_H_INSIDE__) && !defined(CLUTTER_COMPILATION)
25 #error "Only <cally/cally.h> can be included directly."
26 #endif
27 
28 #include <atk/atk.h>
29 #include <clutter/clutter.h>
30 
31 G_BEGIN_DECLS
32 
33 #define CALLY_TYPE_ROOT            (cally_root_get_type ())
34 #define CALLY_ROOT(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), CALLY_TYPE_ROOT, CallyRoot))
35 #define CALLY_ROOT_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), CALLY_TYPE_ROOT, CallyRootClass))
36 #define CALLY_IS_ROOT(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CALLY_TYPE_ROOT))
37 #define CALLY_IS_ROOT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CALLY_TYPE_ROOT))
38 #define CALLY_ROOT_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), CALLY_TYPE_ROOT, CallyRootClass))
39 
40 typedef struct _CallyRoot        CallyRoot;
41 typedef struct _CallyRootClass   CallyRootClass;
42 typedef struct _CallyRootPrivate CallyRootPrivate;
43 
44 /**
45  * CallyRoot:
46  *
47  * The <structname>CallyRoot</structname> structure contains only private
48  * data and should be accessed using the provided API
49  *
50  * Since: 1.4
51  */
52 struct _CallyRoot
53 {
54   /*< private >*/
55   AtkGObjectAccessible parent;
56 
57   CallyRootPrivate *priv;
58 };
59 
60 /**
61  * CallyRootClass:
62  *
63  * The <structname>CallyRootClass</structname> structure contains only
64  * private data
65  *
66  * Since: 1.4
67  */
68 struct _CallyRootClass
69 {
70   /*< private >*/
71   AtkGObjectAccessibleClass parent_class;
72 
73   /* padding for future expansion */
74   gpointer _padding_dummy[16];
75 };
76 
77 CLUTTER_AVAILABLE_IN_1_4
78 GType      cally_root_get_type (void) G_GNUC_CONST;
79 CLUTTER_AVAILABLE_IN_1_4
80 AtkObject *cally_root_new      (void);
81 
82 G_END_DECLS
83 
84 #endif /* __CALLY_ROOT_H__ */
85