(self)
| 2 | |
| 3 | class DesktopPuppet(): |
| 4 | def __init__(self) -> None: |
| 5 | # Model dimensions |
| 6 | self.model_x = 0 |
| 7 | self.model_y = 0 |
| 8 | self.model_width = 0 |
| 9 | self.model_height = 0 |
| 10 | # Settings |
| 11 | self.settings = {} |
| 12 | pass |
| 13 | |
| 14 | def get_gtk_widget(self) -> Gtk.Widget: |
| 15 | """Get the GTK Widget to display |
nothing calls this directly
no outgoing calls
no test coverage detected