QObject.signal

Returns the set of signals with given name and optionally filtered by parameter types. All signals are used, if no parameter types are given. Otherwise the parameter types have to match.

template signal(string name, Params...)
extern (D)
signal
(
this T
)
()

Members

Functions

signal
auto signal()
Undocumented in source. Be warned that the author may not have intended to support it.

Parameters

name

The signal name.

Params

Parameter types for the signal.

Return Value

Set of signals, which can be used with connect.

Meta