[project @ 2006-03-10 08:53:49 by dsilvers]

very beginning of cursor support in GTK port

svn path=/import/netsurf/; revision=2122
This commit is contained in:
Daniel Silverstone 2006-03-10 08:53:49 +00:00
parent f7634e18c7
commit 444cb18984
1 changed files with 3 additions and 0 deletions

View File

@ -34,6 +34,7 @@ struct gui_window {
struct browser_window *bw;
int target_width;
int target_height;
gui_pointer_shape current_pointer;
};
GtkWidget *current_widget;
GdkDrawable *current_drawable;
@ -139,6 +140,7 @@ struct gui_window *gui_create_browser_window(struct browser_window *bw,
g->drawing_area = drawing_area;
g->status_bar = status_bar;
g->bw = bw;
g->current_pointer = GUI_POINTER_DEFAULT;
g_signal_connect(G_OBJECT(window), "destroy",
G_CALLBACK(gui_window_destroy_event), g);
@ -360,6 +362,7 @@ void gui_window_set_status(struct gui_window *g, const char *text)
void gui_window_set_pointer(gui_pointer_shape shape)
{
}