mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-24 04:56:50 +03:00
[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
This commit is contained in:
parent
043db9ece0
commit
530e185124
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user