KDBindings API Documentation
1.0.95
|
A ConnectionHandle represents the connection of a Signal to a slot (i.e. a function that is called when the Signal is emitted). More...
#include <connection_handle.h>
Public Member Functions | |
ConnectionHandle ()=default | |
ConnectionHandle (ConnectionHandle &&) noexcept=default | |
ConnectionHandle (const ConnectionHandle &) noexcept=default | |
template<typename... Args> | |
bool | belongsTo (const Signal< Args... > &signal) const |
bool | block (bool blocked) |
void | disconnect () noexcept |
bool | isActive () const |
bool | isBlocked () const |
ConnectionHandle & | operator= (ConnectionHandle &&) noexcept=default |
ConnectionHandle & | operator= (const ConnectionHandle &) noexcept=default |
bool | operator== (const ConnectionHandle &other) const |
void | release () const |
A ConnectionHandle represents the connection of a Signal to a slot (i.e. a function that is called when the Signal is emitted).
It is returned from a Signal when a connection is created and used to manage the connection by disconnecting, (un)blocking it and checking its state.
Definition at line 54 of file connection_handle.h.
|
default |
A ConnectionHandle can be default constructed. In this case the ConnectionHandle will not reference any active connection (i.e. isActive() will return false), and not belong to any Signal.
|
defaultnoexcept |
A ConnectionHandle can be copied.
|
defaultnoexcept |
A ConnectionHandle can be moved.
|
inline |
Check whether this ConnectionHandle belongs to the given Signal.
Definition at line 157 of file connection_handle.h.
Referenced by KDBindings::Signal< Args >::blockConnection(), KDBindings::Signal< Args >::disconnect(), and KDBindings::Signal< Args >::isConnectionBlocked().
|
inline |
Sets the block state of the connection. If a connection is blocked, emitting the Signal will no longer call this connections slot, until the connection is unblocked.
Behaves the same as calling Signal::blockConnection with this ConnectionHandle as argument.
To temporarily block a connection, consider using an instance of ConnectionBlocker, which offers a RAII-style implementation that makes sure the connection is always returned to its original state.
blocked | The new blocked state of the connection. |
std::out_of_range | Throws if the connection is not active (i.e. isActive() returns false). |
Definition at line 128 of file connection_handle.h.
Referenced by KDBindings::ConnectionBlocker::ConnectionBlocker().
|
inlinenoexcept |
Disconnect the slot.
When this function is called, the function that was passed to Signal::connect to create this ConnectionHandle will no longer be called when the Signal is emitted.
If the ConnectionHandle is not active or the connection has already been disconnected, nothing happens.
After this call, the ConnectionHandle will be inactive (i.e. isActive() returns false) and will no longer belong to any Signal (i.e. belongsTo returns false).
Definition at line 91 of file connection_handle.h.
|
inline |
Check whether the connection of this ConnectionHandle is active.
Definition at line 107 of file connection_handle.h.
|
inline |
Checks whether the connection is currently blocked.
To change the blocked state of a connection, call ConnectionHandle::block.
Definition at line 143 of file connection_handle.h.
|
defaultnoexcept |
|
defaultnoexcept |
|
inline |
Definition at line 164 of file connection_handle.h.
|
inline |
This function exists to intentionally silence the [[nodiscard]] warning generated when connecting.
In cases where you know for certain that the lifetime of the signal does not extend beyond the lifetime of the slot, you may not need the ConnectionHandle, so you can use release to discard it.
Example:
Definition at line 198 of file connection_handle.h.