Package: gobject

Function gobject:signal-list-ids

Lambda List

gobject:signal-list-ids (itype)

Arguments

itype -- a g:type-t type ID

Return Value

The list of unsigned integer with the signal IDs.

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.

Examples

Get the IDs for a window widget in and show the names of the signals:
(mapcar #'g:signal-name (g:signal-list-ids "GApplication"))
=> ("activate" "startup" "shutdown" "open" "command-line"
    "handle-local-options" "name-lost")    
 

See also

2024-6-19