(self)
| 10 | return self.puppet.get_gtk_widget() |
| 11 | |
| 12 | def get_updated_area(self) -> tuple[int, int, int, int]: |
| 13 | self.puppet.update_area() |
| 14 | return self.puppet.model_x, self.puppet.model_y, self.puppet.model_width, self.puppet.model_height |
| 15 | |
| 16 | def update_cursor_position(self): |
| 17 | x, y = self.wm_interface.get_cursor_position() |
no test coverage detected