Package: gtk

Accessor gtk:about-dialog-authors

Lambda List

gtk:about-dialog-authors (object)

Syntax

(gtk:about-dialog-authors object) => authors
(setf (gtk:about-dialog-authors object) authors)

Arguments

object -- a gtk:about-dialog widget
authors -- a list of string for the authors of the program

Details

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