Package: gtk
Accessor gtk:actionable-action-name
Lambda Listgtk:actionable-action-name (object) SyntaxArgumentsDetails The accessor for the action-name slot of the gtk:actionable inferface gets or sets the name of the action with which object should be associated. If the name argument is nil then the widget will be unassociated
from any previous action. Usually this function is used when the widget is
located, or will be located, within the hierarchy of a gtk:application-window widget. Names are of the form "win.save" or "app.quit" for actions on the containing gtk:application-window widget or its associated gtk:application instance, respectively. This is the same form used for actions in the g:menu object associated with the window. Examples(let ((button (make-instance 'gtk:button))) (setf (gtk:actionable-action-name button) "win.save") (gtk:actionable-action-name button)) => "win.save" | See also |
2025-08-12