Package: gio

Function g-themed-icon-new-with-default-fallbacks

Lambda List

g-themed-icon-new-with-default-fallbacks (name)

Arguments

name -- a string containing an icon name

Return Value

A new g-themed-icon object.

Details

Creates a new themed icon for name, and all the names that can be created by shortening iconname at '-' characters.

Example

In the following example, icon1 and icon2 are equivalent:
(let* ((names (list "gnome-dev-cdrom-audio"
                    "gnome-dev-cdrom"
                    "gnome-dev"
                    "gnome"))
       (icon1 (g-themed-icon-new-from-names names))
       (icon2 (g-themed-icon-new-with-default-fallbacks
                "gnome-dev-cdrom-audio")))
  ... )    
 

See also

*2021-12-22