(self, width, height, cwidth, cheight)
| 436 | TK.Tk.__init__(self) |
| 437 | |
| 438 | def setupcanvas(self, width, height, cwidth, cheight): |
| 439 | self._canvas = ScrolledCanvas(self, width, height, cwidth, cheight) |
| 440 | self._canvas.pack(expand=1, fill="both") |
| 441 | |
| 442 | def _getcanvas(self): |
| 443 | return self._canvas |
no test coverage detected