Efl.Input.Key.key_name

Description

Name string of the physical key that produced this event.

This typically matches what is printed on the key. For example, "1" or "a". Note that both "a" and "A" are obtained with the same physical key, so both events will have the same Efl.Input.Key.key_name "a" but different Efl.Input.Key.key_sym.

Commonly used in keyboard remapping menus to uniquely identify a physical key.

Since 1.23

Values

  • val - Name of the key that produced this event.

Signature

@property key_name {
    get {}
    set {}
    values {
        val: string;
    }
}

C signature

const char *efl_input_key_name_get(const Eo *obj);
void efl_input_key_name_set(Eo *obj, const char *val);

Implemented by