/external/skqp/tools/sk_app/ |
D | Window.cpp | 56 bool Window::onMouseWheel(float delta, uint32_t modifiers) { in onMouseWheel() function in sk_app::Window 57 return this->signalLayers([=](Layer* layer) { return layer->onMouseWheel(delta, modifiers); }); in onMouseWheel()
|
D | Window.h | 148 virtual bool onMouseWheel(float delta, uint32_t modifiers) { return false; } in onMouseWheel() function 169 bool onMouseWheel(float delta, uint32_t modifiers);
|
/external/skia/tools/sk_app/ |
D | Window.h | 100 virtual bool onMouseWheel(float delta, skui::ModifierKey) { return false; } in onMouseWheel() function 124 bool onMouseWheel(float delta, skui::ModifierKey modifiers);
|
D | Window.cpp | 55 bool Window::onMouseWheel(float delta, skui::ModifierKey modifiers) { in onMouseWheel() function in sk_app::Window 56 return this->signalLayers([=](Layer* layer) { return layer->onMouseWheel(delta, modifiers); }); in onMouseWheel()
|
/external/skqp/tools/viewer/ |
D | ImGuiLayer.h | 29 bool onMouseWheel(float delta, uint32_t modifiers) override;
|
D | ImGuiLayer.cpp | 83 bool ImGuiLayer::onMouseWheel(float delta, uint32_t modifiers) { in onMouseWheel() function in ImGuiLayer
|
/external/skqp/tools/sk_app/unix/ |
D | Window_unix.cpp | 268 this->onMouseWheel(1.0f, get_modifiers(event)); in handleEvent() 271 this->onMouseWheel(-1.0f, get_modifiers(event)); in handleEvent()
|
/external/skia/tools/viewer/ |
D | ImGuiLayer.h | 130 bool onMouseWheel(float delta, skui::ModifierKey modifiers) override;
|
D | ImGuiLayer.cpp | 118 bool ImGuiLayer::onMouseWheel(float delta, skui::ModifierKey modifiers) { in onMouseWheel() function in ImGuiLayer
|
/external/skia/tools/sk_app/unix/ |
D | Window_unix.cpp | 275 this->onMouseWheel(1.0f, get_modifiers(event)); in handleEvent() 278 this->onMouseWheel(-1.0f, get_modifiers(event)); in handleEvent()
|
/external/skia/tools/sk_app/win/ |
D | Window_win.cpp | 301 eventHandled = window->onMouseWheel(GET_WHEEL_DELTA_WPARAM(wParam) > 0 ? +1.0f : -1.0f, in WndProc()
|
/external/skqp/tools/sk_app/win/ |
D | Window_win.cpp | 299 eventHandled = window->onMouseWheel(GET_WHEEL_DELTA_WPARAM(wParam) > 0 ? +1.0f : -1.0f, in WndProc()
|
/external/skqp/tools/sk_app/mac/ |
D | Window_mac.mm | 309 fWindow->onMouseWheel([event scrollingDeltaY], get_modifiers(event));
|
/external/skia/modules/skplaintexteditor/app/ |
D | editor_application.cpp | 172 bool onMouseWheel(float delta, skui::ModifierKey) override { in onMouseWheel() function
|
/external/skia/tools/sk_app/mac/ |
D | Window_mac.mm | 449 fWindow->onMouseWheel([event scrollingDeltaY], modifiers);
|