Draw an arbitrary US keyboard layout to visualize translated keys
| 16275 | |
| 16276 | // Draw an arbitrary US keyboard layout to visualize translated keys |
| 16277 | void ImGui::DebugRenderKeyboardPreview(ImDrawList* draw_list) |
| 16278 | { |
| 16279 | const float scale = ImGui::GetFontSize() / 13.0f; |
| 16280 | const ImVec2 key_size = ImVec2(35.0f, 35.0f) * scale; |
| 16281 | const float key_rounding = 3.0f * scale; |
| 16282 | const ImVec2 key_face_size = ImVec2(25.0f, 25.0f) * scale; |
| 16283 | const ImVec2 key_face_pos = ImVec2(5.0f, 3.0f) * scale; |
| 16284 | const float key_face_rounding = 2.0f * scale; |
| 16285 | const ImVec2 key_label_pos = ImVec2(7.0f, 4.0f) * scale; |
| 16286 | const ImVec2 key_step = ImVec2(key_size.x - 1.0f, key_size.y - 1.0f); |
| 16287 | const float key_row_offset = 9.0f * scale; |
| 16288 | |
| 16289 | ImVec2 board_min = GetCursorScreenPos(); |
| 16290 | 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); |
| 16291 | ImVec2 start_pos = ImVec2(board_min.x + 5.0f - key_step.x, board_min.y); |
| 16292 | |
| 16293 | struct KeyLayoutData { int Row, Col; const char* Label; ImGuiKey Key; }; |
| 16294 | const KeyLayoutData keys_to_display[] = |
| 16295 | { |
| 16296 | { 0, 0, "", ImGuiKey_Tab }, { 0, 1, "Q", ImGuiKey_Q }, { 0, 2, "W", ImGuiKey_W }, { 0, 3, "E", ImGuiKey_E }, { 0, 4, "R", ImGuiKey_R }, |
| 16297 | { 1, 0, "", ImGuiKey_CapsLock }, { 1, 1, "A", ImGuiKey_A }, { 1, 2, "S", ImGuiKey_S }, { 1, 3, "D", ImGuiKey_D }, { 1, 4, "F", ImGuiKey_F }, |
| 16298 | { 2, 0, "", ImGuiKey_LeftShift },{ 2, 1, "Z", ImGuiKey_Z }, { 2, 2, "X", ImGuiKey_X }, { 2, 3, "C", ImGuiKey_C }, { 2, 4, "V", ImGuiKey_V } |
| 16299 | }; |
| 16300 | |
| 16301 | // Elements rendered manually via ImDrawList API are not clipped automatically. |
| 16302 | // While not strictly necessary, here IsItemVisible() is used to avoid rendering these shapes when they are out of view. |
| 16303 | Dummy(board_max - board_min); |
| 16304 | if (!IsItemVisible()) |
| 16305 | return; |
| 16306 | draw_list->PushClipRect(board_min, board_max, true); |
| 16307 | for (int n = 0; n < IM_COUNTOF(keys_to_display); n++) |
| 16308 | { |
| 16309 | const KeyLayoutData* key_data = &keys_to_display[n]; |
| 16310 | 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); |
| 16311 | ImVec2 key_max = key_min + key_size; |
| 16312 | draw_list->AddRectFilled(key_min, key_max, IM_COL32(204, 204, 204, 255), key_rounding); |
| 16313 | draw_list->AddRect(key_min, key_max, IM_COL32(24, 24, 24, 255), key_rounding); |
| 16314 | ImVec2 face_min = ImVec2(key_min.x + key_face_pos.x, key_min.y + key_face_pos.y); |
| 16315 | ImVec2 face_max = ImVec2(face_min.x + key_face_size.x, face_min.y + key_face_size.y); |
| 16316 | draw_list->AddRect(face_min, face_max, IM_COL32(193, 193, 193, 255), key_face_rounding, 2.0f); |
| 16317 | draw_list->AddRectFilled(face_min, face_max, IM_COL32(252, 252, 252, 255), key_face_rounding); |
| 16318 | ImVec2 label_min = ImVec2(key_min.x + key_label_pos.x, key_min.y + key_label_pos.y); |
| 16319 | draw_list->AddText(label_min, IM_COL32(64, 64, 64, 255), key_data->Label); |
| 16320 | if (IsKeyDown(key_data->Key)) |
| 16321 | draw_list->AddRectFilled(key_min, key_max, IM_COL32(255, 0, 0, 128), key_rounding); |
| 16322 | } |
| 16323 | draw_list->PopClipRect(); |
| 16324 | } |
| 16325 | |
| 16326 | // Helper tool to diagnose between text encoding issues and font loading issues. Pass your UTF-8 string and verify that there are correct. |
| 16327 | void ImGui::DebugTextEncoding(const char* str) |
nothing calls this directly
no test coverage detected