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