QObject.slot

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

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

Members

Functions

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

Parameters

name

The slot name.

Params

Parameter types for the slot.

Return Value

Set of slots, which can be used with connect.

Meta