X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=sidebar.c;h=ea4f45861272fe4686703954d0c43e37d1da00eb;hp=cf940c366a22e68ec3d59ed42a5398e032b02156;hb=8e037c67a88cb4680c4391134c578e3b55a80f8a;hpb=89c7472ecb566c4cbe9c0022515feeda02fabf79 diff --git a/sidebar.c b/sidebar.c index cf940c3..ea4f458 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" @@ -49,7 +51,7 @@ static void calc_boundaries (void) { TopBuffy = i; i--; } - } else + } else if (known_lines>0) TopBuffy = CurBuffy - (CurBuffy % known_lines); if (TopBuffy < 0) TopBuffy = 0; @@ -74,7 +76,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])) { @@ -236,7 +238,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); } @@ -274,32 +276,67 @@ 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; ipath, i, SidebarWidth-delim_len); } + SETCOLOR (MT_COLOR_NORMAL); + /* fill with blanks to bottom */ memset (&blank, ' ', sizeof (blank)); - SETCOLOR (MT_COLOR_NORMAL); for (; line < last_line; line++) { move (line, 0); addnstr (blank, SidebarWidth-delim_len);