Home
last modified time | relevance | path

Searched refs:KeyMap (Results 1 – 25 of 33) sorted by relevance

12

/third_party/skia/third_party/externals/imgui/backends/
Dimgui_impl_android.cpp127 io.KeyMap[ImGuiKey_Tab] = AKEYCODE_TAB; in ImGui_ImplAndroid_Init()
128 io.KeyMap[ImGuiKey_LeftArrow] = AKEYCODE_DPAD_LEFT; // also covers physical keyboard arrow key in ImGui_ImplAndroid_Init()
129 io.KeyMap[ImGuiKey_RightArrow] = AKEYCODE_DPAD_RIGHT; // also covers physical keyboard arrow key in ImGui_ImplAndroid_Init()
130 io.KeyMap[ImGuiKey_UpArrow] = AKEYCODE_DPAD_UP; // also covers physical keyboard arrow key in ImGui_ImplAndroid_Init()
131 io.KeyMap[ImGuiKey_DownArrow] = AKEYCODE_DPAD_DOWN; // also covers physical keyboard arrow key in ImGui_ImplAndroid_Init()
132 io.KeyMap[ImGuiKey_PageUp] = AKEYCODE_PAGE_UP; in ImGui_ImplAndroid_Init()
133 io.KeyMap[ImGuiKey_PageDown] = AKEYCODE_PAGE_DOWN; in ImGui_ImplAndroid_Init()
134 io.KeyMap[ImGuiKey_Home] = AKEYCODE_MOVE_HOME; in ImGui_ImplAndroid_Init()
135 io.KeyMap[ImGuiKey_End] = AKEYCODE_MOVE_END; in ImGui_ImplAndroid_Init()
136 io.KeyMap[ImGuiKey_Insert] = AKEYCODE_INSERT; in ImGui_ImplAndroid_Init()
[all …]
Dimgui_impl_glut.cpp53 io.KeyMap[ImGuiKey_Tab] = '\t'; // == 9 == CTRL+I in ImGui_ImplGLUT_Init()
54 io.KeyMap[ImGuiKey_LeftArrow] = 256 + GLUT_KEY_LEFT; in ImGui_ImplGLUT_Init()
55 io.KeyMap[ImGuiKey_RightArrow] = 256 + GLUT_KEY_RIGHT; in ImGui_ImplGLUT_Init()
56 io.KeyMap[ImGuiKey_UpArrow] = 256 + GLUT_KEY_UP; in ImGui_ImplGLUT_Init()
57 io.KeyMap[ImGuiKey_DownArrow] = 256 + GLUT_KEY_DOWN; in ImGui_ImplGLUT_Init()
58 io.KeyMap[ImGuiKey_PageUp] = 256 + GLUT_KEY_PAGE_UP; in ImGui_ImplGLUT_Init()
59 io.KeyMap[ImGuiKey_PageDown] = 256 + GLUT_KEY_PAGE_DOWN; in ImGui_ImplGLUT_Init()
60 io.KeyMap[ImGuiKey_Home] = 256 + GLUT_KEY_HOME; in ImGui_ImplGLUT_Init()
61 io.KeyMap[ImGuiKey_End] = 256 + GLUT_KEY_END; in ImGui_ImplGLUT_Init()
62 io.KeyMap[ImGuiKey_Insert] = 256 + GLUT_KEY_INSERT; in ImGui_ImplGLUT_Init()
[all …]
Dimgui_impl_marmalade.cpp226 io.KeyMap[ImGuiKey_Tab] = s3eKeyTab in ImGui_Marmalade_Init()
227 io.KeyMap[ImGuiKey_LeftArrow] = s3eKeyLeft; in ImGui_Marmalade_Init()
228 io.KeyMap[ImGuiKey_RightArrow] = s3eKeyRight; in ImGui_Marmalade_Init()
229 io.KeyMap[ImGuiKey_UpArrow] = s3eKeyUp; in ImGui_Marmalade_Init()
230 io.KeyMap[ImGuiKey_DownArrow] = s3eKeyDown; in ImGui_Marmalade_Init()
231 io.KeyMap[ImGuiKey_PageUp] = s3eKeyPageUp; in ImGui_Marmalade_Init()
232 io.KeyMap[ImGuiKey_PageDown] = s3eKeyPageDown; in ImGui_Marmalade_Init()
233 io.KeyMap[ImGuiKey_Home] = s3eKeyHome; in ImGui_Marmalade_Init()
234 io.KeyMap[ImGuiKey_End] = s3eKeyEnd; in ImGui_Marmalade_Init()
235 io.KeyMap[ImGuiKey_Insert] = s3eKeyInsert; in ImGui_Marmalade_Init()
[all …]
Dimgui_impl_sdl.cpp195 io.KeyMap[ImGuiKey_Tab] = SDL_SCANCODE_TAB; in ImGui_ImplSDL2_Init()
196 io.KeyMap[ImGuiKey_LeftArrow] = SDL_SCANCODE_LEFT; in ImGui_ImplSDL2_Init()
197 io.KeyMap[ImGuiKey_RightArrow] = SDL_SCANCODE_RIGHT; in ImGui_ImplSDL2_Init()
198 io.KeyMap[ImGuiKey_UpArrow] = SDL_SCANCODE_UP; in ImGui_ImplSDL2_Init()
199 io.KeyMap[ImGuiKey_DownArrow] = SDL_SCANCODE_DOWN; in ImGui_ImplSDL2_Init()
200 io.KeyMap[ImGuiKey_PageUp] = SDL_SCANCODE_PAGEUP; in ImGui_ImplSDL2_Init()
201 io.KeyMap[ImGuiKey_PageDown] = SDL_SCANCODE_PAGEDOWN; in ImGui_ImplSDL2_Init()
202 io.KeyMap[ImGuiKey_Home] = SDL_SCANCODE_HOME; in ImGui_ImplSDL2_Init()
203 io.KeyMap[ImGuiKey_End] = SDL_SCANCODE_END; in ImGui_ImplSDL2_Init()
204 io.KeyMap[ImGuiKey_Insert] = SDL_SCANCODE_INSERT; in ImGui_ImplSDL2_Init()
[all …]
Dimgui_impl_allegro5.cpp303 io.KeyMap[ImGuiKey_Tab] = ALLEGRO_KEY_TAB; in ImGui_ImplAllegro5_Init()
304 io.KeyMap[ImGuiKey_LeftArrow] = ALLEGRO_KEY_LEFT; in ImGui_ImplAllegro5_Init()
305 io.KeyMap[ImGuiKey_RightArrow] = ALLEGRO_KEY_RIGHT; in ImGui_ImplAllegro5_Init()
306 io.KeyMap[ImGuiKey_UpArrow] = ALLEGRO_KEY_UP; in ImGui_ImplAllegro5_Init()
307 io.KeyMap[ImGuiKey_DownArrow] = ALLEGRO_KEY_DOWN; in ImGui_ImplAllegro5_Init()
308 io.KeyMap[ImGuiKey_PageUp] = ALLEGRO_KEY_PGUP; in ImGui_ImplAllegro5_Init()
309 io.KeyMap[ImGuiKey_PageDown] = ALLEGRO_KEY_PGDN; in ImGui_ImplAllegro5_Init()
310 io.KeyMap[ImGuiKey_Home] = ALLEGRO_KEY_HOME; in ImGui_ImplAllegro5_Init()
311 io.KeyMap[ImGuiKey_End] = ALLEGRO_KEY_END; in ImGui_ImplAllegro5_Init()
312 io.KeyMap[ImGuiKey_Insert] = ALLEGRO_KEY_INSERT; in ImGui_ImplAllegro5_Init()
[all …]
Dimgui_impl_glfw.cpp218 io.KeyMap[ImGuiKey_Tab] = GLFW_KEY_TAB; in ImGui_ImplGlfw_Init()
219 io.KeyMap[ImGuiKey_LeftArrow] = GLFW_KEY_LEFT; in ImGui_ImplGlfw_Init()
220 io.KeyMap[ImGuiKey_RightArrow] = GLFW_KEY_RIGHT; in ImGui_ImplGlfw_Init()
221 io.KeyMap[ImGuiKey_UpArrow] = GLFW_KEY_UP; in ImGui_ImplGlfw_Init()
222 io.KeyMap[ImGuiKey_DownArrow] = GLFW_KEY_DOWN; in ImGui_ImplGlfw_Init()
223 io.KeyMap[ImGuiKey_PageUp] = GLFW_KEY_PAGE_UP; in ImGui_ImplGlfw_Init()
224 io.KeyMap[ImGuiKey_PageDown] = GLFW_KEY_PAGE_DOWN; in ImGui_ImplGlfw_Init()
225 io.KeyMap[ImGuiKey_Home] = GLFW_KEY_HOME; in ImGui_ImplGlfw_Init()
226 io.KeyMap[ImGuiKey_End] = GLFW_KEY_END; in ImGui_ImplGlfw_Init()
227 io.KeyMap[ImGuiKey_Insert] = GLFW_KEY_INSERT; in ImGui_ImplGlfw_Init()
[all …]
Dimgui_impl_win32.cpp127 io.KeyMap[ImGuiKey_Tab] = VK_TAB; in ImGui_ImplWin32_Init()
128 io.KeyMap[ImGuiKey_LeftArrow] = VK_LEFT; in ImGui_ImplWin32_Init()
129 io.KeyMap[ImGuiKey_RightArrow] = VK_RIGHT; in ImGui_ImplWin32_Init()
130 io.KeyMap[ImGuiKey_UpArrow] = VK_UP; in ImGui_ImplWin32_Init()
131 io.KeyMap[ImGuiKey_DownArrow] = VK_DOWN; in ImGui_ImplWin32_Init()
132 io.KeyMap[ImGuiKey_PageUp] = VK_PRIOR; in ImGui_ImplWin32_Init()
133 io.KeyMap[ImGuiKey_PageDown] = VK_NEXT; in ImGui_ImplWin32_Init()
134 io.KeyMap[ImGuiKey_Home] = VK_HOME; in ImGui_ImplWin32_Init()
135 io.KeyMap[ImGuiKey_End] = VK_END; in ImGui_ImplWin32_Init()
136 io.KeyMap[ImGuiKey_Insert] = VK_INSERT; in ImGui_ImplWin32_Init()
[all …]
Dimgui_impl_osx.mm119 io.KeyMap[ImGuiKey_Tab] = '\t';
120 io.KeyMap[ImGuiKey_LeftArrow] = NSLeftArrowFunctionKey + offset_for_function_keys;
121 io.KeyMap[ImGuiKey_RightArrow] = NSRightArrowFunctionKey + offset_for_function_keys;
122 io.KeyMap[ImGuiKey_UpArrow] = NSUpArrowFunctionKey + offset_for_function_keys;
123 io.KeyMap[ImGuiKey_DownArrow] = NSDownArrowFunctionKey + offset_for_function_keys;
124 io.KeyMap[ImGuiKey_PageUp] = NSPageUpFunctionKey + offset_for_function_keys;
125 io.KeyMap[ImGuiKey_PageDown] = NSPageDownFunctionKey + offset_for_function_keys;
126 io.KeyMap[ImGuiKey_Home] = NSHomeFunctionKey + offset_for_function_keys;
127 io.KeyMap[ImGuiKey_End] = NSEndFunctionKey + offset_for_function_keys;
128 io.KeyMap[ImGuiKey_Insert] = NSInsertFunctionKey + offset_for_function_keys;
[all …]
/third_party/flutter/skia/third_party/externals/imgui/examples/
Dimgui_impl_freeglut.cpp35 io.KeyMap[ImGuiKey_Tab] = '\t'; // == 9 == CTRL+I in ImGui_ImplFreeGLUT_Init()
36 io.KeyMap[ImGuiKey_LeftArrow] = 256 + GLUT_KEY_LEFT; in ImGui_ImplFreeGLUT_Init()
37 io.KeyMap[ImGuiKey_RightArrow] = 256 + GLUT_KEY_RIGHT; in ImGui_ImplFreeGLUT_Init()
38 io.KeyMap[ImGuiKey_UpArrow] = 256 + GLUT_KEY_UP; in ImGui_ImplFreeGLUT_Init()
39 io.KeyMap[ImGuiKey_DownArrow] = 256 + GLUT_KEY_DOWN; in ImGui_ImplFreeGLUT_Init()
40 io.KeyMap[ImGuiKey_PageUp] = 256 + GLUT_KEY_PAGE_UP; in ImGui_ImplFreeGLUT_Init()
41 io.KeyMap[ImGuiKey_PageDown] = 256 + GLUT_KEY_PAGE_DOWN; in ImGui_ImplFreeGLUT_Init()
42 io.KeyMap[ImGuiKey_Home] = 256 + GLUT_KEY_HOME; in ImGui_ImplFreeGLUT_Init()
43 io.KeyMap[ImGuiKey_End] = 256 + GLUT_KEY_END; in ImGui_ImplFreeGLUT_Init()
44 io.KeyMap[ImGuiKey_Insert] = 256 + GLUT_KEY_INSERT; in ImGui_ImplFreeGLUT_Init()
[all …]
Dimgui_impl_win32.cpp60 io.KeyMap[ImGuiKey_Tab] = VK_TAB; in ImGui_ImplWin32_Init()
61 io.KeyMap[ImGuiKey_LeftArrow] = VK_LEFT; in ImGui_ImplWin32_Init()
62 io.KeyMap[ImGuiKey_RightArrow] = VK_RIGHT; in ImGui_ImplWin32_Init()
63 io.KeyMap[ImGuiKey_UpArrow] = VK_UP; in ImGui_ImplWin32_Init()
64 io.KeyMap[ImGuiKey_DownArrow] = VK_DOWN; in ImGui_ImplWin32_Init()
65 io.KeyMap[ImGuiKey_PageUp] = VK_PRIOR; in ImGui_ImplWin32_Init()
66 io.KeyMap[ImGuiKey_PageDown] = VK_NEXT; in ImGui_ImplWin32_Init()
67 io.KeyMap[ImGuiKey_Home] = VK_HOME; in ImGui_ImplWin32_Init()
68 io.KeyMap[ImGuiKey_End] = VK_END; in ImGui_ImplWin32_Init()
69 io.KeyMap[ImGuiKey_Insert] = VK_INSERT; in ImGui_ImplWin32_Init()
[all …]
Dimgui_impl_sdl.cpp134 io.KeyMap[ImGuiKey_Tab] = SDL_SCANCODE_TAB; in ImGui_ImplSDL2_Init()
135 io.KeyMap[ImGuiKey_LeftArrow] = SDL_SCANCODE_LEFT; in ImGui_ImplSDL2_Init()
136 io.KeyMap[ImGuiKey_RightArrow] = SDL_SCANCODE_RIGHT; in ImGui_ImplSDL2_Init()
137 io.KeyMap[ImGuiKey_UpArrow] = SDL_SCANCODE_UP; in ImGui_ImplSDL2_Init()
138 io.KeyMap[ImGuiKey_DownArrow] = SDL_SCANCODE_DOWN; in ImGui_ImplSDL2_Init()
139 io.KeyMap[ImGuiKey_PageUp] = SDL_SCANCODE_PAGEUP; in ImGui_ImplSDL2_Init()
140 io.KeyMap[ImGuiKey_PageDown] = SDL_SCANCODE_PAGEDOWN; in ImGui_ImplSDL2_Init()
141 io.KeyMap[ImGuiKey_Home] = SDL_SCANCODE_HOME; in ImGui_ImplSDL2_Init()
142 io.KeyMap[ImGuiKey_End] = SDL_SCANCODE_END; in ImGui_ImplSDL2_Init()
143 io.KeyMap[ImGuiKey_Insert] = SDL_SCANCODE_INSERT; in ImGui_ImplSDL2_Init()
[all …]
Dimgui_impl_marmalade.cpp220 …io.KeyMap[ImGuiKey_Tab] = s3eKeyTab; // Keyboard mapping. ImGui will use those… in ImGui_Marmalade_Init()
221 io.KeyMap[ImGuiKey_LeftArrow] = s3eKeyLeft; in ImGui_Marmalade_Init()
222 io.KeyMap[ImGuiKey_RightArrow] = s3eKeyRight; in ImGui_Marmalade_Init()
223 io.KeyMap[ImGuiKey_UpArrow] = s3eKeyUp; in ImGui_Marmalade_Init()
224 io.KeyMap[ImGuiKey_DownArrow] = s3eKeyDown; in ImGui_Marmalade_Init()
225 io.KeyMap[ImGuiKey_PageUp] = s3eKeyPageUp; in ImGui_Marmalade_Init()
226 io.KeyMap[ImGuiKey_PageDown] = s3eKeyPageDown; in ImGui_Marmalade_Init()
227 io.KeyMap[ImGuiKey_Home] = s3eKeyHome; in ImGui_Marmalade_Init()
228 io.KeyMap[ImGuiKey_End] = s3eKeyEnd; in ImGui_Marmalade_Init()
229 io.KeyMap[ImGuiKey_Insert] = s3eKeyInsert; in ImGui_Marmalade_Init()
[all …]
Dimgui_impl_glfw.cpp138 io.KeyMap[ImGuiKey_Tab] = GLFW_KEY_TAB; in ImGui_ImplGlfw_Init()
139 io.KeyMap[ImGuiKey_LeftArrow] = GLFW_KEY_LEFT; in ImGui_ImplGlfw_Init()
140 io.KeyMap[ImGuiKey_RightArrow] = GLFW_KEY_RIGHT; in ImGui_ImplGlfw_Init()
141 io.KeyMap[ImGuiKey_UpArrow] = GLFW_KEY_UP; in ImGui_ImplGlfw_Init()
142 io.KeyMap[ImGuiKey_DownArrow] = GLFW_KEY_DOWN; in ImGui_ImplGlfw_Init()
143 io.KeyMap[ImGuiKey_PageUp] = GLFW_KEY_PAGE_UP; in ImGui_ImplGlfw_Init()
144 io.KeyMap[ImGuiKey_PageDown] = GLFW_KEY_PAGE_DOWN; in ImGui_ImplGlfw_Init()
145 io.KeyMap[ImGuiKey_Home] = GLFW_KEY_HOME; in ImGui_ImplGlfw_Init()
146 io.KeyMap[ImGuiKey_End] = GLFW_KEY_END; in ImGui_ImplGlfw_Init()
147 io.KeyMap[ImGuiKey_Insert] = GLFW_KEY_INSERT; in ImGui_ImplGlfw_Init()
[all …]
Dimgui_impl_allegro5.cpp249 io.KeyMap[ImGuiKey_Tab] = ALLEGRO_KEY_TAB; in ImGui_ImplAllegro5_Init()
250 io.KeyMap[ImGuiKey_LeftArrow] = ALLEGRO_KEY_LEFT; in ImGui_ImplAllegro5_Init()
251 io.KeyMap[ImGuiKey_RightArrow] = ALLEGRO_KEY_RIGHT; in ImGui_ImplAllegro5_Init()
252 io.KeyMap[ImGuiKey_UpArrow] = ALLEGRO_KEY_UP; in ImGui_ImplAllegro5_Init()
253 io.KeyMap[ImGuiKey_DownArrow] = ALLEGRO_KEY_DOWN; in ImGui_ImplAllegro5_Init()
254 io.KeyMap[ImGuiKey_PageUp] = ALLEGRO_KEY_PGUP; in ImGui_ImplAllegro5_Init()
255 io.KeyMap[ImGuiKey_PageDown] = ALLEGRO_KEY_PGDN; in ImGui_ImplAllegro5_Init()
256 io.KeyMap[ImGuiKey_Home] = ALLEGRO_KEY_HOME; in ImGui_ImplAllegro5_Init()
257 io.KeyMap[ImGuiKey_End] = ALLEGRO_KEY_END; in ImGui_ImplAllegro5_Init()
258 io.KeyMap[ImGuiKey_Insert] = ALLEGRO_KEY_INSERT; in ImGui_ImplAllegro5_Init()
[all …]
Dimgui_impl_osx.mm35 io.KeyMap[ImGuiKey_Tab] = '\t';
36 io.KeyMap[ImGuiKey_LeftArrow] = NSLeftArrowFunctionKey + offset_for_function_keys;
37 io.KeyMap[ImGuiKey_RightArrow] = NSRightArrowFunctionKey + offset_for_function_keys;
38 io.KeyMap[ImGuiKey_UpArrow] = NSUpArrowFunctionKey + offset_for_function_keys;
39 io.KeyMap[ImGuiKey_DownArrow] = NSDownArrowFunctionKey + offset_for_function_keys;
40 io.KeyMap[ImGuiKey_PageUp] = NSPageUpFunctionKey + offset_for_function_keys;
41 io.KeyMap[ImGuiKey_PageDown] = NSPageDownFunctionKey + offset_for_function_keys;
42 io.KeyMap[ImGuiKey_Home] = NSHomeFunctionKey + offset_for_function_keys;
43 io.KeyMap[ImGuiKey_End] = NSEndFunctionKey + offset_for_function_keys;
44 io.KeyMap[ImGuiKey_Insert] = NSInsertFunctionKey + offset_for_function_keys;
[all …]
/third_party/flutter/skia/tools/viewer/
DImGuiLayer.cpp31 io.KeyMap[ImGuiKey_Tab] = (int)Window::Key::kTab; in ImGuiLayer()
32 io.KeyMap[ImGuiKey_LeftArrow] = (int)Window::Key::kLeft; in ImGuiLayer()
33 io.KeyMap[ImGuiKey_RightArrow] = (int)Window::Key::kRight; in ImGuiLayer()
34 io.KeyMap[ImGuiKey_UpArrow] = (int)Window::Key::kUp; in ImGuiLayer()
35 io.KeyMap[ImGuiKey_DownArrow] = (int)Window::Key::kDown; in ImGuiLayer()
36 io.KeyMap[ImGuiKey_PageUp] = (int)Window::Key::kPageUp; in ImGuiLayer()
37 io.KeyMap[ImGuiKey_PageDown] = (int)Window::Key::kPageDown; in ImGuiLayer()
38 io.KeyMap[ImGuiKey_Home] = (int)Window::Key::kHome; in ImGuiLayer()
39 io.KeyMap[ImGuiKey_End] = (int)Window::Key::kEnd; in ImGuiLayer()
40 io.KeyMap[ImGuiKey_Delete] = (int)Window::Key::kDelete; in ImGuiLayer()
[all …]
/third_party/skia/tools/viewer/
DImGuiLayer.cpp45 io.KeyMap[ImGuiKey_Tab] = (int)skui::Key::kTab; in ImGuiLayer()
46 io.KeyMap[ImGuiKey_LeftArrow] = (int)skui::Key::kLeft; in ImGuiLayer()
47 io.KeyMap[ImGuiKey_RightArrow] = (int)skui::Key::kRight; in ImGuiLayer()
48 io.KeyMap[ImGuiKey_UpArrow] = (int)skui::Key::kUp; in ImGuiLayer()
49 io.KeyMap[ImGuiKey_DownArrow] = (int)skui::Key::kDown; in ImGuiLayer()
50 io.KeyMap[ImGuiKey_PageUp] = (int)skui::Key::kPageUp; in ImGuiLayer()
51 io.KeyMap[ImGuiKey_PageDown] = (int)skui::Key::kPageDown; in ImGuiLayer()
52 io.KeyMap[ImGuiKey_Home] = (int)skui::Key::kHome; in ImGuiLayer()
53 io.KeyMap[ImGuiKey_End] = (int)skui::Key::kEnd; in ImGuiLayer()
54 io.KeyMap[ImGuiKey_Delete] = (int)skui::Key::kDelete; in ImGuiLayer()
[all …]
/third_party/boost/tools/build/src/engine/
Dw32_getreg.cpp28 } KeyMap; typedef
30 static const KeyMap dlRootKeys[] = {
42 const KeyMap *p; in get_key()
/third_party/cef/libcef/common/
Dcrash_reporter_client.h108 using KeyMap = std::map<std::string, std::pair<KeySize, size_t>>; variable
109 KeyMap crash_keys_;
Dcrash_reporter_client.cc777 KeyMap::const_iterator it = crash_keys_.find(NormalizeCrashKey(key)); in SetCrashKeyValue()
/third_party/cef/libcef/browser/net/
Dchrome_scheme_handler.cc259 KeyMap::const_iterator it = values_.find(key); in Parse()
287 using KeyMap = std::map<std::string, std::string>; typedef in scheme::__anon24f606c10111::TemplateParser
288 KeyMap values_;
/third_party/mesa3d/src/intel/tools/imgui/
Dimgui_impl_gtk3.cpp196 io.KeyMap[i] = i; in ImGui_ImplGtk3_Init()
/third_party/flutter/skia/third_party/externals/imgui/
Dimgui.cpp1149 KeyMap[i] = -1; in ImGuiIO()
3312 …IM_ASSERT(g.IO.KeyMap[n] >= -1 && g.IO.KeyMap[n] < IM_ARRAYSIZE(g.IO.KeysDown) && "io.KeyMap[] con… in NewFrame()
3316 …IM_ASSERT(g.IO.KeyMap[ImGuiKey_Space] != -1 && "ImGuiKey_Space is not mapped, required for keyboar… in NewFrame()
3964 return GImGui->IO.KeyMap[imgui_key]; in GetKeyIndex()
7090 …ast = (ImGuiDir)((g.NavMoveDirLast + 1) & 3); g.IO.KeysDownDuration[g.IO.KeyMap[ImGuiKey_C]] = 0.0… in NavScoreItem()
7443 …#define NAV_MAP_KEY(_KEY, _NAV_INPUT) if (IsKeyDown(g.IO.KeyMap[_KEY])) { g.IO.NavInputs[_NAV_INPU… in NavUpdate()
7750 …bool page_up_held = IsKeyDown(g.IO.KeyMap[ImGuiKey_PageUp]) && (allowed_dir_flags & (1 << ImGuiDir… in NavUpdatePageUpPageDown()
7751 …bool page_down_held = IsKeyDown(g.IO.KeyMap[ImGuiKey_PageDown]) && (allowed_dir_flags & (1 << ImGu… in NavUpdatePageUpPageDown()
7757 if (IsKeyPressed(g.IO.KeyMap[ImGuiKey_PageUp], true)) in NavUpdatePageUpPageDown()
7759 else if (IsKeyPressed(g.IO.KeyMap[ImGuiKey_PageDown], true)) in NavUpdatePageUpPageDown()
[all …]
/third_party/mesa3d/src/imgui/
Dimgui.cpp1160 KeyMap[i] = -1; in ImGuiIO()
3377 …IM_ASSERT(g.IO.KeyMap[n] >= -1 && g.IO.KeyMap[n] < IM_ARRAYSIZE(g.IO.KeysDown) && "io.KeyMap[] con… in NewFrame()
3381 …IM_ASSERT(g.IO.KeyMap[ImGuiKey_Space] != -1 && "ImGuiKey_Space is not mapped, required for keyboar… in NewFrame()
4026 return GImGui->IO.KeyMap[imgui_key]; in GetKeyIndex()
7233 …ast = (ImGuiDir)((g.NavMoveDirLast + 1) & 3); g.IO.KeysDownDuration[g.IO.KeyMap[ImGuiKey_C]] = 0.0… in NavScoreItem()
7588 …#define NAV_MAP_KEY(_KEY, _NAV_INPUT) if (IsKeyDown(g.IO.KeyMap[_KEY])) { g.IO.NavInputs[_NAV_INPU… in NavUpdate()
7901 …bool page_up_held = IsKeyDown(g.IO.KeyMap[ImGuiKey_PageUp]) && (allowed_dir_flags & (1 << ImGuiDir… in NavUpdatePageUpPageDown()
7902 …bool page_down_held = IsKeyDown(g.IO.KeyMap[ImGuiKey_PageDown]) && (allowed_dir_flags & (1 << ImGu… in NavUpdatePageUpPageDown()
7908 if (IsKeyPressed(g.IO.KeyMap[ImGuiKey_PageUp], true)) in NavUpdatePageUpPageDown()
7910 else if (IsKeyPressed(g.IO.KeyMap[ImGuiKey_PageDown], true)) in NavUpdatePageUpPageDown()
[all …]
/third_party/skia/third_party/externals/imgui/
Dimgui.cpp1088 KeyMap[i] = -1; in ImGuiIO()
4668 return g.IO.KeyMap[imgui_key]; in GetKeyIndex()
7272 …IM_ASSERT(g.IO.KeyMap[n] >= -1 && g.IO.KeyMap[n] < IM_ARRAYSIZE(g.IO.KeysDown) && "io.KeyMap[] con… in ErrorCheckNewFrameSanityChecks()
7276 …IM_ASSERT(g.IO.KeyMap[ImGuiKey_Space] != -1 && "ImGuiKey_Space is not mapped, required for keyboar… in ErrorCheckNewFrameSanityChecks()
9294 …#define NAV_MAP_KEY(_KEY, _NAV_INPUT) do { if (IsKeyDown(io.KeyMap[_KEY])) { io.NavInputs[_NAV_IN… in NavUpdate()
9714 …const bool page_up_held = IsKeyDown(io.KeyMap[ImGuiKey_PageUp]) && !IsActiveIdUsingKey(ImGuiKey_Pa… in NavUpdatePageUpPageDown()
9715 …const bool page_down_held = IsKeyDown(io.KeyMap[ImGuiKey_PageDown]) && !IsActiveIdUsingKey(ImGuiKe… in NavUpdatePageUpPageDown()
9716 …const bool home_pressed = IsKeyPressed(io.KeyMap[ImGuiKey_Home]) && !IsActiveIdUsingKey(ImGuiKey_H… in NavUpdatePageUpPageDown()
9717 …const bool end_pressed = IsKeyPressed(io.KeyMap[ImGuiKey_End]) && !IsActiveIdUsingKey(ImGuiKey_End… in NavUpdatePageUpPageDown()
9724 if (IsKeyPressed(io.KeyMap[ImGuiKey_PageUp], true)) in NavUpdatePageUpPageDown()
[all …]

12