Package: gdk

Function gdk:screen-setting

Lambda List

gdk:screen-setting (screen name gtype)

Arguments

screen -- a gdk:screen object where the setting is located
name -- a string with the name of the setting
gtype -- a string with the g:type-t type ID of the setting

Return Value

The value of the setting, or nil if the setting does not exist.

Details

Retrieves a desktop wide setting such as double-click time for the screen. See the gtk:settings class for the available settings.

Examples

(let ((screen (gdk:display-default-screen (gdk:display-default))))
  (gdk:screen-setting screen "gtk-double-click-time" "gint"))
=> 400    
 

See also

2024-6-27