Lines Matching defs:nk_keys
736 enum nk_keys {
809 /// void nk_input_key(struct nk_context*, enum nk_keys key, int down);
815 /// __key__ | Must be any value specified in enum `nk_keys` that needs to be mirrored
818 NK_API void nk_input_key(struct nk_context*, enum nk_keys, int down);
4643 NK_API int nk_input_is_key_pressed(const struct nk_input*, enum nk_keys);
4644 NK_API int nk_input_is_key_released(const struct nk_input*, enum nk_keys);
4645 NK_API int nk_input_is_key_down(const struct nk_input*, enum nk_keys);
5860 NK_LIB void nk_textedit_key(struct nk_text_edit *state, enum nk_keys key, int shift_mod, const struct nk_user_font *font, float row_height);
13990 nk_input_key(struct nk_context *ctx, enum nk_keys key, int down)
14162 nk_input_is_key_pressed(const struct nk_input *i, enum nk_keys key)
14172 nk_input_is_key_released(const struct nk_input *i, enum nk_keys key)
14182 nk_input_is_key_down(const struct nk_input *i, enum nk_keys key)
22096 nk_textedit_key(struct nk_text_edit *state, enum nk_keys key, int shift_mod,
22963 if (nk_input_is_key_pressed(in, (enum nk_keys)i)) {
22964 nk_textedit_key(edit, (enum nk_keys)i, shift_mod, font, row_height);