summaryrefslogtreecommitdiff
path: root/ui.c
diff options
context:
space:
mode:
authorVadim Kochan <vadim4j@gmail.com>2016-08-23 00:06:02 +0300
committerTobias Klauser <tklauser@distanz.ch>2016-09-15 18:28:28 +0200
commite18c0f2a23fc9e62a5be13af270cb81326ee6550 (patch)
treebdb0b5a95033c98985e9c3ca9f26fd8a9b6ab4f5 /ui.c
parentca4cd5bec239b88b72fccb2f4849e634a504b260 (diff)
flowtop: Add horizontal scrolling over flows table
Add left/right scrolling for flows list table to make possible see all the columns with a smaller display size. Handle 'Left' & 'Right' keypress to scroll left or right. Signed-off-by: Vadim Kochan <vadim4j@gmail.com> Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'ui.c')
-rw-r--r--ui.c25
1 files changed, 17 insertions, 8 deletions
diff --git a/ui.c b/ui.c
index 23a2293..1ab56af 100644
--- a/ui.c
+++ b/ui.c
@@ -154,7 +154,7 @@ void ui_table_clear(struct ui_table *tbl)
void ui_table_row_show(struct ui_table *tbl)
{
- mvaddchstr(tbl->rows_y, tbl->x, tbl->row->str);
+ mvaddchstr(tbl->rows_y, tbl->x, tbl->row->str + tbl->scroll_x);
ui_text_len_set(tbl->row, 0);
}
@@ -190,19 +190,28 @@ void ui_table_height_set(struct ui_table *tbl, int height)
void ui_table_header_print(struct ui_table *tbl)
{
struct ui_col *col;
- int max_width = tbl->width;
- int width = 0;
+
+ attron(tbl->hdr_color);
+ mvprintw(tbl->y, tbl->x, "%*s", tbl->width, " ");
+ attroff(tbl->hdr_color);
list_for_each_entry(col, &tbl->cols, entry) {
__ui_table_row_print(tbl, col, tbl->hdr_color, col->name);
- if (width + col->len + tbl->col_pad < max_width)
- width += col->len + tbl->col_pad;
}
ui_table_row_show(tbl);
+}
- attron(tbl->hdr_color);
- mvprintw(tbl->y, width, "%*s", max_width - width, " ");
- attroff(tbl->hdr_color);
+#define SCROLL_X_STEP 10
+
+void ui_table_event_send(struct ui_table *tbl, enum ui_event_id evt_id)
+{
+ if (evt_id == UI_EVT_SCROLL_RIGHT) {
+ tbl->scroll_x += SCROLL_X_STEP;
+ } else if (evt_id == UI_EVT_SCROLL_LEFT) {
+ tbl->scroll_x -= SCROLL_X_STEP;
+ if (tbl->scroll_x < 0)
+ tbl->scroll_x = 0;
+ }
}