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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 #include <evince-view.h>
25 #define EV_TYPE_PAGE_ACTION_WIDGET (ev_page_action_widget_get_type ())
26 #define EV_PAGE_ACTION_WIDGET(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EV_TYPE_PAGE_ACTION_WIDGET, EvPageActionWidget))
28 typedef struct _EvPageActionWidget EvPageActionWidget;
29 typedef struct _EvPageActionWidgetClass EvPageActionWidgetClass;
31 struct _EvPageActionWidgetClass
33 GtkToolItemClass parent_class;
35 void (* activate_link) (EvPageActionWidget *page_action,
39 GType ev_page_action_widget_get_type (void) G_GNUC_CONST;
41 void ev_page_action_widget_update_links_model (EvPageActionWidget *proxy,
44 void ev_page_action_widget_set_model (EvPageActionWidget *action_widget,
45 EvDocumentModel *doc_model);
46 void ev_page_action_widget_grab_focus (EvPageActionWidget *proxy);