2 * Copyright (C) 2003, 2004 Marco Pesenti Gritti
3 * Copyright (C) 2003, 2004 Christian Persch
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)
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.
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.
21 #ifndef EV_PAGE_ACTION_H
22 #define EV_PAGE_ACTION_H
26 #include <evince-document.h>
27 #include <evince-view.h>
31 #define EV_TYPE_PAGE_ACTION (ev_page_action_get_type ())
32 #define EV_PAGE_ACTION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EV_TYPE_PAGE_ACTION, EvPageAction))
33 #define EV_PAGE_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), EV_TYPE_PAGE_ACTION, EvPageActionClass))
34 #define EV_IS_PAGE_ACTION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EV_TYPE_PAGE_ACTION))
35 #define EV_IS_PAGE_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), EV_TYPE_PAGE_ACTION))
36 #define EV_PAGE_ACTION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), EV_TYPE_PAGE_ACTION, EvPageActionClass))
38 typedef struct _EvPageAction EvPageAction;
39 typedef struct _EvPageActionPrivate EvPageActionPrivate;
40 typedef struct _EvPageActionClass EvPageActionClass;
47 EvPageActionPrivate *priv;
50 struct _EvPageActionClass
52 GtkActionClass parent_class;
54 void (* activate_link) (EvPageAction *page_action,
58 GType ev_page_action_get_type (void) G_GNUC_CONST;
60 void ev_page_action_set_model (EvPageAction *page_action,
61 EvDocumentModel *model);
62 void ev_page_action_set_links_model (EvPageAction *page_action,
63 GtkTreeModel *links_model);
64 void ev_page_action_grab_focus (EvPageAction *page_action);