summaryrefslogtreecommitdiff
path: root/riscos/textselection.h
diff options
context:
space:
mode:
authorAdrian Lees <adrian@aemulor.com>2006-02-15 23:10:08 +0000
committerAdrian Lees <adrian@aemulor.com>2006-02-15 23:10:08 +0000
commit5f93f8f3f94c852ce3717ab79d43a1c7461ddf00 (patch)
treedcb7ffb0a21b681b84a0bb0499b2d6c84b3659c3 /riscos/textselection.h
parentdbfdafdf1820a95995c3b260e147c55125468874 (diff)
downloadnetsurf-5f93f8f3f94c852ce3717ab79d43a1c7461ddf00.tar.gz
netsurf-5f93f8f3f94c852ce3717ab79d43a1c7461ddf00.tar.bz2
[project @ 2006-02-15 23:10:08 by adrianl]
New header files svn path=/import/netsurf/; revision=2082
Diffstat (limited to 'riscos/textselection.h')
-rw-r--r--riscos/textselection.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/riscos/textselection.h b/riscos/textselection.h
new file mode 100644
index 000000000..121e9b034
--- /dev/null
+++ b/riscos/textselection.h
@@ -0,0 +1,32 @@
+/*
+ * 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 Adrian Lees <adrianl@users.sourceforge.net>
+ */
+
+/** \file
+ * Text selection import/export (interface).
+ */
+
+#ifndef _NETSURF_RISCOS_TEXTSELECTION_H_
+#define _NETSURF_RISCOS_TEXTSELECTION_H_
+
+#include "oslib/wimp.h"
+#include "netsurf/desktop/gui.h"
+
+
+void ro_gui_selection_drag_end(struct gui_window *g, wimp_dragged *drag);
+void ro_gui_selection_claim_entity(wimp_full_message_claim_entity *claim);
+void ro_gui_selection_data_request(wimp_full_message_data_request *req);
+bool ro_gui_save_clipboard(const char *path);
+
+/* drag-and-drop, receiving */
+void ro_gui_selection_dragging(wimp_message *message);
+void ro_gui_selection_drag_reset(void);
+
+/* drag-and-drop, sending */
+void ro_gui_selection_send_dragging(wimp_pointer *pointer);
+void ro_gui_selection_drag_claim(wimp_message *message);
+
+#endif