(self, ips, x, y, btn, **key)
| 100 | pass |
| 101 | |
| 102 | def mouse_move(self, ips, x, y, btn, **key): |
| 103 | if btn==1: |
| 104 | img1, img2 = self.getimgs(ips.imgs, x, y) |
| 105 | self.ips1.set_imgs([img1]) |
| 106 | self.ips2.set_imgs([img2]) |
| 107 | self.ips1.update() |
| 108 | self.ips2.update() |
| 109 | ips.update() |
| 110 | ips.mark.set_xy(x, y) |
| 111 | |
| 112 | def mouse_wheel(self, ips, x, y, d, **key): |
| 113 | pass |