Auto-completion GtkTreeView prototype shows url, topic and relvance columns now
[ephy-history.git] / ephy-history-visit-node.h
blob6e9da6b730a51b330cb8b1df1415d3abf9ab7780
1 #ifndef EPHY_HISTORY_VISIT_NODE_H
2 #define EPHY_HISTORY_VISIT_NODE_H
4 #include <glib-object.h>
5 #include "ephy-history-node.h"
7 G_BEGIN_DECLS
9 #define EPHY_TYPE_HISTORY_VISIT_NODE (ephy_history_visit_node_get_type ())
11 #define EPHY_HISTORY_VISIT_NODE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EPHY_TYPE_HISTORY_VISIT_NODE, EphyHistoryVisitNode))
13 #define EPHY_HISTORY_VISIT_NODE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), EPHY_TYPE_HISTORY_VISIT_NODE, EphyHistoryVisitNodeClass))
15 #define EPHY_IS_HISTORY_VISIT_NODE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EPHY_TYPE_HISTORY_VISIT_NODE))
17 #define EPHY_IS_HISTORY_VISIT_NODE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_HISTORY_VISIT_NODE))
19 #define EPHY_HISTORY_VISIT_NODE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_HISTORY_VISIT_NODE, EphyHistoryVisitNodeClass))
21 typedef struct _EphyHistoryVisitNodeClass EphyHistoryVisitNodeClass;
22 typedef struct _EphyHistoryVisitNode EphyHistoryVisitNode;
23 typedef struct _EphyHistoryVisitNodePrivate EphyHistoryVisitNodePrivate;
25 struct _EphyHistoryVisitNode
27 GObject parent;
29 /*< private >*/
30 EphyHistoryVisitNodePrivate *priv;
33 struct _EphyHistoryVisitNodeClass
35 GObjectClass parent_class;
38 GType ephy_history_visit_node_get_type (void);
40 G_END_DECLS
42 #endif /* EPHY_HISTORY_VISIT_NODE_H */