Main Page
Groups
Namespaces
sigc::signal4< T_return, T_arg1, T_arg2, T_arg3, T_arg4, T_accumulator > Class Template Reference
[Signals]
Signal declaration.
More...
Inheritance diagram for sigc::signal4< T_return, T_arg1, T_arg2, T_arg3, T_arg4, T_accumulator >:
[legend]List of all members.
|
Public Types |
typedef internal::signal_emit4<
T_return, T_arg1, T_arg2,
T_arg3, T_arg4, T_accumulator > | emitter_type |
typedef emitter_type::result_type | result_type |
typedef slot< T_return, T_arg1,
T_arg2, T_arg3, T_arg4 > | slot_type |
typedef slot_list<slot_type> | slot_list_type |
typedef slot_list_type::iterator | iterator |
typedef slot_list_type::const_iterator | const_iterator |
typedef slot_list_type::reverse_iterator | reverse_iterator |
typedef slot_list_type::const_reverse_iterator | const_reverse_iterator |
Public Member Functions |
iterator | connect (const slot_type& slot_) |
| Add a slot to the list of slots.
|
result_type | emit (typename type_trait<T_arg1>::take _A_a1, typename type_trait<T_arg2>::take _A_a2, typename type_trait<T_arg3>::take _A_a3, typename type_trait<T_arg4>::take _A_a4) const |
| Triggers the emission of the signal.
|
result_type | operator() (typename type_trait<T_arg1>::take _A_a1, typename type_trait<T_arg2>::take _A_a2, typename type_trait<T_arg3>::take _A_a3, typename type_trait<T_arg4>::take _A_a4) const |
| Triggers the emission of the signal (see emit()).
|
bound_const_mem_functor4<
result_type, signal4, typename
type_trait<T_arg1>::take,
typename type_trait< T_arg2
>::take, typename type_trait<
T_arg3 >::take, typename
type_trait<T_arg4 >::take> | make_slot () const |
| Creates a functor that calls emit() on this signal.
|
slot_list_type | slots () |
| Creates an STL-style interface for the signal's list of slots.
|
const slot_list_type | slots () const |
| Creates an STL-style interface for the signal's list of slots.
|
| signal4 () |
| signal4 (const signal4& src) |
Detailed Description
template <class T_return, class T_arg1, class T_arg2, class T_arg3, class T_arg4, class T_accumulator = nil>
class sigc::signal4< T_return, T_arg1, T_arg2, T_arg3, T_arg4, T_accumulator >
Signal declaration.
signal4 can be used to connect() slots that are invoked during subsequent calls to emit(). Any functor or slot can be passed into connect(). It is converted into a slot implicitely.
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() 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!
An STL-style list interface for the signal's list of slots can be retrieved with slots(). This interface supports iteration, insertion and removal of slots.
The following template arguments are used:
- T_return The desired return type for the emit() function (may be overridden by the accumulator).
- T_arg1 Argument type used in the definition of emit().
- T_arg2 Argument type used in the definition of emit().
- T_arg3 Argument type used in the definition of emit().
- T_arg4 Argument type used in the definition of emit().
- T_accumulator The accumulator type used for emission. The default
nil
means that no accumulator should be used, i.e. signal emission returns the return value of the last slot invoked.
You should use the more convenient unnumbered sigc::signal template.
Member Typedef Documentation
template <class T_return, class T_arg1, class T_arg2, class T_arg3, class T_arg4, class T_accumulator = nil> |
typedef slot_list_type::const_iterator sigc::signal4<T_return, T_arg1, T_arg2, T_arg3, T_arg4, T_accumulator>::const_iterator |
|
template <class T_return, class T_arg1, class T_arg2, class T_arg3, class T_arg4, class T_accumulator = nil> |
typedef slot_list_type::const_reverse_iterator sigc::signal4<T_return, T_arg1, T_arg2, T_arg3, T_arg4, T_accumulator>::const_reverse_iterator |
|
template <class T_return, class T_arg1, class T_arg2, class T_arg3, class T_arg4, class T_accumulator = nil> |
typedef internal::signal_emit4<T_return, T_arg1,T_arg2,T_arg3,T_arg4, T_accumulator> sigc::signal4<T_return, T_arg1, T_arg2, T_arg3, T_arg4, T_accumulator>::emitter_type |
|
template <class T_return, class T_arg1, class T_arg2, class T_arg3, class T_arg4, class T_accumulator = nil> |
typedef slot_list_type::iterator sigc::signal4<T_return, T_arg1, T_arg2, T_arg3, T_arg4, T_accumulator>::iterator |
|
template <class T_return, class T_arg1, class T_arg2, class T_arg3, class T_arg4, class T_accumulator = nil> |
typedef emitter_type::result_type sigc::signal4<T_return, T_arg1, T_arg2, T_arg3, T_arg4, T_accumulator>::result_type |
|
template <class T_return, class T_arg1, class T_arg2, class T_arg3, class T_arg4, class T_accumulator = nil> |
typedef slot_list_type::reverse_iterator sigc::signal4<T_return, T_arg1, T_arg2, T_arg3, T_arg4, T_accumulator>::reverse_iterator |
|
template <class T_return, class T_arg1, class T_arg2, class T_arg3, class T_arg4, class T_accumulator = nil> |
typedef slot_list<slot_type> sigc::signal4<T_return, T_arg1, T_arg2, T_arg3, T_arg4, T_accumulator>::slot_list_type |
|
template <class T_return, class T_arg1, class T_arg2, class T_arg3, class T_arg4, class T_accumulator = nil> |
typedef slot<T_return, T_arg1,T_arg2,T_arg3,T_arg4> sigc::signal4<T_return, T_arg1, T_arg2, T_arg3, T_arg4, T_accumulator>::slot_type |
|
Constructor & Destructor Documentation
template <class T_return, class T_arg1, class T_arg2, class T_arg3, class T_arg4, class T_accumulator = nil> |
sigc::signal4<T_return, T_arg1, T_arg2, T_arg3, T_arg4, T_accumulator>::signal4 |
( |
|
) |
[inline] |
|
template <class T_return, class T_arg1, class T_arg2, class T_arg3, class T_arg4, class T_accumulator = nil> |
sigc::signal4<T_return, T_arg1, T_arg2, T_arg3, T_arg4, T_accumulator>::signal4 |
( |
const signal4<T_return, T_arg1, T_arg2, T_arg3, T_arg4, T_accumulator>& |
src |
) |
[inline] |
|
Member Function Documentation
template <class T_return, class T_arg1, class T_arg2, class T_arg3, class T_arg4, class T_accumulator = nil> |
iterator sigc::signal4<T_return, T_arg1, T_arg2, T_arg3, T_arg4, T_accumulator>::connect |
( |
const slot_type& |
slot_ |
) |
[inline] |
|
|
Add a slot to the list of slots.
Any functor or slot may be passed into connect(). It will be converted into a slot implicitely. The returned iterator may be stored for disconnection of the slot at some later point. It stays valid until the slot is removed from the list of slots. The iterator can also be implicitely converted into a sigc::connection object that may be used safely beyond the life time of the slot. - Parameters:
-
| slot_ | The slot to add to the list of slots. |
- Returns:
- An iterator pointing to the new slot in the list.
|
template <class T_return, class T_arg1, class T_arg2, class T_arg3, class T_arg4, class T_accumulator = nil> |
result_type sigc::signal4<T_return, T_arg1, T_arg2, T_arg3, T_arg4, T_accumulator>::emit |
( |
typename type_trait<T_arg1>::take |
_A_a1, |
|
|
typename type_trait<T_arg2>::take |
_A_a2, |
|
|
typename type_trait<T_arg3>::take |
_A_a3, |
|
|
typename type_trait<T_arg4>::take |
_A_a4 |
|
) |
const [inline] |
|
|
Triggers the emission of the signal.
During signal emission all slots that have been connected to the signal are invoked unless they are manually set into a blocking state. The parameters are passed on to the slots. If T_accumulated is not nil , an accumulator of this type is used to process the return values of the slot invocations. Otherwise, the return value of the last slot invoked is returned. - Parameters:
-
| _A_a1 | Argument to be passed on to the slots. |
| _A_a2 | Argument to be passed on to the slots. |
| _A_a3 | Argument to be passed on to the slots. |
| _A_a4 | Argument to be passed on to the slots. |
- Returns:
- The accumulated return values of the slot invocations.
|
template <class T_return, class T_arg1, class T_arg2, class T_arg3, class T_arg4, class T_accumulator = nil> |
bound_const_mem_functor4<result_type, signal4, typename type_trait<T_arg1>::take,typename type_trait<T_arg2>::take,typename type_trait<T_arg3>::take,typename type_trait<T_arg4>::take> sigc::signal4<T_return, T_arg1, T_arg2, T_arg3, T_arg4, T_accumulator>::make_slot |
( |
|
) |
const [inline] |
|
|
Creates a functor that calls emit() on this signal.
yields the same result. - Returns:
- A functor that calls emit() on this signal.
|
template <class T_return, class T_arg1, class T_arg2, class T_arg3, class T_arg4, class T_accumulator = nil> |
result_type sigc::signal4<T_return, T_arg1, T_arg2, T_arg3, T_arg4, T_accumulator>::operator() |
( |
typename type_trait<T_arg1>::take |
_A_a1, |
|
|
typename type_trait<T_arg2>::take |
_A_a2, |
|
|
typename type_trait<T_arg3>::take |
_A_a3, |
|
|
typename type_trait<T_arg4>::take |
_A_a4 |
|
) |
const [inline] |
|
|
Triggers the emission of the signal (see emit()).
|
template <class T_return, class T_arg1, class T_arg2, class T_arg3, class T_arg4, class T_accumulator = nil> |
const slot_list_type sigc::signal4<T_return, T_arg1, T_arg2, T_arg3, T_arg4, T_accumulator>::slots |
( |
|
) |
const [inline] |
|
|
Creates an STL-style interface for the signal's list of slots.
This interface supports iteration, insertion and removal of slots. - Returns:
- An STL-style interface for the signal's list of slots.
|
template <class T_return, class T_arg1, class T_arg2, class T_arg3, class T_arg4, class T_accumulator = nil> |
slot_list_type sigc::signal4<T_return, T_arg1, T_arg2, T_arg3, T_arg4, T_accumulator>::slots |
( |
|
) |
[inline] |
|
|
Creates an STL-style interface for the signal's list of slots.
This interface supports iteration, insertion and removal of slots. - Returns:
- An STL-style interface for the signal's list of slots.
|
The documentation for this class was generated from the following file:
Generated for libsigc++ 2.0 by
Doxygen 1.3.9.1 © 1997-2001