예제 #1
0
파일: window.py 프로젝트: philipdexter/vx
 def set_cursor(self, y, x):
     vx.set_cursor(self, y, x)
예제 #2
0
파일: window.py 프로젝트: philipdexter/vx
 def prepare(self):
     vx.clear_window(self)
     vx.set_cursor(self, 0, 0)
     self.line, self.col = self.cursor
예제 #3
0
파일: window.py 프로젝트: philipdexter/vx
 def render(self, window):
     vx.set_cursor(window, self.y, self.x)
     vx.print_string_window(window, self.text)
예제 #4
0
파일: window.py 프로젝트: tj90241/vx
 def set_cursor(self, y, x):
     vx.set_cursor(self, y, x)
예제 #5
0
파일: window.py 프로젝트: tj90241/vx
 def prepare(self):
     vx.clear_window(self)
     vx.set_cursor(self, 0, 0)
     self.line, self.col = self.cursor
예제 #6
0
파일: window.py 프로젝트: tj90241/vx
 def render(self, window):
     vx.set_cursor(window, self.y, self.x)
     vx.print_string_window(window, self.text)