#include <scim_signals.h>
Public Types | |
typedef Slot6< R, P1, P2, P3, P4, P5, P6 > | SlotType |
Function signature for handlers connecting to the signal. | |
Public Member Functions | |
Connection | connect (SlotType *slot) |
SlotType * | slot () |
R | emit (P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6) |
R | operator() (P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6) |
Function operator; calls emit(). |
typedef Slot6<R, P1, P2, P3, P4, P5, P6> scim::Signal6< R, P1, P2, P3, P4, P5, P6, Marshal >::SlotType |
Function signature for handlers connecting to the signal.
Connection scim::Signal6< R, P1, P2, P3, P4, P5, P6, Marshal >::connect | ( | SlotType * | slot | ) | [inline] |
Connect a slot to the signal.
slot | - a slot of type Slot6<R, P1, P2, P3, P4, P5, P6>. |
Referenced by scim::Signal6< void, P1, P2, P3, P4, P5, P6, IgnoreMarshal >::connect().
SlotType* scim::Signal6< R, P1, P2, P3, P4, P5, P6, Marshal >::slot | ( | ) | [inline] |
Returns a slot for this signal.
Referenced by scim::Signal6< void, P1, P2, P3, P4, P5, P6, IgnoreMarshal >::emit(), and scim::Signal6< R, P1, P2, P3, P4, P5, P6, Marshal >::emit().
R scim::Signal6< R, P1, P2, P3, P4, P5, P6, Marshal >::emit | ( | P1 | p1, | |
P2 | p2, | |||
P3 | p3, | |||
P4 | p4, | |||
P5 | p5, | |||
P6 | p6 | |||
) | [inline] |
Emit the signal.
p1 | - passes p1 to the signal handler. | |
p2 | - passes p2 to the signal handler. | |
p3 | - passes p3 to the signal handler. | |
p4 | - passes p4 to the signal handler. | |
p5 | - passes p5 to the signal handler. | |
p6 | - passes p6 to the signal handler. |
References scim::Slot6< R, P1, P2, P3, P4, P5, P6 >::call(), scim::Signal::connection_list, and scim::Signal6< R, P1, P2, P3, P4, P5, P6, Marshal >::slot().
Referenced by scim::Signal6< void, P1, P2, P3, P4, P5, P6, IgnoreMarshal >::operator()(), and scim::Signal6< R, P1, P2, P3, P4, P5, P6, Marshal >::operator()().
R scim::Signal6< R, P1, P2, P3, P4, P5, P6, Marshal >::operator() | ( | P1 | p1, | |
P2 | p2, | |||
P3 | p3, | |||
P4 | p4, | |||
P5 | p5, | |||
P6 | p6 | |||
) | [inline] |
Function operator; calls emit().
References scim::Signal6< R, P1, P2, P3, P4, P5, P6, Marshal >::emit().