MCPcopy Create free account
hub / github.com/KebsCS/KBotExt / DebugRenderKeyboardPreview

Method DebugRenderKeyboardPreview

KBotExt/imgui/imgui.cpp:13514–13560  ·  view source on GitHub ↗

Draw an arbitrary US keyboard layout to visualize translated keys

Source from the content-addressed store, hash-verified

13512
13513// Draw an arbitrary US keyboard layout to visualize translated keys
13514void ImGui::DebugRenderKeyboardPreview(ImDrawList* draw_list)
13515{
13516 const ImVec2 key_size = ImVec2(35.0f, 35.0f);
13517 const float key_rounding = 3.0f;
13518 const ImVec2 key_face_size = ImVec2(25.0f, 25.0f);
13519 const ImVec2 key_face_pos = ImVec2(5.0f, 3.0f);
13520 const float key_face_rounding = 2.0f;
13521 const ImVec2 key_label_pos = ImVec2(7.0f, 4.0f);
13522 const ImVec2 key_step = ImVec2(key_size.x - 1.0f, key_size.y - 1.0f);
13523 const float key_row_offset = 9.0f;
13524
13525 ImVec2 board_min = GetCursorScreenPos();
13526 ImVec2 board_max = ImVec2(board_min.x + 3 * key_step.x + 2 * key_row_offset + 10.0f, board_min.y + 3 * key_step.y + 10.0f);
13527 ImVec2 start_pos = ImVec2(board_min.x + 5.0f - key_step.x, board_min.y);
13528
13529 struct KeyLayoutData { int Row, Col; const char* Label; ImGuiKey Key; };
13530 const KeyLayoutData keys_to_display[] =
13531 {
13532 { 0, 0, "", ImGuiKey_Tab }, { 0, 1, "Q", ImGuiKey_Q }, { 0, 2, "W", ImGuiKey_W }, { 0, 3, "E", ImGuiKey_E }, { 0, 4, "R", ImGuiKey_R },
13533 { 1, 0, "", ImGuiKey_CapsLock }, { 1, 1, "A", ImGuiKey_A }, { 1, 2, "S", ImGuiKey_S }, { 1, 3, "D", ImGuiKey_D }, { 1, 4, "F", ImGuiKey_F },
13534 { 2, 0, "", ImGuiKey_LeftShift },{ 2, 1, "Z", ImGuiKey_Z }, { 2, 2, "X", ImGuiKey_X }, { 2, 3, "C", ImGuiKey_C }, { 2, 4, "V", ImGuiKey_V }
13535 };
13536
13537 // Elements rendered manually via ImDrawList API are not clipped automatically.
13538 // While not strictly necessary, here IsItemVisible() is used to avoid rendering these shapes when they are out of view.
13539 Dummy(board_max - board_min);
13540 if (!IsItemVisible())
13541 return;
13542 draw_list->PushClipRect(board_min, board_max, true);
13543 for (int n = 0; n < IM_ARRAYSIZE(keys_to_display); n++)
13544 {
13545 const KeyLayoutData* key_data = &keys_to_display[n];
13546 ImVec2 key_min = ImVec2(start_pos.x + key_data->Col * key_step.x + key_data->Row * key_row_offset, start_pos.y + key_data->Row * key_step.y);
13547 ImVec2 key_max = key_min + key_size;
13548 draw_list->AddRectFilled(key_min, key_max, IM_COL32(204, 204, 204, 255), key_rounding);
13549 draw_list->AddRect(key_min, key_max, IM_COL32(24, 24, 24, 255), key_rounding);
13550 ImVec2 face_min = ImVec2(key_min.x + key_face_pos.x, key_min.y + key_face_pos.y);
13551 ImVec2 face_max = ImVec2(face_min.x + key_face_size.x, face_min.y + key_face_size.y);
13552 draw_list->AddRect(face_min, face_max, IM_COL32(193, 193, 193, 255), key_face_rounding, ImDrawFlags_None, 2.0f);
13553 draw_list->AddRectFilled(face_min, face_max, IM_COL32(252, 252, 252, 255), key_face_rounding);
13554 ImVec2 label_min = ImVec2(key_min.x + key_label_pos.x, key_min.y + key_label_pos.y);
13555 draw_list->AddText(label_min, IM_COL32(64, 64, 64, 255), key_data->Label);
13556 if (IsKeyDown(key_data->Key))
13557 draw_list->AddRectFilled(key_min, key_max, IM_COL32(255, 0, 0, 128), key_rounding);
13558 }
13559 draw_list->PopClipRect();
13560}
13561
13562// Helper tool to diagnose between text encoding issues and font loading issues. Pass your UTF-8 string and verify that there are correct.
13563void ImGui::DebugTextEncoding(const char* str)

Callers

nothing calls this directly

Calls 6

ImVec2Function · 0.85
AddRectFilledMethod · 0.80
AddRectMethod · 0.80
AddTextMethod · 0.80
PushClipRectMethod · 0.45
PopClipRectMethod · 0.45

Tested by

no test coverage detected