summaryrefslogtreecommitdiff
path: root/riscos/query.h
diff options
context:
space:
mode:
authorAdrian Lees <adrian@aemulor.com>2005-04-23 02:56:14 +0000
committerAdrian Lees <adrian@aemulor.com>2005-04-23 02:56:14 +0000
commit3d067e2fd635d4e92ea00f939b5ee98e59a851b8 (patch)
treed3a23a2498b5136bda52e23f91293075780fb059 /riscos/query.h
parent1e673368d1a6a376eb94bc14fe46368764d64355 (diff)
downloadnetsurf-3d067e2fd635d4e92ea00f939b5ee98e59a851b8.tar.gz
netsurf-3d067e2fd635d4e92ea00f939b5ee98e59a851b8.tar.bz2
[project @ 2005-04-23 02:56:14 by adrianl]
Query windows svn path=/import/netsurf/; revision=1678
Diffstat (limited to 'riscos/query.h')
-rw-r--r--riscos/query.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/riscos/query.h b/riscos/query.h
new file mode 100644
index 000000000..9ccebc7e2
--- /dev/null
+++ b/riscos/query.h
@@ -0,0 +1,22 @@
+/*
+ * 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 Adrian Lees <adrianl@users.sourceforge.net>
+ */
+
+#ifndef _NETSURF_RISCOS_QUERY_H
+#define _NETSURF_RISCOS_QUERY_H
+#include <stdbool.h>
+#include "oslib/wimp.h"
+#include "netsurf/utils/utils.h"
+
+struct gui_query_window;
+
+void ro_gui_query_init(void);
+struct gui_query_window *ro_gui_query_window_lookup(wimp_w w);
+void ro_gui_query_window_bring_to_front(query_id id);
+void ro_gui_query_window_click(struct gui_query_window *qw, wimp_pointer *pointer);
+bool ro_gui_query_window_keypress(struct gui_query_window *qw, wimp_key *key);
+
+#endif