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 strings for the authors of the program

Details

The accessor for the authors slot gets or sets the strings which are displayed in the authors tab of the secondary credits dialog.

Examples

(setq about (make-instance 'gtk:about-dialog))
=> ABOUT
(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

2026-06-06