Home
last modified time | relevance | path

Searched refs:MouseWheel (Results 1 - 22 of 22) sorted by relevance

/third_party/python/Lib/idlelib/idle_test/
H A Dtest_tree.py45 tests = ((EventType.MouseWheel, 120, -1, -5),
46 (EventType.MouseWheel, -120, -1, 5),
/third_party/skia/third_party/externals/angle2/util/
H A DEvent.h83 MouseWheelEvent MouseWheel; // Mouse wheel event parameters member
H A DOSWindow.cpp324 std::cout << "Event: Mouse Wheel (" << event.MouseWheel.Delta << ")" << std::endl; in PrintEvent()
/third_party/skia/third_party/externals/imgui/backends/
H A Dimgui_impl_glut.cpp200 io.MouseWheel += 1.0; in ImGui_ImplGLUT_MouseWheelFunc()
202 io.MouseWheel -= 1.0; in ImGui_ImplGLUT_MouseWheelFunc()
H A Dimgui_impl_marmalade.cpp143 io.MouseWheel += pEvent->m_y; in ImGui_Marmalade_PointerButtonEventCallback()
145 io.MouseWheel += pEvent->m_y; in ImGui_Marmalade_PointerButtonEventCallback()
H A Dimgui_impl_android.cpp102 io.MouseWheel = AMotionEvent_getAxisValue(input_event, AMOTION_EVENT_AXIS_VSCROLL, event_pointer_index); in ImGui_ImplAndroid_HandleInputEvent()
H A Dimgui_impl_sdl.cpp124 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 Dimgui_impl_allegro5.cpp367 io.MouseWheel += ev->mouse.dz; in ImGui_ImplAllegro5_ProcessEvent()
H A Dimgui_impl_glfw.cpp136 io.MouseWheel += (float)yoffset; in ImGui_ImplGlfw_ScrollCallback()
H A Dimgui_impl_win32.cpp415 io.MouseWheel += (float)GET_WHEEL_DELTA_WPARAM(wParam) / (float)WHEEL_DELTA; in ImGui_ImplWin32_WndProcHandler()
/third_party/mesa3d/src/intel/tools/imgui/
H A Dimgui_impl_gtk3.cpp272 io.MouseWheel = g_MouseWheel; in ImGui_ImplGtk3_NewFrame()
/third_party/skia/tools/viewer/
H A DImGuiLayer.cpp120 io.MouseWheel += delta; in onMouseWheel()
/third_party/skia/third_party/externals/angle2/util/x11/
H A DX11Window.cpp545 event.MouseWheel.Delta = wheelY; in processEvent()
/third_party/python/Lib/idlelib/
H A Dtree.py76 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 DWin32Window.cpp345 event.MouseWheel.Delta = static_cast<short>(HIWORD(wParam)) / 120; in WndProc()
/third_party/python/Lib/tkinter/test/test_tkinter/
H A Dtest_misc.py319 MouseWheel = '38' variable in MiscTest.test_eventtype_enum.CheckedEventType
/third_party/skia/third_party/externals/imgui/
H A Dimgui.cpp3759 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 Dimgui.h1885 float MouseWheel; // Mouse wheel Vertical: 1 unit scrolls about 5 lines text. member
H A Dimgui_demo.cpp5525 ImGui::Text("Mouse wheel: %.1f", io.MouseWheel);
/third_party/mesa3d/src/imgui/
H A Dimgui.h1352 float MouseWheel; // Mouse wheel Vertical: 1 unit scrolls about 5 lines text. member
H A Dimgui.cpp3258 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__.py210 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,

Completed in 93 milliseconds