Lines Matching defs:message

25 //	Description:	A special event that sends a message when executed.
34 \brief A special event that sends a message when executed.
54 May be \c NULL, then \a fMessenger specifies the message target.
59 /*! \brief Creates a new MessageEvent with a target BHandler and a message
65 \param time The time at which the message shall be sent.
66 \param handler The BHandler to which the message shall be delivered.
67 \param command The "what" field of the message to be sent.
78 /*! \brief Creates a new MessageEvent with a target BHandler and a message.
80 The caller retains ownership of the supplied message. It can savely be
86 \param time The time at which the message shall be sent.
87 \param handler The BHandler to which the message shall be delivered.
88 \param message The message to be sent.
91 const BMessage *message)
93 fMessage(*message),
100 /*! \brief Creates a new MessageEvent with a target BMessenger and a message
102 \param time The time at which the message shall be sent.
103 \param messenger The BMessenger specifying the target to which the message
105 \param command The "what" field of the message to be sent.
117 /*! \brief Creates a new MessageEvent with a target BMessenger and a message.
119 The caller retains ownership of the supplied message. It can savely be
122 \param time The time at which the message shall be sent.
123 \param messenger The BMessenger specifying the target to which the message
125 \param message The message to be sent.
128 const BMessage *message)
130 fMessage(*message),
146 Implements Event. Delivers the message to the target.