9 void print_list_line(int i, int line, int highlight);
10 void list_headerline();
17 void move_curitem(int direction);
20 void highlight_line(WINDOW *win, int line);
22 void invert_selection();
23 int list_current_item();
34 #define LIST_BOTTOM (LINES-2)
36 #define LIST_LINES (LIST_BOTTOM-LIST_TOP)
37 #define LIST_COLS COLS
40 #define EMAILPOS opt_get_int(INT_EMAILPOS)
41 #define EXTRAPOS opt_get_int(INT_EXTRAPOS)
43 #define NAMELEN (EMAILPOS-NAMEPOS -1)
44 #define EMAILLEN (EXTRAPOS-EMAILPOS -1)
45 #define EXTRALEN (COLS-EXTRAPOS)
47 #define LAST_LIST_ITEM ( first_list_item + LIST_LINES - 1 )