Mouse button click event handler.
(self, window, button, act, mods)
| 149 | self.add_event(self.on_move, position, delta) |
| 150 | |
| 151 | def _handle_button(self, window, button, act, mods): |
| 152 | """Mouse button click event handler.""" |
| 153 | del window |
| 154 | self.add_event(self.on_click, button, act, mods) |
| 155 | if self._double_click_detector.process(button, act): |
| 156 | self.add_event(self.on_double_click, button, mods) |
| 157 | |
| 158 | def _handle_scroll(self, window, x_offset, y_offset): |
| 159 | """Mouse wheel scroll event handler.""" |