2017-10-21 01:54:36 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/** Disconnect from a signal.
|
2022-07-05 10:37:14 +02:00
|
|
|
*
|
2017-10-21 01:54:36 +02:00
|
|
|
* @tparam string name The name of the signal.
|
|
|
|
* @tparam function func The callback that should be disconnected.
|
2019-06-08 01:08:05 +02:00
|
|
|
* @staticfct disconnect_signal
|
2022-07-05 10:37:14 +02:00
|
|
|
* @noreturn
|
2017-10-21 01:54:36 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/** Emit a signal.
|
|
|
|
*
|
|
|
|
* @tparam string name The name of the signal.
|
|
|
|
* @param ... Extra arguments for the callback functions. Each connected
|
|
|
|
* function receives the object as first argument and then any extra
|
|
|
|
* arguments that are given to emit_signal().
|
2019-06-08 01:08:05 +02:00
|
|
|
* @staticfct emit_signal
|
2022-07-05 10:37:14 +02:00
|
|
|
* @noreturn
|
2017-10-21 01:54:36 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/** Connect to a signal.
|
|
|
|
* @tparam string name The name of the signal.
|
|
|
|
* @tparam function func The callback to call when the signal is emitted.
|
2019-06-08 01:08:05 +02:00
|
|
|
* @staticfct connect_signal
|
2022-07-05 10:37:14 +02:00
|
|
|
* @noreturn
|
2017-10-21 01:54:36 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|