Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[HELP] Examples to use block_signal and unblock_signal #1817

Closed
Doublonmousse opened this issue Aug 4, 2024 · 5 comments
Closed

[HELP] Examples to use block_signal and unblock_signal #1817

Doublonmousse opened this issue Aug 4, 2024 · 5 comments
Labels
question Further information is requested

Comments

@Doublonmousse
Copy link

The two fonctions block_signal and unblock_signal don't have examples and I can't seem to find any way to use them because of SignalHandlerId not implementing Clone.

I'd want to setup a spinbutton with a connect_value_changed signal handler and block/unblock this signal when changing the value programmatically to distinguish this from user input (and makind it easier to not have issues related to additional signals being triggered).

But adding custom methods (like a block and unblock)in my template won't work even using a RefCell from this lack of Clone.
I failed to do the "take the Signal handler id -> convert to c_ulong -> reconstruct the signal handler ID" as well. But at this point it's more of a hacky workaround than anything else.

@bilelmoussaoui
Copy link
Member

You should store the signal handler in a RefCell<Option> so you can take the value and leave None there.

@bilelmoussaoui bilelmoussaoui added the question Further information is requested label Oct 17, 2024
@bilelmoussaoui
Copy link
Member

also use the forum for discussions.

@Doublonmousse
Copy link
Author

Well the thing is that this is a operation done once right ?
I need to block/unblock multiple times

@bilelmoussaoui
Copy link
Member

Then instead of using .take() you should use borrow().

if let Some(handler) = self.handler.borrow() {}...

@bilelmoussaoui
Copy link
Member

The handler is on purpose not Clone, so you don't do unsafe things with it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants