Do not redraw the Vline at each user_list refresh

This commit is contained in:
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 2010-02-02 01:49:54 +00:00
parent 25d3ab27e7
commit 5212eb4abb

View file

@ -43,9 +43,6 @@ class UserList(Win):
def refresh(self, users): def refresh(self, users):
self.win.clear() self.win.clear()
self.win.attron(curses.color_pair(2))
self.win.vline(0, 0, curses.ACS_VLINE, self.height)
self.win.attroff(curses.color_pair(2))
y = 0 y = 0
for user in users: for user in users:
try: try:
@ -312,8 +309,10 @@ class Window(object):
terminal terminal
""" """
self.size = (self.height, self.width) = stdscr.getmaxyx() self.size = (self.height, self.width) = stdscr.getmaxyx()
stdscr.attron(curses.color_pair(2))
self.user_win = UserList(self.height-3, self.width/10, 1, 9*(self.width/10), stdscr) stdscr.vline(1, 9*(self.width/10), curses.ACS_VLINE, self.height-2)
stdscr.attroff(curses.color_pair(2))
self.user_win = UserList(self.height-3, (self.width/10)-1, 1, 9*(self.width/10)+1, stdscr)
self.topic_win = Info(1, self.width, 0, 0, stdscr) self.topic_win = Info(1, self.width, 0, 0, stdscr)
self.info_win = Info(1, self.width, self.height-2, 0, stdscr) self.info_win = Info(1, self.width, self.height-2, 0, stdscr)
self.text_win = TextWin(self.height-3, (self.width/10)*9, 1, 0, stdscr) self.text_win = TextWin(self.height-3, (self.width/10)*9, 1, 0, stdscr)
@ -324,7 +323,10 @@ class Window(object):
Resize the whole tabe. i.e. all its sub-windows Resize the whole tabe. i.e. all its sub-windows
""" """
self.size = (self.height, self.width) = stdscr.getmaxyx() self.size = (self.height, self.width) = stdscr.getmaxyx()
self.user_win.resize(self.height-3, self.width/10, 1, 9*(self.width/10), stdscr) stdscr.attron(curses.color_pair(2))
stdscr.vline(1, 9*(self.width/10), curses.ACS_VLINE, self.height-2)
stdscr.attroff(curses.color_pair(2))
self.user_win.resize(self.height-3, (self.width/10)-1, 1, 9*(self.width/10)+1, stdscr)
self.topic_win.resize(1, self.width, 0, 0, stdscr) self.topic_win.resize(1, self.width, 0, 0, stdscr)
self.info_win.resize(1, self.width, self.height-2, 0, stdscr) self.info_win.resize(1, self.width, self.height-2, 0, stdscr)
self.text_win.resize(self.height-3, (self.width/10)*9, 1, 0, stdscr) self.text_win.resize(self.height-3, (self.width/10)*9, 1, 0, stdscr)