diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-11-09 01:26:54 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-11-09 01:26:54 +0100 |
commit | 75ae1772e49a59b373c26d1c942f25edd473921c (patch) | |
tree | 65d8faee081db6c3800a48eff7007a4b626e4252 /src/data_forms.py | |
parent | 8f02b6eb8e022ed1d34e0a0b0c7376eaf58acc32 (diff) | |
parent | 23d81901e7725bf67363113bc36a6e171bdb2033 (diff) | |
download | poezio-75ae1772e49a59b373c26d1c942f25edd473921c.tar.gz poezio-75ae1772e49a59b373c26d1c942f25edd473921c.tar.bz2 poezio-75ae1772e49a59b373c26d1c942f25edd473921c.tar.xz poezio-75ae1772e49a59b373c26d1c942f25edd473921c.zip |
Merge branch 'master' of http://git.louiz.org/poezio
Diffstat (limited to 'src/data_forms.py')
-rw-r--r-- | src/data_forms.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/data_forms.py b/src/data_forms.py index a7bbe97f..8445d3d2 100644 --- a/src/data_forms.py +++ b/src/data_forms.py @@ -152,6 +152,26 @@ class DummyInput(FieldInput, windows.Win): def is_dummy(self): return True +class ColoredLabel(windows.Win): + def __init__(self, text): + self.text = text + self.color = 14 + windows.Win.__init__(self) + + def resize(self, height, width, y, x): + self._resize(height, width, y, x) + + def set_color(self, color): + self.color = color + self.refresh() + + def refresh(self): + with g_lock: + self._win.attron(curses.color_pair(self.color)) + self.addstr(0, 0, self.text) + self._win.attroff(curses.color_pair(self.color)) + self._refresh() + class BooleanWin(FieldInput, windows.Win): def __init__(self, field): FieldInput.__init__(self, field) @@ -502,6 +522,7 @@ class FormWin(object): for i, inp in enumerate(self.inputs): if i >= self.height: break + inp['label'].refresh() inp['input'].refresh() inp['label'].refresh() if self.current_input < self.height-1: |