X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=sidebar.c;h=378c163453f8fdd50df33f89978712a016a434a6;hp=42a3546bc59c29880e03ccafc8d3d2310d247a06;hb=9114fccb27d817ba18918a84524e6e8b1998f361;hpb=50adaa99ec40c06e557a13394b6f7e62bcc5b9fa diff --git a/sidebar.c b/sidebar.c index 42a3546..378c163 100644 --- a/sidebar.c +++ b/sidebar.c @@ -12,6 +12,8 @@ * please see the file GPL in the top level source directory. */ +#include + #include "mutt.h" #include "mutt_menu.h" #include "mutt_curses.h" @@ -19,7 +21,6 @@ #include "buffy.h" #include "keymap.h" -#include "lib/mem.h" #include "lib/str.h" #include "lib/intl.h" @@ -33,10 +34,7 @@ static short initialized = 0; static short prev_show_value; /* computes first entry to be shown */ -void calc_boundaries (int menu) -{ - int lines = 0; - +static void calc_boundaries (void) { if (list_empty(Incoming)) return; if (CurBuffy < 0 || CurBuffy >= Incoming->length) @@ -44,8 +42,6 @@ void calc_boundaries (int menu) if (TopBuffy < 0 || TopBuffy >= Incoming->length) TopBuffy = 0; - lines = LINES - 2 - (option (OPTSTATUSONTOP)); - known_lines = lines; if (option (OPTSIDEBARNEWMAILONLY)) { int i = CurBuffy; TopBuffy = CurBuffy - 1; @@ -54,8 +50,8 @@ void calc_boundaries (int menu) TopBuffy = i; i--; } - } else - TopBuffy = CurBuffy - (CurBuffy % lines); + } else if (known_lines>0) + TopBuffy = CurBuffy - (CurBuffy % known_lines); if (TopBuffy < 0) TopBuffy = 0; } @@ -79,7 +75,7 @@ static char *shortened_hierarchy (char *box, int maxlen) if (last_dot) { ++last_dot; - new_box = mem_malloc (maxlen + 1); + new_box = p_new(char, maxlen + 1); new_box[0] = box[0]; for (i = 1, j = 1; j < maxlen && i < len; ++i) { if (strchr (SidebarBoundary, box[i])) { @@ -241,7 +237,7 @@ int make_sidebar_entry (char* box, int idx, size_t len) addnstr (entry, len); if (shortened) - mem_free(&box); + p_delete(&box); return (1); } @@ -258,8 +254,10 @@ const char* sidebar_get_current (void) { /* internally sets item to buf */ void sidebar_set_current (const char* buf) { int i = buffy_lookup (buf); - if (i >= 0) + if (i >= 0) { CurBuffy = i; + calc_boundaries(); + } } /* fix counters for a context @@ -277,25 +275,73 @@ void sidebar_set_buffystats (CONTEXT* Context) { tmp->msg_flagged = Context->flagged; } +void sidebar_draw_frames (void) { + size_t i,delim_len; + + if (!option(OPTMBOXPANE) || SidebarWidth==0) + return; + + delim_len=str_len(NONULL(SidebarDelim)); + + /* draw vertical delimiter */ + SETCOLOR (MT_COLOR_SIDEBAR); + for (i = 0; i < LINES-1; i++) { + move (i, SidebarWidth - delim_len); + if (option (OPTASCIICHARS)) + addstr (NONULL (SidebarDelim)); + else if (!option (OPTASCIICHARS) && !str_cmp (SidebarDelim, "|")) + addch (ACS_VLINE); + else if ((Charset_is_utf8) && !str_cmp (SidebarDelim, "|")) + addstr ("\342\224\202"); + else + addstr (NONULL (SidebarDelim)); + } + + /* fill "gaps" at top+bottom */ + SETCOLOR(MT_COLOR_STATUS); + for (i=0; ilength && lines < LINES - 1 - - (menu != MENU_PAGER || option (OPTSTATUSONTOP)); i++) { + for (i = TopBuffy, line=first_line; i < Incoming->length && line < last_line; i++) { tmp = (BUFFY*) Incoming->data[i]; if (i == CurBuffy) @@ -354,15 +380,16 @@ int sidebar_draw (int menu) else SETCOLOR (MT_COLOR_NORMAL); - move (lines, 0); - lines += make_sidebar_entry (tmp->path, i, SidebarWidth-delim_len); + move (line, 0); + line += make_sidebar_entry (tmp->path, i, SidebarWidth-delim_len); } + SETCOLOR (MT_COLOR_NORMAL); + /* fill with blanks to bottom */ memset (&blank, ' ', sizeof (blank)); - SETCOLOR (MT_COLOR_NORMAL); - for (; lines < LINES - 1 - (menu != MENU_PAGER || option (OPTSTATUSONTOP)); lines++) { - move (lines, 0); + for (; line < last_line; line++) { + move (line, 0); addnstr (blank, SidebarWidth-delim_len); } return 0; @@ -455,6 +482,6 @@ void sidebar_scroll (int op, int menu) { default: return; } - calc_boundaries (menu); + calc_boundaries (); sidebar_draw (menu); }