comparison src/typedefs.h @ 1481:96897bd5f6cd

active image follows keyboard focus
author nadvornik
date Sat, 28 Mar 2009 15:31:04 +0000
parents 38925ff71a46
children 73cecf473802
comparison
equal deleted inserted replaced
1480:077924265c28 1481:96897bd5f6cd
392 392
393 /* button, scroll functions */ 393 /* button, scroll functions */
394 void (*func_button)(ImageWindow *, GdkEventButton *event, gpointer); 394 void (*func_button)(ImageWindow *, GdkEventButton *event, gpointer);
395 void (*func_drag)(ImageWindow *, GdkEventButton *event, gdouble dx, gdouble dy, gpointer); 395 void (*func_drag)(ImageWindow *, GdkEventButton *event, gdouble dx, gdouble dy, gpointer);
396 void (*func_scroll)(ImageWindow *, GdkEventScroll *event, gpointer); 396 void (*func_scroll)(ImageWindow *, GdkEventScroll *event, gpointer);
397 void (*func_focus_in)(ImageWindow *, gpointer);
397 398
398 gpointer data_button; 399 gpointer data_button;
399 gpointer data_drag; 400 gpointer data_drag;
400 gpointer data_scroll; 401 gpointer data_scroll;
402 gpointer data_focus_in;
401 403
402 /* scroll notification (for scroll bar implementation) */ 404 /* scroll notification (for scroll bar implementation) */
403 void (*func_scroll_notify)(ImageWindow *, gint x, gint y, gint width, gint height, gpointer); 405 void (*func_scroll_notify)(ImageWindow *, gint x, gint y, gint width, gint height, gpointer);
404 406
405 gpointer data_scroll_notify; 407 gpointer data_scroll_notify;