Package: gobject
Function gobject:signal-name
Lambda Listgobject:signal-name (id) ArgumentsReturn ValueThe string with the signal name, or nil if the signal number was invalid. Details
Given the identifier of the signal, finds its name.
Two different signals may have the same name, if they have differing types. Examples(g:signal-lookup "startup" "GApplication") => 95 (g:signal-name *) => "startup"List the IDs for an application object and retrieves the names of the signals: (g:signal-list-ids "GApplication") => (97 95 96 98 99 100 101) (mapcar #'g:signal-name *) => ("activate" "startup" "shutdown" "open" "command-line" "handle-local-options" "name-lost") | See also |
2024-6-19