Home
last modified time | relevance | path

Searched refs:STB_TEXTEDIT_STRING (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/imgui/
Dimstb_textedit.h396 static int stb_text_locate_coord(STB_TEXTEDIT_STRING *str, float x, float y) in stb_text_locate_coord()
456 static void stb_textedit_click(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, float x, float y) in stb_textedit_click()
474 static void stb_textedit_drag(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, float x, float y) in stb_textedit_drag()
500 static void stb_text_undo(STB_TEXTEDIT_STRING *str, STB_TexteditState *state);
501 static void stb_text_redo(STB_TEXTEDIT_STRING *str, STB_TexteditState *state);
502 static void stb_text_makeundo_delete(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, int where,…
504 static void stb_text_makeundo_replace(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, int where…
516 static void stb_textedit_find_charpos(StbFindState *find, STB_TEXTEDIT_STRING *str, int n, int sing… in stb_textedit_find_charpos()
575 static void stb_textedit_clamp(STB_TEXTEDIT_STRING *str, STB_TexteditState *state) in stb_textedit_clamp()
589 static void stb_textedit_delete(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, int where, int … in stb_textedit_delete()
[all …]
Dimgui_widgets.cpp2901 static int STB_TEXTEDIT_STRINGLEN(const STB_TEXTEDIT_STRING* obj) {… in STB_TEXTEDIT_STRINGLEN()
2902 static ImWchar STB_TEXTEDIT_GETCHAR(const STB_TEXTEDIT_STRING* obj, int idx) {… in STB_TEXTEDIT_GETCHAR()
2903 static float STB_TEXTEDIT_GETWIDTH(STB_TEXTEDIT_STRING* obj, int line_start_idx, int char_idx) {… in STB_TEXTEDIT_GETWIDTH()
2906 static void STB_TEXTEDIT_LAYOUTROW(StbTexteditRow* r, STB_TEXTEDIT_STRING* obj, int line_start_i… in STB_TEXTEDIT_LAYOUTROW()
2920 static int is_word_boundary_from_right(STB_TEXTEDIT_STRING* obj, int idx) { return idx > 0 ? … in is_word_boundary_from_right()
2921 static int STB_TEXTEDIT_MOVEWORDLEFT_IMPL(STB_TEXTEDIT_STRING* obj, int idx) { idx--; while (idx… in STB_TEXTEDIT_MOVEWORDLEFT_IMPL()
2923 static int is_word_boundary_from_left(STB_TEXTEDIT_STRING* obj, int idx) { return idx > 0 ? … in is_word_boundary_from_left()
2924 static int STB_TEXTEDIT_MOVEWORDRIGHT_IMPL(STB_TEXTEDIT_STRING* obj, int idx) { idx++; int len = … in STB_TEXTEDIT_MOVEWORDRIGHT_IMPL()
2926 static int STB_TEXTEDIT_MOVEWORDRIGHT_IMPL(STB_TEXTEDIT_STRING* obj, int idx) { idx++; int len = … in STB_TEXTEDIT_MOVEWORDRIGHT_IMPL()
2931 static void STB_TEXTEDIT_DELETECHARS(STB_TEXTEDIT_STRING* obj, int pos, int n) in STB_TEXTEDIT_DELETECHARS()
[all …]
Dimgui_internal.h102 #undef STB_TEXTEDIT_STRING
104 #define STB_TEXTEDIT_STRING ImGuiInputTextState macro