Auto-completion GtkTreeView prototype shows url, topic and relvance columns now
[ephy-history.git] / ephy-history-node.h
blob3d2b98efa223c4d59a377f8b68a6e76f7ac9ce28
1 #ifndef EPHY_HISTORY_NODE_H
2 #define EPHY_HISTORY_NODE_H
4 #include <glib-object.h>
6 G_BEGIN_DECLS
8 #define EPHY_TYPE_HISTORY_NODE (ephy_history_node_get_type ())
10 #define EPHY_HISTORY_NODE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EPHY_TYPE_HISTORY_NODE, EphyHistoryNode))
12 #define EPHY_HISTORY_NODE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), EPHY_TYPE_HISTORY_NODE, EphyHistoryNodeClass))
14 #define EPHY_IS_HISTORY_NODE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EPHY_TYPE_HISTORY_NODE))
16 #define EPHY_IS_HISTORY_NODE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_HISTORY_NODE))
18 #define EPHY_HISTORY_NODE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_HISTORY_NODE, EphyHistoryNodeClass))
20 typedef struct _EphyHistoryNodeClass EphyHistoryNodeClass;
21 typedef struct _EphyHistoryNode EphyHistoryNode;
22 typedef struct _EphyHistoryNodePrivate EphyHistoryNodePrivate;
24 struct _EphyHistoryNode
26 GObject parent;
28 /*< private >*/
29 EphyHistoryNodePrivate *priv;
32 struct _EphyHistoryNodeClass
34 GObjectClass parent_class;
37 GType ephy_history_node_get_type (void);
39 G_END_DECLS
41 #endif /* EPHY_HISTORY_NODE_H */