summaryrefslogtreecommitdiff
path: root/gtk/gtk_history.h
diff options
context:
space:
mode:
authorRob Kendrick <rjek@netsurf-browser.org>2006-08-18 11:44:24 +0000
committerRob Kendrick <rjek@netsurf-browser.org>2006-08-18 11:44:24 +0000
commit43bb5b652d0a5c2efda484195a3ef55f17b9cc8b (patch)
tree3c44b46ce13e23f55cf9e06f15ca45ddd9428b20 /gtk/gtk_history.h
parenta1292c7935dcf0e78e92a37fe3dc6b39a1782c8e (diff)
downloadnetsurf-43bb5b652d0a5c2efda484195a3ef55f17b9cc8b.tar.gz
netsurf-43bb5b652d0a5c2efda484195a3ef55f17b9cc8b.tar.bz2
Very simple global history implementation for nsgtk, misc fixes
svn path=/trunk/netsurf/; revision=2867
Diffstat (limited to 'gtk/gtk_history.h')
-rw-r--r--gtk/gtk_history.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/gtk/gtk_history.h b/gtk/gtk_history.h
new file mode 100644
index 000000000..230279b0b
--- /dev/null
+++ b/gtk/gtk_history.h
@@ -0,0 +1,20 @@
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2006 Rob Kendrick <rjek@rjek.com>
+ */
+
+#ifndef __NSGTK_HISTORY_H__
+#define __NSGTK_HISTORY_H__
+
+#include <gtk/gtk.h>
+
+extern GtkWindow *wndHistory;
+
+void nsgtk_history_init(void);
+void nsgtk_history_update(void);
+void nsgtk_history_row_activated(GtkTreeView *, GtkTreePath *,
+ GtkTreeViewColumn *, gpointer);
+
+#endif /* __NSGTK_HISTORY_H__ */