forked from AuroraMiddleware/gtk
demos/gtk-demo/hypertext.c: Use accessor functions to access GtkWidget
This commit is contained in:
parent
e80db673b1
commit
8c4783da05
@ -225,7 +225,8 @@ motion_notify_event (GtkWidget *text_view,
|
|||||||
|
|
||||||
set_cursor_if_appropriate (GTK_TEXT_VIEW (text_view), x, y);
|
set_cursor_if_appropriate (GTK_TEXT_VIEW (text_view), x, y);
|
||||||
|
|
||||||
gdk_window_get_pointer (text_view->window, NULL, NULL, NULL);
|
gdk_window_get_pointer (gtk_widget_get_window (text_view),
|
||||||
|
NULL, NULL, NULL);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -238,7 +239,8 @@ visibility_notify_event (GtkWidget *text_view,
|
|||||||
{
|
{
|
||||||
gint wx, wy, bx, by;
|
gint wx, wy, bx, by;
|
||||||
|
|
||||||
gdk_window_get_pointer (text_view->window, &wx, &wy, NULL);
|
gdk_window_get_pointer (gtk_widget_get_window (text_view),
|
||||||
|
&wx, &wy, NULL);
|
||||||
|
|
||||||
gtk_text_view_window_to_buffer_coords (GTK_TEXT_VIEW (text_view),
|
gtk_text_view_window_to_buffer_coords (GTK_TEXT_VIEW (text_view),
|
||||||
GTK_TEXT_WINDOW_WIDGET,
|
GTK_TEXT_WINDOW_WIDGET,
|
||||||
|
Loading…
Reference in New Issue
Block a user