Package: gdk

Function gdk:keyval-convert-case

Lambda List

gdk:keyval-convert-case (keyval)

Syntax

(gdk:keyval-convert-case keyval) => lower, upper

Arguments

keyval -- an unsigned integer for the key value
lower -- an unsigned integer for the lowercase version of keyval
upper -- an unsigned integer for the uppercase verson of keyval

Details

Obtains the upper-case and lower-case versions of the key value.

Examples

(mapcar #'gdk:keyval-name
        (multiple-value-list (gdk:keyval-convert-case 65)))
=> ("a" "A")    
 

See also

2026-08-01