Lines Matching refs:self
17 def __init__(self, editwin):
18 self.editwin = editwin
19 self.top = self.editwin.top
21 def zoom_height_event(self, event=None):
22 zoomed = self.zoom_height()
25 self.top.bell()
28 self.editwin.update_menu_label(menu='options', index='* Height',
33 def zoom_height(self):
34 top = self.top
44 maxheight, maxy = self.get_max_height_and_y_coord()
60 def get_max_height_and_y_coord(self):
61 top = self.top
65 if screen_dimensions not in self._max_height_and_y_coords:
102 self._max_height_and_y_coords[screen_dimensions] = maxheight, maxy
107 return self._max_height_and_y_coords[screen_dimensions]