>
>   hi all,
>           how the double click event can be put in gtk.

gint
button_press_handler (GdkWidget *w, GdkEventButton *ev)
{
        if (ev->type == GDK_2BUTTON_PRESS) {
            /* dbl click */
            ...
        } 
        ...
}

you cannot tell from the "clicked" event.

--p
_______________________________________________
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list

Reply via email to