]> www.fi.muni.cz Git - evince.git/blob - shell/ev-page-action.h
Do not cache offsets in size_allocate.
[evince.git] / shell / ev-page-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_PAGE_ACTION_H
23 #define EV_PAGE_ACTION_H
24
25 #include <gtk/gtkaction.h>
26
27 G_BEGIN_DECLS
28
29 #define EV_TYPE_PAGE_ACTION            (ev_page_action_get_type ())
30 #define EV_PAGE_ACTION(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), EV_TYPE_PAGE_ACTION, EvPageAction))
31 #define EV_PAGE_ACTION_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), EV_TYPE_PAGE_ACTION, EvPageActionClass))
32 #define EV_IS_PAGE_ACTION(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EV_TYPE_PAGE_ACTION))
33 #define EV_IS_PAGE_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), EV_TYPE_PAGE_ACTION))
34 #define EV_PAGE_ACTION_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj), EV_TYPE_PAGE_ACTION, EvPageActionClass))
35
36 typedef struct _EvPageAction            EvPageAction;
37 typedef struct _EvPageActionPrivate     EvPageActionPrivate;
38 typedef struct _EvPageActionClass               EvPageActionClass;
39
40 struct _EvPageAction
41 {
42         GtkAction parent;
43         
44         /*< private >*/
45         EvPageActionPrivate *priv;
46 };
47
48 struct _EvPageActionClass
49 {
50         GtkActionClass parent_class;
51
52         void (* goto_page) (EvPageAction *page_action,
53                             int           page_number);
54 };
55
56 GType ev_page_action_get_type         (void);
57 void  ev_page_action_set_total_pages  (EvPageAction *page_action,
58                                        int           total_pages);
59 void  ev_page_action_set_current_page (EvPageAction *page_action,
60                                        int           current_page);
61
62 G_END_DECLS
63
64 #endif