]> www.fi.muni.cz Git - evince.git/blob - shell/ev-navigation-action.h
Change the layout to match clarkbw design.
[evince.git] / shell / ev-navigation-action.h
1 /*
2  *  Copyright (C) 2003, 2004 Marco Pesenti Gritti
3  *  Copyright (C) 2003, 2004 Christian Persch
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2, or (at your option)
8  *  any later version.
9  *
10  *  This program 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
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  *
19  *  $Id$
20  */
21
22 #ifndef EV_NAVIGATION_ACTION_H
23 #define EV_NAVIGATION_ACTION_H
24
25 #include <gtk/gtkaction.h>
26
27 G_BEGIN_DECLS
28
29 #define EV_TYPE_NAVIGATION_ACTION            (ev_navigation_action_get_type ())
30 #define EV_NAVIGATION_ACTION(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), EV_TYPE_NAVIGATION_ACTION, EvNavigationAction))
31 #define EV_NAVIGATION_ACTION_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), EV_TYPE_NAVIGATION_ACTION, EvNavigationActionClass))
32 #define EV_IS_NAVIGATION_ACTION(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EV_TYPE_NAVIGATION_ACTION))
33 #define EV_IS_NAVIGATION_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), EV_TYPE_NAVIGATION_ACTION))
34 #define EV_NAVIGATION_ACTION_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj), EV_TYPE_NAVIGATION_ACTION, EvNavigationActionClass))
35
36 typedef struct _EvNavigationAction              EvNavigationAction;
37 typedef struct _EvNavigationActionPrivate       EvNavigationActionPrivate;
38 typedef struct _EvNavigationActionClass         EvNavigationActionClass;
39
40 typedef enum
41 {
42         EV_NAVIGATION_DIRECTION_BACK,
43         EV_NAVIGATION_DIRECTION_FORWARD
44 } EvNavigationDirection;
45
46 struct _EvNavigationAction
47 {
48         GtkAction parent;
49         
50         /*< private >*/
51         EvNavigationActionPrivate *priv;
52 };
53
54 struct _EvNavigationActionClass
55 {
56         GtkActionClass parent_class;
57 };
58
59 GType ev_navigation_action_get_type (void);
60
61 G_END_DECLS
62
63 #endif