Home
last modified time | relevance | path

Searched refs:on_mouse_press (Results 1 – 25 of 54) sorted by relevance

123

/dports/graphics/py-scikit-image/scikit-image-0.19.0/skimage/viewer/utils/
H A Dcanvas.py46 self.connect_event('button_press_event', self.on_mouse_press)
69 def on_mouse_press(self, event): member in EventManager
75 self.active_tool.on_mouse_press(event)
80 tool.on_mouse_press(event)
/dports/x11/alacritty/alacritty-0.9.0/cargo-crates/winit-0.24.0/src/platform_impl/web/web_sys/canvas/
H A Dmouse_handler.rs15 on_mouse_press: Option<EventListenerHandle<dyn FnMut(MouseEvent)>>, field
34 on_mouse_press: None, in new()
124 pub fn on_mouse_press<F>(&mut self, canvas_common: &super::Common, mut handler: F) in on_mouse_press() method
130 self.on_mouse_press = Some(canvas_common.add_window_mouse_event( in on_mouse_press()
208 self.on_mouse_press = None; in remove_listeners()
H A Dpointer_handler.rs67 pub fn on_mouse_press<F>(&mut self, canvas_common: &super::Common, mut handler: F) in on_mouse_press() method
/dports/graphics/py-pyglet/pyglet-1.5.21/pyglet/gui/
H A Dframe.py88 def on_mouse_press(self, x, y, buttons, modifiers): member in Frame
91 widget.on_mouse_press(x, y, buttons, modifiers)
157 def on_mouse_press(self, x, y, buttons, modifiers): member in MovableFrame
165 super().on_mouse_press(x, y, buttons, modifiers)
H A Dwidgets.py148 def on_mouse_press(self, x, y, buttons, modifiers): member in WidgetBase
228 def on_mouse_press(self, x, y, buttons, modifiers): member in PushButton
266 def on_mouse_press(self, x, y, buttons, modifiers): member in ToggleButton
369 def on_mouse_press(self, x, y, buttons, modifiers): member in Slider
489 def on_mouse_press(self, x, y, buttons, modifiers): member in TextEntry
494 self._caret.on_mouse_press(x, y, buttons, modifiers)
/dports/games/abstreet/winit-a87ae2661263ff241e8868cbf3ce65aab205863a/src/platform_impl/web/stdweb/
H A Dcanvas.rs33 on_mouse_press: Option<EventListenerHandle>, field
77 on_mouse_press: None, in create()
201 pub fn on_mouse_press<F>(&mut self, mut handler: F) in on_mouse_press() method
205 self.on_mouse_press = Some(self.add_user_event(move |event: PointerDownEvent| { in on_mouse_press()
/dports/x11/alacritty/alacritty-0.9.0/cargo-crates/winit-0.24.0/src/platform_impl/web/stdweb/
H A Dcanvas.rs31 on_mouse_press: Option<EventListenerHandle>, field
69 on_mouse_press: None, in create()
205 pub fn on_mouse_press<F>(&mut self, mut handler: F) in on_mouse_press() method
210 self.on_mouse_press = Some(self.add_user_event(move |event: PointerDownEvent| { in on_mouse_press()
/dports/games/abstreet/winit-a87ae2661263ff241e8868cbf3ce65aab205863a/src/platform_impl/web/web_sys/
H A Dcanvas.rs33 on_mouse_press: Option<Closure<dyn FnMut(MouseEvent)>>, field
90 on_mouse_press: None, in create()
249 pub fn on_mouse_press<F>(&mut self, mut handler: F) in on_mouse_press() method
265 self.on_mouse_press = in on_mouse_press()
/dports/graphics/py-pyglet/pyglet-1.5.21/examples/programming_guide/
H A Devents.py62 def on_mouse_press(x, y, button, modifiers): function
/dports/graphics/py-pyglet/pyglet-1.5.21/pyglet/window/
H A Dmouse.py58 def on_mouse_press(self, x, y, button, modifiers): member in MouseStateHandler
/dports/graphics/py-pyglet150/pyglet-1.5.0/pyglet/window/
H A Dmouse.py58 def on_mouse_press(self, x, y, button, modifiers): member in MouseStateHandler
/dports/graphics/py-pyglet150/pyglet-1.5.0/examples/programming_guide/
H A Devents.py62 def on_mouse_press(x, y, button, modifiers): function
/dports/graphics/py-glooey/glooey-0.3.3/glooey/
H A Dtext.py352 on_mouse_press=self.on_window_mouse_press,
365 on_mouse_press=self.on_window_mouse_press,
379 def on_mouse_press(self, x, y, button, modifiers): member in EditableLabel
382 self._caret.on_mouse_press(x, y, button, modifiers)
H A Dmisc.py126 def on_mouse_press(self, x, y, button, modifiers): member in EventLogger
127 super().on_mouse_press(x, y, button, modifiers)
H A Droot.py203 def on_mouse_press(self, x, y, button, modifiers): member in PanningGui
204 super().on_mouse_press(self.mouse.x, self.mouse.y, button, modifiers)
H A Dscrolling.py109 def on_mouse_press(self, x, y, button, modifiers): member in Mover
111 super().on_mouse_press(x, y, button, modifiers)
453 on_mouse_press=self.on_grip_press,
531 self._mover.push_handlers(on_mouse_press=self.on_bar_click)
/dports/x11/alacritty/alacritty-0.9.0/cargo-crates/winit-0.24.0/src/platform_impl/web/web_sys/
H A Dcanvas.rs229 pub fn on_mouse_press<F>(&mut self, handler: F) in on_mouse_press() method
234 MouseState::HasPointerEvent(h) => h.on_mouse_press(&self.common, handler), in on_mouse_press()
235 MouseState::NoPointerEvent(h) => h.on_mouse_press(&self.common, handler), in on_mouse_press()
/dports/graphics/py-pyglet/pyglet-1.5.21/examples/media/
H A Dmedia_player.py107 def on_mouse_press(self, x, y, button, modifiers): member in Button
163 def on_mouse_press(self, x, y, button, modifiers): member in Slider
331 def on_mouse_press(self, x, y, button, modifiers): member in PlayerWindow
334 control.on_mouse_press(x, y, button, modifiers)
/dports/graphics/py-pyglet150/pyglet-1.5.0/examples/
H A Dmedia_player.py107 def on_mouse_press(self, x, y, button, modifiers): member in Button
163 def on_mouse_press(self, x, y, button, modifiers): member in Slider
331 def on_mouse_press(self, x, y, button, modifiers): member in PlayerWindow
334 control.on_mouse_press(x, y, button, modifiers)
H A Dtext_input.py89 def on_mouse_press(self, x, y, button, modifiers): member in Window
98 self.focus.caret.on_mouse_press(x, y, button, modifiers)
H A Dtablet.py54 def on_mouse_press(x, y, button, modifiers): function
/dports/graphics/py-pyglet/pyglet-1.5.21/examples/text/
H A Dtext_input.py89 def on_mouse_press(self, x, y, button, modifiers): member in Window
98 self.focus.caret.on_mouse_press(x, y, button, modifiers)
/dports/graphics/py-pyglet/pyglet-1.5.21/examples/input/
H A Dtablet.py54 def on_mouse_press(x, y, button, modifiers): function
/dports/graphics/py-pyglet/pyglet-1.5.21/examples/media/soundspace/
H A Dsoundspace.py98 def on_mouse_press(self, x, y, button, modifiers): member in Handle
351 def on_mouse_press(self, x, y, button, modifiers): member in MoreHandle
575 def on_mouse_press(self, x, y, button, modifiers): member in SoundSpaceWindow
599 def on_mouse_press(self, x, y, button, modifiers): member in PanView
/dports/graphics/py-pyglet150/pyglet-1.5.0/examples/soundspace/
H A Dsoundspace.py98 def on_mouse_press(self, x, y, button, modifiers): member in Handle
351 def on_mouse_press(self, x, y, button, modifiers): member in MoreHandle
575 def on_mouse_press(self, x, y, button, modifiers): member in SoundSpaceWindow
599 def on_mouse_press(self, x, y, button, modifiers): member in PanView

123