Package: gtk
Accessor gtk:about-dialog-authors
Lambda Listgtk:about-dialog-authors (object) SyntaxArgumentsDetails The accessor for the authors slot of the gtk:about-dialog class gets or sets the authors of the program, as
a list of strings.
Each string may contain email addresses and URLs, which will be displayed as
links. Examples(setq about (make-instance 'gtk:about-dialog)) => #<GTK:ABOUT-DIALOG {1009A9FF83}> (setf (gtk:about-dialog-artists about) (list "first author" "second author")) => ("first author" "second author") (gtk:about-dialog-artists about) => ("first author" "second author") | See also |
2025-07-29