X-Git-Url: https://git.deb.at/?p=pkg%2Fabook.git;a=blobdiff_plain;f=list.c;h=735746733777f07c854c438c3e929f1739b69000;hp=ca4892baea2e4f7bd495b225c0649c14f3052ac6;hb=775cf2c4526dce9048361498197a3522d648f74c;hpb=a5ec1a86014a38473901a573ba2fb3bd6bfd86db diff --git a/list.c b/list.c index ca4892b..7357467 100644 --- a/list.c +++ b/list.c @@ -24,6 +24,7 @@ int curitem = -1; int first_list_item = -1; +int scroll_speed = 2; char *selected = NULL; extern abook_field_list *fields_list; @@ -130,6 +131,7 @@ init_list() { list = newwin(LIST_LINES, LIST_COLS, LIST_TOP, 0); scrollok(list, TRUE); + scroll_speed = abs(opt_get_int(INT_SCROLL_SPEED)); } void @@ -352,6 +354,39 @@ scroll_down() refresh_list(); } +void +scroll_list_up() +{ + if(first_list_item <= 0) + return; + + first_list_item -= scroll_speed; + if(first_list_item < 0) { + first_list_item = 0; + } + if(curitem > LAST_LIST_ITEM) { + curitem = LAST_LIST_ITEM; + } + + refresh_list(); +} + +void +scroll_list_down() +{ + if(first_list_item > db_n_items() - 2) + return; + + first_list_item += scroll_speed; + if(first_list_item >= db_n_items()) { + first_list_item = db_n_items() - 1; + } + if(curitem < first_list_item) { + curitem = first_list_item; + } + + refresh_list(); +} void page_up()