summaryrefslogtreecommitdiff
path: root/src/windows.py
diff options
context:
space:
mode:
authormanfraid <manfraid@gmail.com>2011-12-08 16:22:43 +0100
committerFlorent Le Coz <louiz@louiz.org>2011-12-09 13:56:55 +0100
commit02099123b0f2272954e91b737f50a797e4df0420 (patch)
tree65bc917cd6e7bebce79d728de369b09008df4a42 /src/windows.py
parenta0404f3077c9ec932f0272b770a9c985ccda25cc (diff)
downloadpoezio-02099123b0f2272954e91b737f50a797e4df0420.tar.gz
poezio-02099123b0f2272954e91b737f50a797e4df0420.tar.bz2
poezio-02099123b0f2272954e91b737f50a797e4df0420.tar.xz
poezio-02099123b0f2272954e91b737f50a797e4df0420.zip
Fixe 2104
Diffstat (limited to 'src/windows.py')
-rw-r--r--src/windows.py64
1 files changed, 63 insertions, 1 deletions
diff --git a/src/windows.py b/src/windows.py
index a13efdf5..6c3c8b5c 100644
--- a/src/windows.py
+++ b/src/windows.py
@@ -1642,6 +1642,12 @@ class ListWin(Win):
"""
Sort the list by the given column, ascendant or descendant
"""
+ if asc:
+ self.lines.sort(key=lambda x: x[col_name])
+ else:
+ self.lines.sort(key=lambda x: x[col_name],reverse=True)
+ self.refresh()
+ curses.doupdate()
pass # TODO
def add_lines(self, lines):
@@ -1741,6 +1747,9 @@ class ColumnHeaderWin(Win):
Win.__init__(self)
self._columns = columns
self._columns_sizes = {}
+ self._column_sel = ''
+ self._column_order = ''
+ self._column_order_asc = False
def resize_columns(self, dic):
self._columns_sizes = dic
@@ -1755,12 +1764,65 @@ class ColumnHeaderWin(Win):
x = 0
for col in self._columns:
txt = col
+ if col in self._column_order:
+ if self._column_order_asc:
+ txt += get_theme().CHAR_COLUMN_ASC
+ else:
+ txt += get_theme().CHAR_COLUMN_DESC
+ #⇓⇑↑↓⇧⇩▲▼
size = self._columns_sizes[col]
txt += ' ' * (size-len(txt))
- self.addstr(0, x, txt, to_curses_attr(get_theme().COLOR_COLUMN_HEADER))
+ if col in self._column_sel:
+ self.addstr(0, x, txt, to_curses_attr(get_theme().COLOR_COLUMN_HEADER_SEL))
+ else:
+ self.addstr(0, x, txt, to_curses_attr(get_theme().COLOR_COLUMN_HEADER))
x += size
self._refresh()
+ def sel_column(self,dic):
+ self._column_sel = dic
+
+ def get_sel_column(self):
+ return self._column_sel
+
+ def set_order(self,order):
+ self._column_order = self._column_sel
+ self._column_order_asc = order
+
+ def get_order(self):
+ if self._column_sel == self._column_order:
+ return self._column_order_asc
+ else:
+ return False
+
+ def sel_column_left(self):
+ if self._column_sel in self._columns:
+ index = self._columns.index(self._column_sel)
+ if index > 1:
+ index = index -1
+ else:
+ index = 0
+ else:
+ index = 0
+ self._column_sel = self._columns[index]
+ self.refresh()
+ return
+
+ def sel_column_right(self):
+ if self._column_sel in self._columns:
+ index = self._columns.index(self._column_sel)
+ if index < len(self._columns)-2:
+ index = index +1
+ else:
+ index = len(self._columns) -1
+ else:
+ index = len(self._columns) - 1
+ self._column_sel = self._columns[index]
+ self.refresh()
+ return
+
+
+
class SimpleTextWin(Win):
def __init__(self, text):
Win.__init__(self)