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 was archived by the owner on Jun 8, 2021. It is now read-only.
As I am running into issues with the current implementation of Connect (cfr. gtk-rs/gtk#30), I am looking at the implementation to see if I can pin-point the origin of my issues. However, within that code you can find:
What exactly is glue_signal_connect? I'm asking because I can't seem to find this in Glib.
Furthermore, the Signal trait seems to have a fetch_cb method. What should this be used for? As I don't see it being used (directly) at the moment. (They are used to create the trampolines).
The text was updated successfully, but these errors were encountered:
This glue function lives in gtk_glue.c. I can't say there's much point to having this glue function. The problems with closures have been discussed here: jeremyletang/rgtk#28
As I am running into issues with the current implementation of
Connect
(cfr. gtk-rs/gtk#30), I am looking at the implementation to see if I can pin-point the origin of my issues. However, within that code you can find:Which can also be found among the FFI defintions:
What exactly is
glue_signal_connect
? I'm asking because I can't seem to find this in Glib.Furthermore, the(They are used to create the trampolines).Signal
trait seems to have afetch_cb
method. What should this be used for? As I don't see it being used (directly) at the moment.The text was updated successfully, but these errors were encountered: