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