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

Details

Accessor of the authors slot of the gtk:about-dialog class. The gtk:about-dialog-authors function returns the strings which are displayed in the credits page. The (setf gtk:about-dialog-authors) function sets the 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

2024-4-11