Beispiel #1
0
 def set_cursor(self, y, x):
     vx.set_cursor(self, y, x)
Beispiel #2
0
 def prepare(self):
     vx.clear_window(self)
     vx.set_cursor(self, 0, 0)
     self.line, self.col = self.cursor
Beispiel #3
0
 def render(self, window):
     vx.set_cursor(window, self.y, self.x)
     vx.print_string_window(window, self.text)
Beispiel #4
0
 def set_cursor(self, y, x):
     vx.set_cursor(self, y, x)
Beispiel #5
0
 def prepare(self):
     vx.clear_window(self)
     vx.set_cursor(self, 0, 0)
     self.line, self.col = self.cursor
Beispiel #6
0
 def render(self, window):
     vx.set_cursor(window, self.y, self.x)
     vx.print_string_window(window, self.text)