Skip to content

Commit 39585aa

Browse files
committed
Amend Changelog to talk about OEM keys. (#7136, #7201, #7206, #7306, #7670, #7672, #8468)
+ more consistently use Ctrl+XXX instead of Ctrl-XXX.
1 parent a9e5382 commit 39585aa

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

docs/CHANGELOG.txt

+11-9
Original file line numberDiff line numberDiff line change
@@ -123,16 +123,18 @@ Other changes:
123123
SDL_MAIN_USE_CALLBACKS feature. (#8455)
124124
- IO: Added ImGuiKey_Oem102 to ImGuiKey enum. (#7136, #7201, #7206, #7306, #8468)
125125
- Backends: reworked key handlers to use/prioritize untranslated scancodes instead of
126-
translated keycodes when dealing with OEM keys. (#7136, #7201, #7206, #7306, #7670, #7672, #8468)
127-
Not that only ImGuiKey value (NOT the characters used for text input) are affected.
126+
translated keycodes when dealing with OEM keys which are too difficult to find a reliable
127+
translated mapping on all systems, backends and keyboard layout.
128+
(#7136, #7201, #7206, #7306, #7670, #7672, #8468)
129+
- The affected keys are: ImGuiKey_Apostrophe, ImGuiKey_Comma, ImGuiKey_Minus, ImGuiKey_Period,
130+
ImGuiKey_Slash, ImGuiKey_Semicolon, ImGuiKey_Equal, ImGuiKey_LeftBracket, ImGuiKey_RightBracket,
131+
ImGuiKey_Backslash, ImGuiKey_GraveAccent, and newly introduced ImGuiKey_Oem102.
132+
- This is NOT affecting characters used the text inputs.
133+
- Fixes many cases of keys not emitting a ImGuiKey value with certain keyboad layouts.
134+
- Makes emitted ImGuiKey values more consistent regardless of keyboard mapping,
135+
but you may be getting different values as before.
128136
- Win32, SDL2, SDL3: Use scancodes for OEM keys.
129137
- GLFW: GLFW_KEY_WORLD_1 and GLFW_KEY_WORLD_2 are emitting ImGuiKey_Oem102.
130-
- Fixes many cases of keys not emitting a ImGuiKey value with certain keyboad layouts.
131-
- Makes emitted ImGuiKey values more consistent regardless of keyboard mapping.
132-
- OEM keys are: ImGuiKey_Apostrophe, ImGuiKey_Comma, ImGuiKey_Minus, ImGuiKey_Period,
133-
ImGuiKey_Slash, ImGuiKey_Semicolon, ImGuiKey_Equal, ImGuiKey_LeftBracket,
134-
ImGuiKey_RightBracket, ImGuiKey_Backslash, ImGuiKey_GraveAccent, which are difficult
135-
to find a reliable translated mapping on all keyboard layouts.
136138
- Backends: GLFW: Fixed clipboard handler assertion when using GLFW <= 3.2.1 compiled
137139
with asserts enabled. (#8452)
138140
- Backends: SDL2, SDL3: Using SDL_OpenURL() in platform_io.Platform_OpenInShellFn
@@ -2061,7 +2063,7 @@ Other changes:
20612063
- Public API: PushTabStop(false) / PopTabStop()
20622064
- Internal: PushItemFlag(ImGuiItemFlags_NoTabStop, true);
20632065
- Internal: Directly pass ImGuiItemFlags_NoTabStop to ItemAdd() for custom widgets.
2064-
- Nav: Tabbing/Shift-Tabbing can more reliably be used to step out of an item that is not
2066+
- Nav: Tabbing/Shift+Tabbing can more reliably be used to step out of an item that is not
20652067
tab-stoppable. (#3092, #5759, #787)
20662068
- Nav: Made Enter key submit the same type of Activation event as Space key,
20672069
allowing to press buttons with Enter. (#5606)

imgui.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2436,7 +2436,7 @@ struct ImGuiIO
24362436
bool MouseDownOwned[5]; // Track if button was clicked inside a dear imgui window or over void blocked by a popup. We don't request mouse capture from the application if click started outside ImGui bounds.
24372437
bool MouseDownOwnedUnlessPopupClose[5]; // Track if button was clicked inside a dear imgui window.
24382438
bool MouseWheelRequestAxisSwap; // On a non-Mac system, holding SHIFT requests WheelY to perform the equivalent of a WheelX event. On a Mac system this is already enforced by the system.
2439-
bool MouseCtrlLeftAsRightClick; // (OSX) Set to true when the current click was a ctrl-click that spawned a simulated right click
2439+
bool MouseCtrlLeftAsRightClick; // (OSX) Set to true when the current click was a Ctrl+click that spawned a simulated right click
24402440
float MouseDownDuration[5]; // Duration the mouse button has been down (0.0f == just clicked)
24412441
float MouseDownDurationPrev[5]; // Previous time the mouse button has been down
24422442
float MouseDragMaxDistanceSqr[5]; // Squared maximum distance of how much mouse has traveled from the clicking point (used for moving thresholds)

imgui_widgets.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -2642,7 +2642,7 @@ bool ImGui::DragScalar(const char* label, ImGuiDataType data_type, void* p_data,
26422642
bool temp_input_is_active = temp_input_allowed && TempInputIsActive(id);
26432643
if (!temp_input_is_active)
26442644
{
2645-
// Tabbing or CTRL-clicking on Drag turns it into an InputText
2645+
// Tabbing or CTRL+click on Drag turns it into an InputText
26462646
const bool clicked = hovered && IsMouseClicked(0, ImGuiInputFlags_None, id);
26472647
const bool double_clicked = (hovered && g.IO.MouseClickedCount[0] == 2 && TestKeyOwner(ImGuiKey_MouseLeft, id));
26482648
const bool make_active = (clicked || double_clicked || g.NavActivateId == id);
@@ -3246,7 +3246,7 @@ bool ImGui::SliderScalar(const char* label, ImGuiDataType data_type, void* p_dat
32463246
bool temp_input_is_active = temp_input_allowed && TempInputIsActive(id);
32473247
if (!temp_input_is_active)
32483248
{
3249-
// Tabbing or CTRL-clicking on Slider turns it into an input box
3249+
// Tabbing or CTRL+click on Slider turns it into an input box
32503250
const bool clicked = hovered && IsMouseClicked(0, ImGuiInputFlags_None, id);
32513251
const bool make_active = (clicked || g.NavActivateId == id);
32523252
if (make_active && clicked)
@@ -5495,7 +5495,7 @@ static void ColorEditRestoreHS(const float* col, float* H, float* S, float* V)
54955495

54965496
// Edit colors components (each component in 0.0f..1.0f range).
54975497
// See enum ImGuiColorEditFlags_ for available options. e.g. Only access 3 floats if ImGuiColorEditFlags_NoAlpha flag is set.
5498-
// With typical options: Left-click on color square to open color picker. Right-click to open option menu. CTRL-Click over input fields to edit them and TAB to go to next item.
5498+
// With typical options: Left-click on color square to open color picker. Right-click to open option menu. CTRL+Click over input fields to edit them and TAB to go to next item.
54995499
bool ImGui::ColorEdit4(const char* label, float col[4], ImGuiColorEditFlags flags)
55005500
{
55015501
ImGuiWindow* window = GetCurrentWindow();

0 commit comments

Comments
 (0)