2 * Copyright (C) 2005 Marco Pesenti Gritti
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2, or (at your option)
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 #include <glib-object.h>
29 #define EV_TYPE_HISTORY (ev_history_get_type ())
30 #define EV_HISTORY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EV_TYPE_HISTORY, EvHistory))
31 #define EV_HISTORY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), EV_TYPE_HISTORY, EvHistoryClass))
32 #define EV_IS_HISTORY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EV_TYPE_HISTORY))
33 #define EV_IS_HISTORY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), EV_TYPE_HISTORY))
34 #define EV_HISTORY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), EV_TYPE_HISTORY, EvHistoryClass))
36 typedef struct _EvHistory EvHistory;
37 typedef struct _EvHistoryPrivate EvHistoryPrivate;
38 typedef struct _EvHistoryClass EvHistoryClass;
45 EvHistoryPrivate *priv;
48 struct _EvHistoryClass
50 GObjectClass parent_class;
53 GType ev_history_get_type (void);
54 EvHistory *ev_history_new (void);
55 void ev_history_add_link (EvHistory *history,
57 EvLink *ev_history_get_link_nth (EvHistory *history,
59 int ev_history_get_n_links (EvHistory *history);