summaryrefslogtreecommitdiff
path: root/gtk/gtk_history.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/gtk_history.h')
-rw-r--r--gtk/gtk_history.h19
1 files changed, 16 insertions, 3 deletions
diff --git a/gtk/gtk_history.h b/gtk/gtk_history.h
index 13b76358f..e5662fe89 100644
--- a/gtk/gtk_history.h
+++ b/gtk/gtk_history.h
@@ -23,9 +23,22 @@
extern GtkWindow *wndHistory;
+
+struct history_model {
+ GtkListStore *history_list;
+ GtkTreeModel *history_filter;
+ GtkTreeModel *site_filter;
+ GtkTreeModel *site_sort;
+ GtkTreeView *site_treeview;
+ GtkTreeSelection *site_selection;
+ GtkListStore *domain_list;
+ GtkTreeModel *domain_filter;
+ GHashTable *domain_hash;
+ GtkTreeModel *domain_sort;
+ GtkTreeView *domain_treeview;
+ GtkTreeSelection *domain_selection;
+};
+
void nsgtk_history_init(void);
-void nsgtk_history_update(void);
-void nsgtk_history_row_activated(GtkTreeView *, GtkTreePath *,
- GtkTreeViewColumn *, gpointer);
#endif /* __NSGTK_HISTORY_H__ */