Package: gtk

Function gtk:widget-list-mnemonic-labels

Lambda List

gtk:widget-list-mnemonic-labels (widget)

Arguments

widget -- a gtk:widget object

Return Value

The list of gtk:widget objects with the mnemonic labels.

Details

Returns a list of the widgets, normally labels, for which this widget is the target of a mnemonic. See for example the gtk:label-mnemonic-widget function for more information about mnemonic labels.

Examples

(setq button (gtk:button-new-with-mnemonic "_Hello"))
=> #<GTK-BUTTON {C2794C9}>
(gtk:widget-list-mnemonic-labels button)
=> (#<GTK-LABEL {C292FE1}>)    
 

See also

2025-2-13