You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 13, 2019. It is now read-only.
I was following tutorial for glade and in reading this line in c++, I could not find the equivalent for go. Demo is running well otherwise. Very nice package!
Admittedly I don't use the Builder, but according to the gtk documentation, this connects the signals that have been already added to the builder with previous calls to gtk_builder_add_callback_symbol. I'm not sure how others use the Builder, but I think implementing gtk_builder_add_callback_symbol would have to be a first step.
The tricky part there is that gtk_builder_add_callback_symbol takes a C function pointer. I'll have to see if any of the glib closure code can be reused for this, so we would be able to call Go closures when a signal is emitted, just like when using Connect.
I was following tutorial for glade and in reading this line in c++, I could not find the equivalent for go. Demo is running well otherwise. Very nice package!
/* Connect signals */
gtk_builder_connect_signals( builder, NULL );
The text was updated successfully, but these errors were encountered: