Nico Golde:
[apps/madmutt.git] / sidebar.c
1 /*
2  * Copyright (C) ????-2004 Justin Hibbits <jrh29@po.cwru.edu>
3  * Copyright (C) 2004 Thomer M. Gil <mutt@thomer.com>
4  * 
5  *     This program is free software; you can redistribute it and/or modify
6  *     it under the terms of the GNU General Public License as published by
7  *     the Free Software Foundation; either version 2 of the License, or
8  *     (at your option) any later version.
9  * 
10  *     This program is distributed in the hope that it will be useful,
11  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *     GNU General Public License for more details.
14  * 
15  *     You should have received a copy of the GNU General Public License
16  *     along with this program; if not, write to the Free Software
17  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
18  */ 
19
20
21
22 #include "mutt.h"
23 #include "mutt_menu.h"
24 #include "mutt_curses.h"
25 #include "sidebar.h"
26 #include "buffy.h"
27 #include <libgen.h>
28 #include "keymap.h"
29 #include <stdbool.h>
30 #include <ctype.h>
31
32 /*BUFFY *CurBuffy = 0;*/
33 static BUFFY *TopBuffy = 0;
34 static BUFFY *BottomBuffy = 0;
35 static int known_lines = 0;
36 static bool initialized = false;
37 static int prev_show_value;
38 static short saveSidebarWidth;
39 static char *entry = 0;
40
41 static int quick_log10(int n)
42 {
43   int len = 0;
44   for (; n > 9; len++, n /= 10)
45     ;
46   return (++len);
47 }
48
49 /* CurBuffy should contain a valid buffy 
50  * mailbox before calling this function!!! */
51 void calc_boundaries (int menu)
52 {
53   BUFFY *tmp = Incoming;
54   int position;
55   int i,count, mailbox_position;
56
57   /* correct known_lines if it has changed because of a window resize */
58   if ( known_lines != LINES ) {
59     known_lines = LINES;
60   }
61   /* fix all the prev links on all the mailboxes
62    * FIXME move this over to buffy.c where it belongs */
63   for ( ; tmp->next != 0; tmp = tmp->next )
64     tmp->next->prev = tmp;
65
66   /* calculate the position of the current mailbox */
67   position = 1;
68   tmp = Incoming;
69   while (tmp != CurBuffy)
70   {
71     position++;
72     tmp = tmp->next;
73   }
74   /* calculate the size of the screen we can use */
75   count = LINES - 2 - (menu != MENU_PAGER || option (OPTSTATUSONTOP));
76   /* calculate the position of the current mailbox on the screen */
77   mailbox_position = position%count;
78   if (mailbox_position == 0) mailbox_position=count;
79   /* determine topbuffy */
80   TopBuffy = CurBuffy;
81   for(i = mailbox_position; i >1; i--) TopBuffy = TopBuffy->prev;
82   /* determine bottombuffy */
83   BottomBuffy = CurBuffy;
84   for(i = mailbox_position; i < count && BottomBuffy->next; i++)
85     BottomBuffy = BottomBuffy->next;
86 }
87
88 static char * shortened_hierarchy(char * box) {
89   int dots = 0;
90   char * last_dot;
91   int i,j;
92   char * new_box;
93   for (i=0;i<strlen(box);++i) {
94     if (box[i] == '.') ++dots;
95     else if (isupper (box[i])) 
96       return (safe_strdup (box));
97   }
98   last_dot = strrchr(box,'.');
99   if (last_dot) {
100     ++last_dot;
101     new_box = safe_malloc(strlen(last_dot)+2*dots+1);
102     new_box[0] = box[0];
103     for (i=1,j=1;i<strlen(box);++i) {
104       if (box[i] == '.') {
105         new_box[j++] = '.';
106         new_box[j] = 0;
107         if (&box[i+1] != last_dot) {
108           new_box[j++] = box[i+1];
109           new_box[j] = 0;
110         } else {
111           strcat(&new_box[j],last_dot);
112           break;
113         }
114       }
115     }
116     return new_box;
117   }
118   return safe_strdup(box);
119 }
120
121 char *make_sidebar_entry(char *box, int size, int new, int flagged)
122 {
123   int i = 0, dlen, max, shortened = 0;
124   int offset;
125
126   if (SidebarWidth > COLS)
127     SidebarWidth = COLS;
128
129   dlen = mutt_strlen(SidebarDelim);
130   max = SidebarWidth - dlen - 1;
131
132   safe_realloc(&entry, SidebarWidth + 1);
133   entry[SidebarWidth] = 0;
134   for (; i < SidebarWidth; entry[i++] = ' ' );
135 #if USE_IMAP
136   if (ImapHomeNamespace && strlen(ImapHomeNamespace)>0) {
137     if (strncmp(box,ImapHomeNamespace,strlen(ImapHomeNamespace))==0 && strcmp(box,ImapHomeNamespace)!=0) {
138       box+=strlen(ImapHomeNamespace)+1;
139     }
140   }
141 #endif
142   max -= quick_log10(size);
143   if (new)
144     max -= quick_log10(new) + 2;
145   if (flagged > 0)
146     max -= quick_log10(flagged) + 2;
147   if (option(OPTSHORTENHIERARCHY) && mutt_strlen(box) > max) {
148     box = shortened_hierarchy(box);
149     shortened = 1;
150   }
151   i = strlen(box);
152   strncpy( entry, box, i < SidebarWidth - dlen ? i :SidebarWidth - dlen);
153
154   if ( new ) {
155     if (flagged>0) {
156       offset = SidebarWidth - 5 - quick_log10(size) - dlen - quick_log10(new) - quick_log10(flagged);
157       if (offset<0) offset = 0;
158       snprintf(entry + offset, SidebarWidth - dlen - offset + 1,
159               "% d(%d)[%d]", size, new, flagged);
160     } else {
161       offset = SidebarWidth - 3 - quick_log10(size) - dlen - quick_log10(new);
162       if (offset<0) offset = 0;
163       snprintf(entry + offset, SidebarWidth - dlen - offset + 1,
164               "% d(%d)", size, new);
165     }
166   } else {
167     if (flagged>0) {
168       offset = SidebarWidth - 3 - quick_log10(size) - dlen - quick_log10(flagged);
169       if (offset<0) offset = 0;
170       snprintf( entry + offset, SidebarWidth - dlen - offset + 1,
171               "% d[%d]", size,flagged);
172     } else {
173       offset = SidebarWidth - 1 - quick_log10(size) - dlen;
174       if (offset<0) offset = 0;
175       snprintf( entry + offset, SidebarWidth - dlen - offset + 1,
176               "% d", size);
177     }
178   }
179
180   if (option(OPTSHORTENHIERARCHY) && shortened) {
181     free(box);
182   }
183   return entry;
184 }
185
186 void set_curbuffy(char buf[LONG_STRING])
187 {
188   BUFFY* tmp = CurBuffy = Incoming;
189
190   if (!Incoming)
191     return;
192
193   while(1) {
194     if(!strcmp(tmp->path, buf)) {
195       CurBuffy = tmp;
196       break;
197     }
198
199     if(tmp->next)
200       tmp = tmp->next;
201     else
202       break;
203   }
204 }
205
206 void set_buffystats (CONTEXT* Context)
207 {
208   BUFFY* tmp = Incoming;
209   if (!Context)
210     return;
211   while (tmp)
212   {
213     if (strcmp (tmp->path, Context->path) == 0)
214     {
215       tmp->msg_unread = Context->unread;
216       tmp->msgcount = Context->msgcount;
217       tmp->msg_flagged = Context->flagged;
218       break;
219     }
220     tmp = tmp->next;
221   }
222 }
223
224 int draw_sidebar(int menu) {
225
226   int lines = option(OPTHELP) ? 1 : 0;
227   BUFFY *tmp;
228   short delim_len = mutt_strlen (SidebarDelim);
229
230   /* initialize first time */
231   if(!initialized) {
232     prev_show_value = option(OPTMBOXPANE);
233     saveSidebarWidth = SidebarWidth;
234     if(!option(OPTMBOXPANE)) SidebarWidth = 0;
235     initialized = true;
236   }
237
238   /* save or restore the value SidebarWidth */
239   if(prev_show_value != option(OPTMBOXPANE)) {
240     if(prev_show_value && !option(OPTMBOXPANE)) {
241       saveSidebarWidth = SidebarWidth;
242       SidebarWidth = 0;
243     } else if(!prev_show_value && option(OPTMBOXPANE)) {
244       SidebarWidth = saveSidebarWidth;
245       /* after toggle: force recounting of all mail */
246       mutt_buffy_check(1);
247     }
248     prev_show_value = option(OPTMBOXPANE);
249   }
250
251   if ( SidebarWidth == 0 ) return 0;
252
253   /* draw the divider */
254   SETCOLOR(MT_COLOR_STATUS);
255   for (lines = option (OPTSTATUSONTOP) ? 0 : 1; 
256        lines < LINES-1-(menu != MENU_PAGER || option (OPTSTATUSONTOP)); lines++ ) {
257     move(lines, SidebarWidth - delim_len);
258     addstr (NONULL (SidebarDelim));
259   }
260   SETCOLOR(MT_COLOR_NORMAL);
261
262   if ( Incoming == 0 ) return 0;
263   lines = option(OPTHELP) ? 1 : 0; /* go back to the top */
264
265   if ( CurBuffy == 0 ) CurBuffy = Incoming;
266   if ( known_lines != LINES || TopBuffy == 0 || BottomBuffy == 0 ) 
267     calc_boundaries(menu);
268
269   tmp = TopBuffy;
270
271   for ( ; tmp && lines < LINES-1 - (menu != MENU_PAGER || option (OPTSTATUSONTOP)); tmp = tmp->next ) {
272     if ( tmp == CurBuffy )
273       SETCOLOR(MT_COLOR_INDICATOR);
274     else if ( tmp->msg_flagged > 0 )
275       SETCOLOR(MT_COLOR_FLAGGED);
276     else if ( tmp->msg_unread > 0 )
277       SETCOLOR(MT_COLOR_NEW);
278     else
279       SETCOLOR(MT_COLOR_NORMAL);
280
281     move( lines, 0 );
282     if ( Context && !strcmp( tmp->path, Context->path ) ) {
283       printw( "%.*s", SidebarWidth - delim_len,
284               make_sidebar_entry(basename(tmp->path),
285                                  Context->msgcount, Context->unread, Context->flagged));
286       tmp->msg_unread = Context->unread;
287       tmp->msgcount = Context->msgcount;
288       tmp->msg_flagged = Context->flagged;
289     }
290     else
291       printw( "%.*s", SidebarWidth - delim_len,
292               make_sidebar_entry(basename(tmp->path),
293                                  tmp->msgcount,tmp->msg_unread, tmp->msg_flagged));
294     lines++;
295   }
296   SETCOLOR(MT_COLOR_NORMAL);
297   for ( ; lines < LINES - 1 - (menu != MENU_PAGER || option (OPTSTATUSONTOP)); lines++ ) {
298     int i = 0;
299     move( lines, 0 );
300     for ( ; i < SidebarWidth - delim_len; i++ )
301       addch(' ');
302   }
303   return 0;
304 }
305
306 BUFFY * exist_next_new()
307 {
308         BUFFY *tmp = CurBuffy;
309         if(tmp == NULL) return NULL;
310         while (tmp->next != NULL)
311         {
312                 tmp = tmp->next;
313                 if(tmp->msg_unread) return tmp;
314         }
315         return NULL;
316 }
317
318 BUFFY * exist_prev_new()
319 {
320         BUFFY *tmp = CurBuffy;
321         if(tmp == NULL) return NULL;
322         while (tmp->prev != NULL)
323         {
324                 tmp = tmp->prev;
325                 if(tmp->msg_unread) return tmp;
326         }
327         return NULL;
328 }     
329
330
331 void scroll_sidebar(int op, int menu)
332 {
333   BUFFY *tmp;
334
335   if(!SidebarWidth) return;
336   if(!CurBuffy) return;
337
338   switch (op) {
339     case OP_SIDEBAR_NEXT:
340       if ( CurBuffy->next == NULL ) {
341         mutt_error (_("You are on the last mailbox."));
342         return;
343       }
344       CurBuffy = CurBuffy->next;
345       break;
346     case OP_SIDEBAR_NEXT_NEW:
347       if ( (tmp = exist_next_new()) == NULL) {
348         mutt_error (_("No next mailboxes with new mail."));
349         return;
350       }
351       else CurBuffy = tmp;
352       break;
353     case OP_SIDEBAR_PREV:
354       if ( CurBuffy->prev == NULL ) {
355         mutt_error (_("You are on the first mailbox."));
356         return;
357       }
358       CurBuffy = CurBuffy->prev;
359      break;
360     case OP_SIDEBAR_PREV_NEW:
361       if ( (tmp = exist_prev_new()) == NULL) {
362         mutt_error (_("No previous mailbox with new mail."));
363         return;
364       }
365       else CurBuffy = tmp;
366       break;
367      
368     case OP_SIDEBAR_SCROLL_UP:
369       CurBuffy = TopBuffy;
370       if ( CurBuffy != Incoming ) {
371         calc_boundaries(menu);
372         CurBuffy = CurBuffy->prev;
373       }
374       break;
375     case OP_SIDEBAR_SCROLL_DOWN:
376       CurBuffy = BottomBuffy;
377       if ( CurBuffy->next ) {
378         calc_boundaries(menu);
379         CurBuffy = CurBuffy->next;
380       }
381       break;
382     default:
383       return;
384   }
385   calc_boundaries(menu);
386   draw_sidebar(menu);
387 }