Package: gtk
Class gtk-about-dialog
Superclassesgtk-dialog, gtk-window, gtk-bin, gtk-container, gtk-widget, gtk-buildable, g-object, common-lisp:standard-object, common-lisp:t Documented Subclasses
None
Direct SlotsDetails The gtk-about-dialog widget offers a simple way to display information
about a program like its logo, name, copyright, website and license.
It is also possible to give credits to the authors, documenters, translators
and artists who have worked on the program. The about dialog is typically
opened when the user selects the About option from the Help menu. All parts
of the about dialog are optional. The about dialog often contain links and email addresses. The about dialog displays these as clickable links. By default, it calls the gtk-show-uri function when a user clicks one. The behaviour can be overridden with the "activate-link" signal. To make constructing an about dialog as convenient as possible, you can use the gtk-show-about-dialog function which constructs and shows an about dialog and keeps it around so that it can be shown again. Note that GTK sets a default title of "About %s" on the about dialog window where %s is replaced by the name of the application, but in order to ensure proper translation of the title, applications should set the title property explicitly when constructing a gtk-about-dialog widget, as shown in the following example: (gtk-show-about-dialog nil :program-name "ExampleCode" :logo example-logo :title "About ExampleCode")It is also possible to show a gtk-about-dialog widget like any other gtk-dialog widget, e.g. using the gtk-dialog-run function. In this case, you might need to know that the "Close" button returns the :cancel response ID. Signal DetailsThe "activate-link" signallambda (dialog uri) :run-lastThe signal which gets emitted to activate a URI. Applications may connect to it to override the default behaviour, which is to call the gtk-show-uri function.
| Slot Access FunctionsInherited Slot Access FunctionsSee also |
*2021-12-3