From 530e185124cad07180cf3dc6a827b261b8cf007f Mon Sep 17 00:00:00 2001 From: Adrian Lees Date: Fri, 15 Apr 2005 05:52:17 +0000 Subject: [project @ 2005-04-15 05:52:17 by adrianl] Stub functions for GTK following text selection, page drag scrolling and drag-saving of images svn path=/import/netsurf/; revision=1637 --- gtk/gtk_window.c | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'gtk/gtk_window.c') diff --git a/gtk/gtk_window.c b/gtk/gtk_window.c index b531b72c7..ed2929bd5 100644 --- a/gtk/gtk_window.c +++ b/gtk/gtk_window.c @@ -287,6 +287,14 @@ void gui_window_update_box(struct gui_window *g, } +bool gui_window_get_scroll(struct gui_window *g, int *sx, int *sy) +{ + *sx = 0; + *sy = 0; + return true; +} + + void gui_window_set_scroll(struct gui_window *g, int sx, int sy) { } @@ -349,3 +357,31 @@ void gui_window_remove_caret(struct gui_window *g) void gui_window_new_content(struct gui_window *g) { } + + +bool gui_window_scroll_start(struct gui_window *g) +{ + return true; +} + + +void gui_drag_save_object(gui_save_type type, struct content *c) +{ +} + + +void gui_drag_save_selection(struct selection *s) +{ +} + + +void gui_start_selection(struct gui_window *g) +{ +} + + +bool gui_copy_to_clipboard(struct selection *s) +{ + return false; +} + -- cgit v1.2.3