1 /* vim: set sw=2 et: */
2 /*
3  * Copyright 2002 Sun Microsystems Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20 
21 #ifndef __WNCK_PAGER_ACCESSIBLE_FACTORY_H__
22 #define __WBCK_PAGER_ACCESSIBLE_FACTORY_H__
23 
24 #include <atk/atk.h>
25 
26 #ifdef __cplusplus
27 extern "C" {
28 #endif /* __cplusplus */
29 
30 #define WNCK_TYPE_PAGER_ACCESSIBLE_FACTORY               (wnck_pager_accessible_factory_get_type())
31 #define WNCK_PAGER_ACCESSIBLE_FACTORY(obj)               (G_TYPE_CHECK_INSTANCE_CAST ((obj), WNCK_TYPE_PAGER_ACCESSIBLE_FACTORY, WnckpagerAccessibleFactory))
32 #define WNCK_PAGER_ACCESSIBLE_FACTORY_CLASS(klass)       (G_TYPE_CHECK_CLASS_CAST ((klass), WNCK_TYPE_PAGER_ACCESSIBLE_FACTORY, WnckPagerAccessibleFactoryClass))
33 #define WNCK_IS_PAGER_ACCESSIBLE_FACTORY(obj)            (G_TYPE_CHECK_INSTANCE_TYPE ((obj), WNCK_TYPE_PAGER_ACCESSIBLE_FACTORY))
34 #define WNCK_IS_PAGER_ACCESSIBLE_FACTORY_CLASS(klass)    (G_TYPE_CHECK_CLASS_TYPE ((klass), WNCK_TYPE_PAGER_ACCESSIBLE_FACTORY))
35 #define WNCK_PAGER_ACCESSIBLE_FACTORY_GET_CLASS(obj)     (G_TYPE_INSTANCE_GET_CLASS ((obj), WNCK_TYPE_PAGER_ACCESSIBLE_FACTORY, WnckPagerAccessibleFactoryClass))
36 
37 typedef struct _WnckPagerAccessibleFactory       WnckPagerAccessibleFactory;
38 typedef struct _WnckPagerAccessibleFactoryClass  WnckPagerAccessibleFactoryClass;
39 
40 struct _WnckPagerAccessibleFactory
41 {
42   AtkObjectFactory parent;
43 };
44 
45 struct _WnckPagerAccessibleFactoryClass
46 {
47   AtkObjectFactoryClass parent_class;
48 };
49 
50 GType wnck_pager_accessible_factory_get_type (void) G_GNUC_CONST;
51 
52 AtkObjectFactory* wnck_pager_accessible_factory_new (void);
53 
54 #ifdef __cplusplus
55 }
56 #endif /* __cplusplus */
57 
58 
59 #endif /* __WNCK_PAGER_ACCESSIBLE_FACTORY_H__ */
60