X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=sidebar.c;h=48ec9dfa3234225fb813da2f3874e56f7b01217c;hp=a9b0788694978a80964dfd9ab4de01f9eeee2cc1;hb=ccc32b06bb266419be820fb17af389e92ad4d195;hpb=60f4017cfee7116f7945c2945965c0537570a3d3 diff --git a/sidebar.c b/sidebar.c index a9b0788..48ec9df 100644 --- a/sidebar.c +++ b/sidebar.c @@ -31,25 +31,16 @@ static int CurBuffy = 0; static int known_lines = 0; static short initialized = 0; static short prev_show_value; -static short saveSidebarWidth; /* 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) CurBuffy = 0; if (TopBuffy < 0 || TopBuffy >= Incoming->length) TopBuffy = 0; - /* correct known_lines if it has changed because of a window resize */ - /* if (known_lines != LINES) - known_lines = LINES; */ - lines = LINES - 2 - (menu != MENU_PAGER || option (OPTSTATUSONTOP)); - known_lines = lines; if (option (OPTSIDEBARNEWMAILONLY)) { int i = CurBuffy; TopBuffy = CurBuffy - 1; @@ -58,8 +49,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; } @@ -149,6 +140,14 @@ static const char* sidebar_number_format (char* dest, size_t destlen, char op, break; /* new */ case 'n': + if (!opt) { + snprintf (tmp, sizeof (tmp), "%%%sd", fmt); + snprintf (dest, destlen, tmp, c ? Context->new : b->new); + } else if ((c && Context->new == 0) || (!c && b->new == 0)) + opt = 0; + break; + /* unread */ + case 'u': if (!opt) { snprintf (tmp, sizeof (tmp), "%%%sd", fmt); snprintf (dest, destlen, tmp, c ? Context->unread : b->msg_unread); @@ -213,13 +212,16 @@ int make_sidebar_entry (char* box, int idx, size_t len) #if USE_IMAP if (l > 0 && str_ncmp (box, ImapHomeNamespace, l) == 0 && str_len (box) > l) - box += l + 1; + box += l + 1; /* we're trimming the ImapHomeNamespace, the "+ 1" is for the separator */ else #endif if (l_m > 0 && str_ncmp (box, Maildir, l_m) == 0 && - str_len (box) > l_m) - box += l_m + 1; - else + str_len (box) > l_m) { + box += l_m; + if (Maildir[strlen(Maildir)-1]!='/') { + box += 1; + } + } else box = basename (box); if (option (OPTSHORTENHIERARCHY) && str_len (box) > len-lencnt-1) { @@ -251,8 +253,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 @@ -270,36 +274,76 @@ 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) @@ -355,15 +379,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; @@ -456,6 +481,6 @@ void sidebar_scroll (int op, int menu) { default: return; } - calc_boundaries (menu); + calc_boundaries (); sidebar_draw (menu); }