[Glade-users] envoking 'clicked' signal
John Delaney
johndelaney at gmail.com
Thu Sep 16 11:18:46 EDT 2010
On Thu, Sep 16, 2010 at 4:08 PM, Arthur Shats <ashats at hotmail.com> wrote:
> button = lookup_widget(GTK_WIDGET(entry), "btnNext");
> on_btnNext_clicked(GTK_BUTTON(button), user_data); /** CAN I CALL THIS
> HANDLER JUST LIKE THAT ????? **/
This would be a nicer way of doing it:
gtk_button_clicked (GTK_BUTTON (button));
http://library.gnome.org/devel/gtk/unstable/GtkButton.html#gtk-button-clicked
More information about the Glade-users
mailing list