|
| typedef void( | FunctionType )(P...) |
| |
| using | ParentType = SignalF< FunctionType > |
| |
| using | OnSubscribers = typename ParentType::OnSubscribers |
| |
| using | FunctionType = void(P...) |
| |
| using | OnSubscribers = boost::function< void(bool)> |
| |
| | Signal (OnSubscribers onSubscribers=OnSubscribers()) |
| |
| | SignalF (OnSubscribers onSubscribers=OnSubscribers()) |
| |
| virtual qi::Signature | signature () const |
| |
| SignalSubscriber & | connect (...) |
| |
| | SignalBase (const Signature &signature, OnSubscribers onSubscribers=OnSubscribers()) |
| |
| | SignalBase (OnSubscribers onSubscribers=OnSubscribers()) |
| |
| virtual | ~SignalBase () |
| |
| template<typename F > |
| SignalSubscriber & | connect (boost::function< F > func) |
| |
| SignalSubscriber & | connect (const SignalSubscriber &s) |
| |
| SignalSubscriber & | connect (AnyObject object, const unsigned int slot) |
| |
| SignalSubscriber & | connect (AnyObject object, const std::string &slot) |
| |
| bool | disconnectAll () |
| |
| bool | asyncDisconnectAll () |
| |
| bool | disconnect (const SignalLink &link) |
| |
| bool | asyncDisconnect (const SignalLink &link) |
| |
| virtual void | trigger (const GenericFunctionParameters ¶ms, MetaCallType callType=MetaCallType_Auto) |
| |
| void | setCallType (MetaCallType callType) |
| | Set the MetaCallType used by operator()(). More...
|
| |
| void | operator() (qi::AutoAnyReference p1=qi::AutoAnyReference(), qi::AutoAnyReference p2=qi::AutoAnyReference(), qi::AutoAnyReference p3=qi::AutoAnyReference(), qi::AutoAnyReference p4=qi::AutoAnyReference(), qi::AutoAnyReference p5=qi::AutoAnyReference(), qi::AutoAnyReference p6=qi::AutoAnyReference(), qi::AutoAnyReference p7=qi::AutoAnyReference(), qi::AutoAnyReference p8=qi::AutoAnyReference()) |
| | Trigger the signal with given arguments, and call type set by setCallType() More...
|
| |
| std::vector< SignalSubscriber > | subscribers () |
| |
| bool | hasSubscribers () |
| |
| void | _setSignature (const Signature &s) |
| |
boost::shared_ptr
< SignalBasePrivate > | _p |
| |
| static const SignalLink | invalidSignalLink |
| |
| using | Trigger = boost::function< void(const GenericFunctionParameters ¶ms, MetaCallType callType)> |
| |
| void | callSubscribers (const GenericFunctionParameters ¶ms, MetaCallType callType=MetaCallType_Auto) |
| |
| void | setTriggerOverride (Trigger trigger) |
| |
| void | setOnSubscribers (OnSubscribers onSubscribers) |
| |
| void | callOnSubscribe (bool v) |
| |
| void | createNewTrackLink (int &id, SignalLink *&trackLink) |
| |
| void | disconnectTrackLink (int id) |
| |
template<>
class qi::Signal< void >
Definition at line 190 of file signal.hpp.