Update Serbian translation
[evolution.git] / src / calendar / gui / ea-jump-button.h
blob1a451dd4136b07e0c716f6431baa340f7d5c4106
1 /*
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.
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.
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/>.
16 * Authors:
17 * Yang Wu <yang.wu@sun.com>
19 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
23 #ifndef __EA_JUMP_BUTTON_H__
24 #define __EA_JUMP_BUTTON_H__
26 #include <atk/atkgobjectaccessible.h>
28 G_BEGIN_DECLS
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))
37 typedef struct _EaJumpButton EaJumpButton;
38 typedef struct _EaJumpButtonClass EaJumpButtonClass;
40 struct _EaJumpButton
42 AtkGObjectAccessible parent;
45 GType ea_jump_button_get_type (void);
47 struct _EaJumpButtonClass
49 AtkGObjectAccessibleClass parent_class;
52 AtkObject *ea_jump_button_new (GObject *obj);
54 G_END_DECLS
56 #endif /* __EA_JUMP_BUTTON_H__ */