1 /*
2  * This program is free software; you can redistribute it and/or modify it
3  * under the terms of the GNU Lesser General Public License as published by
4  * the Free Software Foundation.
5  *
6  * This program is distributed in the hope that it will be useful, but
7  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
8  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
9  * for more details.
10  *
11  * You should have received a copy of the GNU Lesser General Public License
12  * along with this program; if not, see <http://www.gnu.org/licenses/>.
13  *
14  *
15  * Authors:
16  *		Leon Zhang <leon.zhang@sun.com>
17  *
18  * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
19  *
20  */
21 
22 #ifndef __EA_MINICARD_VIEW_H__
23 #define __EA_MINICARD_VIEW_H__
24 
25 #include <atk/atkgobjectaccessible.h>
26 #include "e-minicard-view.h"
27 
28 G_BEGIN_DECLS
29 
30 #define EA_TYPE_MINICARD_VIEW			(ea_minicard_view_get_type ())
31 #define EA_MINICARD_VIEW(obj)			(G_TYPE_CHECK_INSTANCE_CAST ((obj), EA_TYPE_MINICARD_VIEW, EaMinicardView))
32 #define EA_MINICARD_VIEW_CLASS(klass)		(G_TYPE_CHECK_CLASS_CAST ((klass), EA_TYPE_MINICARD_VIEW, EaMiniCardViewClass))
33 #define EA_IS_MINICARD_VIEW(obj)		(G_TYPE_CHECK_INSTANCE_TYPE ((obj), EA_TYPE_MINICARD_VIEW))
34 #define EA_IS_MINICARD_VIEW_CLASS(klass)	(G_TYPE_CHECK_CLASS_TYPE ((obj), EA_TYPE_MINICARD_VIEW))
35 
36 typedef struct _EaMinicardView       EaMinicardView;
37 typedef struct _EaMinicardViewClass  EaMinicardViewClass;
38 
39 struct _EaMinicardView
40 {
41 	AtkGObjectAccessible parent;
42 };
43 
44 struct _EaMinicardViewClass
45 {
46 	AtkGObjectAccessibleClass parent_class;
47 };
48 
49 GType ea_minicard_view_get_type (void);
50 
51 AtkObject * ea_minicard_view_new (GObject *obj);
52 
53 G_END_DECLS
54 
55 #endif /* __EA_MINICARD_VIEW_H__ */
56