summaryrefslogtreecommitdiff
path: root/riscos/url_complete.h
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2005-02-03 13:18:22 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2005-02-03 13:18:22 +0000
commit2affb76944a4cd83a2ff6722c3150abbb972f37d (patch)
treeb74bf45e17f25b59c941f592ea4685f326e82d01 /riscos/url_complete.h
parent4a343579867c0659dedc8e4216d02d2c166eee07 (diff)
downloadnetsurf-2affb76944a4cd83a2ff6722c3150abbb972f37d.tar.gz
netsurf-2affb76944a4cd83a2ff6722c3150abbb972f37d.tar.bz2
[project @ 2005-02-03 13:18:22 by rjw]
Implementation of URL suggestion svn path=/import/netsurf/; revision=1488
Diffstat (limited to 'riscos/url_complete.h')
-rw-r--r--riscos/url_complete.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/riscos/url_complete.h b/riscos/url_complete.h
new file mode 100644
index 000000000..fa70efc14
--- /dev/null
+++ b/riscos/url_complete.h
@@ -0,0 +1,26 @@
+/*
+ * 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 2005 Richard Wilson <info@tinct.net>
+ */
+
+/** \file
+ * Central repository for URL data (interface).
+ */
+
+#ifndef _NETSURF_RISCOS_URLCOMPLETE_H_
+#define _NETSURF_RISCOS_URLCOMPLETE_H_
+
+#include <stdbool.h>
+#include "netsurf/riscos/gui.h"
+
+bool ro_gui_url_complete_keypress(struct gui_window *g, int key);
+void ro_gui_url_complete_resize(struct gui_window *g, wimp_open *open);
+bool ro_gui_url_complete_close(struct gui_window *g, wimp_i i);
+void ro_gui_url_complete_redraw(wimp_draw *redraw);
+void ro_gui_url_complete_mouse_at(wimp_pointer *pointer);
+
+void url_complete_dump_matches(const char *url);
+
+#endif