From d8b3da74cac8bbc804928482381a505c82e4bca5 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Fri, 4 Dec 2015 11:17:11 +0100 Subject: add support for reverse video MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/__main__.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'src/__main__.py') diff --git a/src/__main__.py b/src/__main__.py index 82b332f..6ff2673 100755 --- a/src/__main__.py +++ b/src/__main__.py @@ -246,7 +246,7 @@ class Bar: @param descent:int Extra height under the text on each line @param text:str The text to draw ''' - buf, bc, fc, xx = '', self.background, self.foreground, x + buf, bc, fc, xx, reverse = '', self.background, self.foreground, x, False line_height = ascent + self.font_height + descent esc = False for c in text + '\033[m': @@ -282,7 +282,7 @@ class Bar: fc = ((fc >> 16) & 255, (fc >> 8) & 255, fc & 255) fc = self.create_colour(*fc) fci += 1 - elif b == 0: bc, fc = self.background, self.foreground + elif b == 0: bc, fc, reverse = self.background, self.foreground, False elif b == 39: fc = self.foreground elif b == 49: bc = self.background elif 30 <= b <= 37: fc = self.palette[b - 30] @@ -291,14 +291,17 @@ class Bar: elif 100 <= b <= 107: bc = self.palette[b - 100 + 8] elif b == 38: fci = 1 elif b == 48: bci = 1 + elif b == 7: reverse = True + elif b == 27: reverse = False buf = '' esc = False elif c in ('\033', '\n'): if not buf == '': - self.change_colour(bc) + self.change_colour(bc if not reverse else fc) h = self.font_height + ascent w = self.font_width * len(buf) - self.draw_text(x, y + ascent, descent, buf, colour = (fc, bc), clear = (y - h, line_height)) + colours = (fc, bc) if not reverse else (bc, fc) + self.draw_text(x, y + ascent, descent, buf, colour = colours, clear = (y - h, line_height)) x += w buf = '' if c == '\n': -- cgit v1.2.3-70-g09d2