Package: gobject

Function g-object-class-list-properties

Lambda List

g-object-class-list-properties (gtype)

Arguments

gtype -- a g-type type ID of an object class

Return Value

A list of g-param-spec instances.

Details

Gets a list of g-param-spec instances for all properties of an object class type.

Example

(mapcar #'g-param-spec-name
        (g-object-class-list-properties "GtkApplication"))
=> ("application-id" "flags" "resource-base-path" "is-registered"
    "is-remote" "inactivity-timeout" "action-group" "is-busy"
    "register-session" "screensaver-active" "app-menu" "menubar"
    "active-window")    
 

See also

2021-9-11