Esempio n. 1
0
int
clip_GDK_SETSHOWEVENTS(ClipMachine *cm)
{
	gint show_events = BOOL_OPTION(cm, 1, TRUE);

	gdk_set_show_events(show_events);

	return 0;
}
Esempio n. 2
0
static VALUE
gdkevent_s_set_show_events(VALUE self, VALUE show_events)
{
    gdk_set_show_events(RVAL2CBOOL(show_events));
    return self;
}