Searched refs:KeyShift (Results 1 – 6 of 6) sorted by relevance
140 { &io.KeyShift, GDK_SHIFT_MASK, in ImGui_ImplGtk3_HandleEvent()
104 io.KeyShift = io.KeysDown[static_cast<int>(Window::Key::kShift)]; in onPrePaint()
144 io.KeyShift = io.KeysDown[static_cast<int>(skui::Key::kShift)]; in onPrePaint()
444 …if (!(flags & ImGuiButtonFlags_NoKeyModifiers) || (!g.IO.KeyCtrl && !g.IO.KeyShift && !g.IO.KeyAlt… in ButtonBehavior()1749 if (g.IO.KeyShift) in DragBehaviorT()3353 const int k_mask = (io.KeyShift ? STB_TEXTEDIT_K_SHIFT : 0); in InputTextEx()3355 …er && !io.KeyCtrl) : (io.KeyCtrl && !io.KeySuper)) && !io.KeyAlt && !io.KeyShift; // OS X style: S… in InputTextEx()3356 …const bool is_osx_shift_shortcut = is_osx && io.KeySuper && io.KeyShift && !io.KeyCtrl && !io.KeyA… in InputTextEx()3359 const bool is_ctrl_key_only = io.KeyCtrl && !io.KeyShift && !io.KeyAlt && !io.KeySuper; in InputTextEx()3360 const bool is_shift_key_only = io.KeyShift && !io.KeyCtrl && !io.KeyAlt && !io.KeySuper; in InputTextEx()3398 …s_AllowTabInput) && IsKeyPressedMap(ImGuiKey_Tab) && !io.KeyCtrl && !io.KeyShift && !io.KeyAlt && … in InputTextEx()
2907 …window->FocusIdxTabRequestNext = window->FocusIdxTabCounter + (g.IO.KeyShift ? (is_tab_stop ? -1 :… in FocusableItemRegister()3505 g.NavWindow->FocusIdxTabRequestNext = g.NavIdTabCounter + 1 + (g.IO.KeyShift ? -1 : 1); in NewFrame()3507 g.NavWindow->FocusIdxTabRequestNext = g.IO.KeyShift ? -1 : 0; in NewFrame()4776 if (g.NavInputSource == ImGuiInputSource_NavKeyboard && g.IO.KeyShift) in UpdateManualResize()7597 if (g.IO.KeyShift) g.IO.NavInputs[ImGuiNavInput_TweakFast] = 1.0f; in NavUpdate()8040 NavUpdateWindowingHighlightWindow(g.IO.KeyShift ? +1 : -1); in NavUpdateWindowing()8055 if (g.NavInputSource == ImGuiInputSource_NavKeyboard && !g.IO.KeyShift) in NavUpdateWindowing()
1355 bool KeyShift; // Keyboard modifier pressed: Shift member