/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_tree.py | 45 tests = ((EventType.MouseWheel, 120, -1, -5), 46 (EventType.MouseWheel, -120, -1, 5),
|
/third_party/skia/third_party/externals/angle2/util/ |
H A D | Event.h | 83 MouseWheelEvent MouseWheel; // Mouse wheel event parameters member
|
H A D | OSWindow.cpp | 324 std::cout << "Event: Mouse Wheel (" << event.MouseWheel.Delta << ")" << std::endl; in PrintEvent()
|
/third_party/skia/third_party/externals/imgui/backends/ |
H A D | imgui_impl_glut.cpp | 200 io.MouseWheel += 1.0; in ImGui_ImplGLUT_MouseWheelFunc() 202 io.MouseWheel -= 1.0; in ImGui_ImplGLUT_MouseWheelFunc()
|
H A D | imgui_impl_marmalade.cpp | 143 io.MouseWheel += pEvent->m_y; in ImGui_Marmalade_PointerButtonEventCallback() 145 io.MouseWheel += pEvent->m_y; in ImGui_Marmalade_PointerButtonEventCallback()
|
H A D | imgui_impl_android.cpp | 102 io.MouseWheel = AMotionEvent_getAxisValue(input_event, AMOTION_EVENT_AXIS_VSCROLL, event_pointer_index); in ImGui_ImplAndroid_HandleInputEvent()
|
H A D | imgui_impl_sdl.cpp | 124 if (event->wheel.y > 0) io.MouseWheel += 1; in ImGui_ImplSDL2_ProcessEvent() 125 if (event->wheel.y < 0) io.MouseWheel -= 1; in ImGui_ImplSDL2_ProcessEvent()
|
H A D | imgui_impl_allegro5.cpp | 367 io.MouseWheel += ev->mouse.dz; in ImGui_ImplAllegro5_ProcessEvent()
|
H A D | imgui_impl_glfw.cpp | 136 io.MouseWheel += (float)yoffset; in ImGui_ImplGlfw_ScrollCallback()
|
H A D | imgui_impl_win32.cpp | 415 io.MouseWheel += (float)GET_WHEEL_DELTA_WPARAM(wParam) / (float)WHEEL_DELTA; in ImGui_ImplWin32_WndProcHandler()
|
/third_party/mesa3d/src/intel/tools/imgui/ |
H A D | imgui_impl_gtk3.cpp | 272 io.MouseWheel = g_MouseWheel; in ImGui_ImplGtk3_NewFrame()
|
/third_party/skia/tools/viewer/ |
H A D | ImGuiLayer.cpp | 120 io.MouseWheel += delta; in onMouseWheel()
|
/third_party/skia/third_party/externals/angle2/util/x11/ |
H A D | X11Window.cpp | 545 event.MouseWheel.Delta = wheelY; in processEvent()
|
/third_party/python/Lib/idlelib/ |
H A D | tree.py | 76 up = {EventType.MouseWheel: event.delta > 0, 287 self.label.bind("<MouseWheel>", lambda e: wheel_event(e, self.canvas)) 462 self.canvas.bind("<MouseWheel>", wheel_event)
|
/third_party/skia/third_party/externals/angle2/util/windows/win32/ |
H A D | Win32Window.cpp | 345 event.MouseWheel.Delta = static_cast<short>(HIWORD(wParam)) / 120; in WndProc()
|
/third_party/python/Lib/tkinter/test/test_tkinter/ |
H A D | test_misc.py | 319 MouseWheel = '38' variable in MiscTest.test_eventtype_enum.CheckedEventType
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui.cpp | 3759 if (g.IO.MouseWheel == 0.0f && g.IO.MouseWheelH == 0.0f) in UpdateMouseWheel() 3771 if (g.IO.MouseWheel != 0.0f && g.IO.KeyCtrl && g.IO.FontAllowUserScaling) in UpdateMouseWheel() 3774 const float new_font_scale = ImClamp(window->FontWindowScale + g.IO.MouseWheel * 0.10f, 0.50f, 2.50f); in UpdateMouseWheel() 3795 const float wheel_y = swap_axis ? 0.0f : g.IO.MouseWheel; in UpdateMouseWheel() 3796 const float wheel_x = swap_axis ? g.IO.MouseWheel : g.IO.MouseWheelH; in UpdateMouseWheel() 4490 g.IO.MouseWheel = g.IO.MouseWheelH = 0.0f; in EndFrame()
|
H A D | imgui.h | 1885 float MouseWheel; // Mouse wheel Vertical: 1 unit scrolls about 5 lines text. member
|
H A D | imgui_demo.cpp | 5525 ImGui::Text("Mouse wheel: %.1f", io.MouseWheel);
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui.h | 1352 float MouseWheel; // Mouse wheel Vertical: 1 unit scrolls about 5 lines text. member
|
H A D | imgui.cpp | 3258 if (g.IO.MouseWheel == 0.0f && g.IO.MouseWheelH == 0.0f) in UpdateMouseWheel() 3268 if (g.IO.MouseWheel != 0.0f) in UpdateMouseWheel() 3273 const float new_font_scale = ImClamp(window->FontWindowScale + g.IO.MouseWheel * 0.10f, 0.50f, 2.50f); in UpdateMouseWheel() 3287 SetWindowScrollY(scroll_window, scroll_window->Scroll.y - g.IO.MouseWheel * scroll_amount); in UpdateMouseWheel() 3846 g.IO.MouseWheel = g.IO.MouseWheelH = 0.0f; in EndFrame()
|
/third_party/python/Lib/tkinter/ |
H A D | __init__.py | 210 MouseWheel = '38' variable in EventType 219 ButtonPress, ButtonRelease, Motion, Enter, Leave, MouseWheel - for mouse events 253 delta - delta of wheel movement (MouseWheel) 1420 FocusIn, MouseWheel, Circulate, FocusOut, Property,
|