X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=curs_main.c;h=f2b6cb26d8beec80bfb1d4d98fc1e374e169745e;hp=230fdf912e0de2a9f043b25614af7b5023c6bf22;hb=fa7f733a61a6fe3143198791ab470ddf4d08fdbe;hpb=c3e57678c8be193fc137854020f3a90887be97c9 diff --git a/curs_main.c b/curs_main.c index 230fdf9..f2b6cb2 100644 --- a/curs_main.c +++ b/curs_main.c @@ -2,6 +2,9 @@ * Copyright notice from original mutt: * Copyright (C) 1996-2000 Michael R. Elkins * + * Parts were written/modified by: + * Nico Golde + * * This file is part of mutt-ng, see http://www.muttng.org/. * It's licensed under the GNU General Public License, * please see the file GPL in the top level source directory. @@ -36,6 +39,9 @@ #include "nntp.h" #endif +#include "lib/mem.h" +#include "lib/intl.h" +#include "lib/str.h" #include #include @@ -453,7 +459,7 @@ int mutt_index_menu (void) mutt_buffy_check (1); /* force the buffy check after we enter the folder */ /* record folder we open to place sidebar indicator properly */ if (Context && Context->path) - set_curbuffy (Context->path); + sidebar_set_current (Context->path); } FOREVER { @@ -508,7 +514,7 @@ int mutt_index_menu (void) ("Mailbox was externally modified. Flags may be wrong.")); else if (check == M_NEW_MAIL) { /* on new mail: redraw sidebar */ - draw_sidebar (CurrentMenu); + sidebar_draw (CurrentMenu); mutt_message (_("New mail in this mailbox.")); if (option (OPTBEEPNEW)) @@ -550,10 +556,10 @@ int mutt_index_menu (void) if (op != -1) mutt_curs_set (0); if (menu->redraw & REDRAW_SIDEBAR) - draw_sidebar (menu->menu); + sidebar_draw (menu->menu); if (menu->redraw & REDRAW_FULL) { menu_redraw_full (menu); - draw_sidebar (menu->menu); + sidebar_draw (menu->menu); mutt_show_error (); } @@ -579,7 +585,7 @@ int mutt_index_menu (void) SETCOLOR (MT_COLOR_STATUS); mutt_paddstr (COLS, buf); SETCOLOR (MT_COLOR_NORMAL); - set_buffystats (Context); + sidebar_set_buffystats (Context); menu->redraw &= ~REDRAW_STATUS; if (option (OPTXTERMSETTITLES)) { menu_status_line (buf, sizeof (buf), menu, NONULL (XtermTitle)); @@ -1217,9 +1223,7 @@ int mutt_index_menu (void) } if (op == OP_SIDEBAR_OPEN) { - if (!CurBuffy) - break; - strncpy (buf, CurBuffy->path, sizeof (buf)); + strncpy (buf, NONULL(sidebar_get_current ()), sizeof (buf)); } else if (mutt_enter_fname (cp, buf, sizeof (buf), &menu->redraw, 1) == -1) @@ -1237,7 +1241,7 @@ int mutt_index_menu (void) else #endif mutt_expand_path (buf, sizeof (buf)); - set_curbuffy (buf); + sidebar_set_current (buf); if (mx_get_magic (buf) <= 0) { mutt_error (_("%s is not a mailbox."), buf); break; @@ -2371,7 +2375,7 @@ CHECK_IMAP_ACL(IMAP_ACL_WRITE); case OP_SIDEBAR_PREV: case OP_SIDEBAR_NEXT_NEW: case OP_SIDEBAR_PREV_NEW: - scroll_sidebar (op, menu->menu); + sidebar_scroll (op, menu->menu); break; default: if (menu->menu == MENU_MAIN)