libsigc++ 3.6.0
|
signal can be used to connect() slots that are invoked during subsequent calls to emit(). More...
#include <sigc++/signal.h>
Classes | |
class | accumulated |
Like sigc::signal but the additional template parameter T_accumulator defines the accumulator type that should be used. More... | |
Public Types | |
using | accumulator_type = void |
![]() | |
using | slot_type = slot< T_return(T_arg...)> |
![]() | |
using | size_type = std::size_t |
Public Member Functions | |
signal ()=default | |
signal (const signal &src) | |
signal (signal &&src) | |
signal & | operator= (const signal &src) |
signal & | operator= (signal &&src) |
![]() | |
signal_with_accumulator ()=default | |
signal_with_accumulator (const signal_with_accumulator &src) | |
signal_with_accumulator (signal_with_accumulator &&src) | |
connection | connect (const slot_type & slot_) |
Add a slot at the end of the list of slots. | |
connection | connect (slot_type && slot_) |
Add a slot at the end of the list of slots. | |
connection | connect_first (const slot_type & slot_) |
Add a slot at the beginning of the list of slots. | |
connection | connect_first (slot_type && slot_) |
Add a slot at the beginning of the list of slots. | |
decltype(auto) | emit (type_trait_take_t< T_arg >... a) const |
Triggers the emission of the signal. | |
decltype(auto) | make_slot () const |
Creates a functor that calls emit() on this signal. | |
decltype(auto) | operator() (type_trait_take_t< T_arg >... a) const |
Triggers the emission of the signal (see emit()). | |
signal_with_accumulator & | operator= (const signal_with_accumulator &src) |
signal_with_accumulator & | operator= (signal_with_accumulator &&src) |
![]() | |
signal_base () noexcept | |
signal_base (const signal_base &src) noexcept | |
signal_base (signal_base &&src) | |
~signal_base () | |
void | block (bool should_block=true) noexcept |
Sets the blocking state of all slots in the list. | |
bool | blocked () const noexcept |
Returns whether all slots in the list are blocked. | |
void | clear () |
Empties the list of slots. | |
bool | empty () const noexcept |
Returns whether the list of slots is empty. | |
signal_base & | operator= (const signal_base &src) |
signal_base & | operator= (signal_base &&src) |
size_type | size () const noexcept |
Returns the number of slots in the list. | |
void | unblock () noexcept |
Unsets the blocking state of all slots in the list. | |
Additional Inherited Members | |
![]() | |
using | iterator_type = internal::signal_impl::iterator_type |
![]() | |
iterator_type | connect (const slot_base & slot_) |
Adds a slot at the end of the list of slots. | |
iterator_type | connect (slot_base && slot_) |
Adds a slot at the end of the list of slots. | |
iterator_type | connect_first (const slot_base & slot_) |
Adds a slot at the beginning of the list of slots. | |
iterator_type | connect_first (slot_base && slot_) |
Adds a slot at the beginning of the list of slots. | |
std::shared_ptr< internal::signal_impl > | impl () const |
Returns the signal_impl object encapsulating the list of slots. | |
iterator_type | insert (iterator_type i, const slot_base & slot_) |
Adds a slot at the given position into the list of slots. | |
iterator_type | insert (iterator_type i, slot_base && slot_) |
Adds a slot at the given position into the list of slots. | |
![]() | |
std::shared_ptr< internal::signal_impl > | impl_ |
The signal_impl object encapsulating the slot list. | |
signal can be used to connect() slots that are invoked during subsequent calls to emit().
Any functor or slot can be passed into connect() or connect_first(). It is converted into a slot implicitly.
If you want to connect one signal to another, use make_slot() to retrieve a functor that emits the signal when invoked.
Be careful if you directly pass one signal into the connect() or connect_first() method of another: a shallow copy of the signal is made and the signal's slots are not disconnected until both the signal and its clone are destroyed, which is probably not what you want!
The template arguments determine the function signature of the emit() function:
For instance, to declare a signal whose connected slot returns void and takes two parameters of bool and int:
To specify an accumulator type the nested class signal::accumulated can be used.
|
default |
|
inline |