(self, size, event, button, col, row, focus)
| 471 | return self.bottom_w.keypress(size, key) |
| 472 | |
| 473 | def mouse_event(self, size, event, button, col, row, focus): |
| 474 | # TODO: pass to top widget if visible and inside it. |
| 475 | if not hasattr(self.bottom_w, "mouse_event"): |
| 476 | return False |
| 477 | |
| 478 | return self.bottom_w.mouse_event(size, event, button, col, row, focus) |
| 479 | |
| 480 | def get_cursor_coords(self, size): |
| 481 | return self.bottom_w.get_cursor_coords(size) |