Package: gtk
Class gtk:string-list
SuperclassesDocumented Subclasses
None
Direct SlotsDetails The gtk:string-list class is a list model that wraps an array of
strings. The objects in the model have a string property. The gtk:string-list object is well-suited for any place where you would
typically use a string, but need a list model. GtkStringList as GtkBuildable<object class="GtkStringList"> <items> <item translatable="yes">Factory</item> <item translatable="yes">Home</item> <item translatable="yes">Subway</item> </items> </object> Examples(create-list-of-gtk-symbols () (let ((model (gtk:string-list-new '()))) (do-external-symbols (symbol (find-package "GTK")) (gtk:string-list-append model (string-downcase (format nil "~a" symbol)))) ...)) | Returned bySlot Access FunctionsInherited Slot Access FunctionsSee also |
2025-3-29