Home
last modified time | relevance | path

Searched refs:KeyShift (Results 1 – 6 of 6) sorted by relevance

/external/mesa3d/src/intel/tools/imgui/
Dimgui_impl_gtk3.cpp140 { &io.KeyShift, GDK_SHIFT_MASK, in ImGui_ImplGtk3_HandleEvent()
/external/skqp/tools/viewer/
DImGuiLayer.cpp104 io.KeyShift = io.KeysDown[static_cast<int>(Window::Key::kShift)]; in onPrePaint()
/external/skia/tools/viewer/
DImGuiLayer.cpp144 io.KeyShift = io.KeysDown[static_cast<int>(skui::Key::kShift)]; in onPrePaint()
/external/mesa3d/src/imgui/
Dimgui_widgets.cpp444 …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()
Dimgui.cpp2907 …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()
Dimgui.h1355 bool KeyShift; // Keyboard modifier pressed: Shift member