Package: gobject

Function g-signal-list-ids

Lambda List

g-signal-list-ids (itype)

Arguments

itype -- an instance or interface g-type

Return Value

A list of signal IDs of type unsigned integer.

Details

Lists the signals by ID that a certain instance or interface type created. Further information about the signals can be acquired through the g-signal-query function.

Example

Get the IDs for a window widget and show the names of the signals:
(mapcar #'g-signal-name (g-signal-list-ids "GtkWindow"))
=> ("keys-changed" "set-focus" "activate-focus" "activate-default"
    "enable-debugging")    
 

See also

2022-7-17