Andreas Krennmair:
[apps/madmutt.git] / status.c
index 42d4fce..f0b3c3a 100644 (file)
--- a/status.c
+++ b/status.c
@@ -14,7 +14,7 @@
  *     You should have received a copy of the GNU General Public License
  *     along with this program; if not, write to the Free Software
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
- */ 
+ */
 
 #if HAVE_CONFIG_H
 # include "config.h"
@@ -34,9 +34,9 @@
 static char *get_sort_str (char *buf, size_t buflen, int method)
 {
   snprintf (buf, buflen, "%s%s%s",
-           (method & SORT_REVERSE) ? "reverse-" : "",
-           (method & SORT_LAST) ? "last-" : "",
-           mutt_getnamebyvalue (method & SORT_MASK, SortMethods));
+            (method & SORT_REVERSE) ? "reverse-" : "",
+            (method & SORT_LAST) ? "last-" : "",
+            mutt_getnamebyvalue (method & SORT_MASK, SortMethods));
   return buf;
 }
 
@@ -58,264 +58,252 @@ static char *get_sort_str (char *buf, size_t buflen, int method)
  * %t = # of tagged messages [option]
  * %v = Mutt-ng version 
  * %V = currently active limit pattern [option] */
-static const char *
-status_format_str (char *buf, size_t buflen, char op, const char *src,
-                  const char *prefix, const char *ifstring,
-                  const char *elsestring,
-                  unsigned long data, format_flag flags)
+static const char *status_format_str (char *buf, size_t buflen, char op,
+                                      const char *src, const char *prefix,
+                                      const char *ifstring,
+                                      const char *elsestring,
+                                      unsigned long data, format_flag flags)
 {
   char fmt[SHORT_STRING], tmp[SHORT_STRING], *cp, *p;
   int count, optional = (flags & M_FORMAT_OPTIONAL);
   MUTTMENU *menu = (MUTTMENU *) data;
 
   *buf = 0;
-  switch (op)
-  {
-    case 'b':
-      if (!optional)
-      {
-       snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
-       snprintf (buf, buflen, fmt, mutt_buffy_check (0));
-      }
-      else if (!mutt_buffy_check (0))
-       optional = 0;
-      break;
+  switch (op) {
+  case 'b':
+    if (!optional) {
+      snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
+      snprintf (buf, buflen, fmt, mutt_buffy_check (0));
+    }
+    else if (!mutt_buffy_check (0))
+      optional = 0;
+    break;
 
-    case 'B':
-      snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
+  case 'B':
+    snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
 #ifdef USE_COMPRESSED
-      if (Context && Context->compressinfo && Context->realpath)
-      {
-       if ((p = strrchr (Context->realpath, '/')))
-         strfcpy (tmp, p + 1, sizeof (tmp));
-       else
-         strfcpy (tmp, Context->realpath, sizeof (tmp));
-      } 
+    if (Context && Context->compressinfo && Context->realpath) {
+      if ((p = strrchr (Context->realpath, '/')))
+        strfcpy (tmp, p + 1, sizeof (tmp));
       else
+        strfcpy (tmp, Context->realpath, sizeof (tmp));
+    }
+    else
 #endif
-      if (Context && Context->path)
-      {
-       if ((p = strrchr (Context->path, '/')))
-         strfcpy (tmp, p + 1, sizeof (tmp));
-       else
-         strfcpy (tmp, Context->path, sizeof (tmp));
-      }
+    if (Context && Context->path) {
+      if ((p = strrchr (Context->path, '/')))
+        strfcpy (tmp, p + 1, sizeof (tmp));
       else
-         strfcpy (tmp, _("no mailbox"), sizeof (tmp));
-      snprintf (buf, buflen, fmt, tmp);
-      break;
-
-    case 'd':
-      if (!optional)
-      {
-       snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
-       snprintf (buf, buflen, fmt, Context ? Context->deleted : 0);
-      }
-      else if (!Context || !Context->deleted)
-       optional = 0;
-      break;
+        strfcpy (tmp, Context->path, sizeof (tmp));
+    }
+    else
+      strfcpy (tmp, _("no mailbox"), sizeof (tmp));
+    snprintf (buf, buflen, fmt, tmp);
+    break;
+
+  case 'd':
+    if (!optional) {
+      snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
+      snprintf (buf, buflen, fmt, Context ? Context->deleted : 0);
+    }
+    else if (!Context || !Context->deleted)
+      optional = 0;
+    break;
 
-    case 'h':
-      snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
-      snprintf (buf, buflen, fmt, NONULL(Hostname));
-      break;
+  case 'h':
+    snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
+    snprintf (buf, buflen, fmt, NONULL (Hostname));
+    break;
 
-    case 'f':
-      snprintf (fmt, sizeof(fmt), "%%%ss", prefix);
+  case 'f':
+    snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
 #ifdef USE_COMPRESSED
-      if (Context && Context->compressinfo && Context->realpath)
-      {
-        strfcpy (tmp, Context->realpath, sizeof (tmp));
-        mutt_pretty_mailbox (tmp);
-      }
-      else
+    if (Context && Context->compressinfo && Context->realpath) {
+      strfcpy (tmp, Context->realpath, sizeof (tmp));
+      mutt_pretty_mailbox (tmp);
+    }
+    else
 #endif
-      if (Context && Context->path)
-      {
-       strfcpy (tmp, Context->path, sizeof (tmp));
-       mutt_pretty_mailbox (tmp);
-      }
-      else
-       strfcpy (tmp, _("(no mailbox)"), sizeof (tmp));
-      snprintf (buf, buflen, fmt, tmp);
-      break;
-
-    case 'F':
-      if (!optional)
-      {
-       snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
-       snprintf (buf, buflen, fmt, Context ? Context->flagged : 0);
-      }
-      else if (!Context || !Context->flagged)
-       optional = 0;
-      break;
-
-    case 'l':
-      if (!optional)
-      {
-       snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
-       mutt_pretty_size (tmp, sizeof (tmp), Context ? Context->size : 0);
-       snprintf (buf, buflen, fmt, tmp);
-      }
-      else if (!Context || !Context->size)
-       optional = 0;
-      break;
-
-    case 'L':
-      if (!optional)
-      {
-       snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
-       mutt_pretty_size (tmp, sizeof (tmp), Context ? Context->vsize: 0);
-       snprintf (buf, buflen, fmt, tmp);
-      }
-      else if (!Context || !Context->pattern)
-       optional = 0;
-      break;
-
-    case 'm':
-      if (!optional)
-      {
-       snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
-       snprintf (buf, buflen, fmt, Context ? Context->msgcount : 0);
-      }
-      else if (!Context || !Context->msgcount)
-       optional = 0;
-      break;
-
-    case 'M':
-      if (!optional)
-      {
-       snprintf (fmt, sizeof(fmt), "%%%sd", prefix);
-       snprintf (buf, buflen, fmt, Context ? Context->vcount : 0);
-      }
-      else if (!Context || !Context->pattern)
-       optional = 0;
-      break;
-
-    case 'n':
-      if (!optional)
-      {
-       snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
-       snprintf (buf, buflen, fmt, Context ? Context->new : 0);
-      }
-      else if (!Context || Context->new <= 0)
-       optional = 0;
-      break;
-
-    case 'o':
-      if (!optional)
-      {
-       snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
-       snprintf (buf, buflen, fmt, Context ? Context->unread - Context->new : 0);
-      }
-      else if (!Context || !(Context->unread - Context->new))
-       optional = 0;
-      break;
+    if (Context && Context->path) {
+      strfcpy (tmp, Context->path, sizeof (tmp));
+      mutt_pretty_mailbox (tmp);
+    }
+    else
+      strfcpy (tmp, _("(no mailbox)"), sizeof (tmp));
+    snprintf (buf, buflen, fmt, tmp);
+    break;
+
+  case 'F':
+    if (!optional) {
+      snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
+      snprintf (buf, buflen, fmt, Context ? Context->flagged : 0);
+    }
+    else if (!Context || !Context->flagged)
+      optional = 0;
+    break;
 
-    case 'p':
-      count = mutt_num_postponed (0);
-      if (!optional)
-      {
-       snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
-       snprintf (buf, buflen, fmt, count);
-      }
-      else if (!count)
-       optional = 0;
-      break;
+  case 'l':
+    if (!optional) {
+      snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
+      mutt_pretty_size (tmp, sizeof (tmp), Context ? Context->size : 0);
+      snprintf (buf, buflen, fmt, tmp);
+    }
+    else if (!Context || !Context->size)
+      optional = 0;
+    break;
 
-    case 'P':
-      if (menu->top + menu->pagelen >= menu->max)
-       cp = menu->top ? "end" : "all";
-      else
-      {
-       count = (100 * (menu->top + menu->pagelen)) / menu->max;
-       snprintf (tmp, sizeof (tmp), "%d%%", count);
-       cp = tmp;
-      }
+  case 'L':
+    if (!optional) {
       snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
-      snprintf (buf, buflen, fmt, cp);
-      break;
+      mutt_pretty_size (tmp, sizeof (tmp), Context ? Context->vsize : 0);
+      snprintf (buf, buflen, fmt, tmp);
+    }
+    else if (!Context || !Context->pattern)
+      optional = 0;
+    break;
+
+  case 'm':
+    if (!optional) {
+      snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
+      snprintf (buf, buflen, fmt, Context ? Context->msgcount : 0);
+    }
+    else if (!Context || !Context->msgcount)
+      optional = 0;
+    break;
+
+  case 'M':
+    if (!optional) {
+      snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
+      snprintf (buf, buflen, fmt, Context ? Context->vcount : 0);
+    }
+    else if (!Context || !Context->pattern)
+      optional = 0;
+    break;
+
+  case 'n':
+    if (!optional) {
+      snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
+      snprintf (buf, buflen, fmt, Context ? Context->new : 0);
+    }
+    else if (!Context || Context->new <= 0)
+      optional = 0;
+    break;
+
+  case 'o':
+    if (!optional) {
+      snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
+      snprintf (buf, buflen, fmt,
+                Context ? Context->unread - Context->new : 0);
+    }
+    else if (!Context || !(Context->unread - Context->new))
+      optional = 0;
+    break;
+
+  case 'p':
+    count = mutt_num_postponed (0);
+    if (!optional) {
+      snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
+      snprintf (buf, buflen, fmt, count);
+    }
+    else if (!count)
+      optional = 0;
+    break;
+
+  case 'P':
+    if (menu->top + menu->pagelen >= menu->max)
+      cp = menu->top ? "end" : "all";
+    else {
+      count = (100 * (menu->top + menu->pagelen)) / menu->max;
+      snprintf (tmp, sizeof (tmp), "%d%%", count);
+      cp = tmp;
+    }
+    snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
+    snprintf (buf, buflen, fmt, cp);
+    break;
 
-    case 'r':
+  case 'r':
     {
       int i = 0;
 
-      if (Context)
-      {
-       i = option(OPTATTACHMSG) ? 3 : ((Context->readonly ||
-          Context->dontwrite) ? 2 : (Context->changed || (
+      if (Context) {
+        i = option (OPTATTACHMSG) ? 3 : ((Context->readonly ||
+                                          Context->dontwrite) ? 2 : (Context->
+                                                                     changed
+                                                                     || (
 #ifdef USE_IMAP
-        /* deleted doesn't necessarily mean changed in IMAP */
-          Context->magic != M_IMAP &&
+                                                                             /* deleted doesn't necessarily mean changed in IMAP */
+                                                                             Context->
+                                                                             magic
+                                                                             !=
+                                                                             M_IMAP
+                                                                             &&
 #endif
-          Context->deleted)) ? 1 : 0);
+                                                                             Context->
+                                                                             deleted))
+                                         ? 1 : 0);
       }
-      
+
       if (!StChars)
-       buf[0] = 0;
-      else if (i >= mutt_strlen(StChars))
-       buf[0] = StChars[0];
+        buf[0] = 0;
+      else if (i >= mutt_strlen (StChars))
+        buf[0] = StChars[0];
       else
-       buf[0] = StChars[i];
+        buf[0] = StChars[i];
 
       buf[1] = 0;
       break;
     }
-      
-    case 's':
-      snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
-      snprintf (buf, buflen, fmt,
-               get_sort_str (tmp, sizeof (tmp), Sort));
-      break;
 
-    case 'S':
-      snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
-      snprintf (buf, buflen, fmt,
-               get_sort_str (tmp, sizeof (tmp), SortAux));
-      break;
+  case 's':
+    snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
+    snprintf (buf, buflen, fmt, get_sort_str (tmp, sizeof (tmp), Sort));
+    break;
 
-    case 't':
-      if (!optional)
-      {
-       snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
-       snprintf (buf, buflen, fmt, Context ? Context->tagged : 0);
-      }
-      else if (!Context || !Context->tagged)
-       optional = 0;
-      break;
+  case 'S':
+    snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
+    snprintf (buf, buflen, fmt, get_sort_str (tmp, sizeof (tmp), SortAux));
+    break;
 
-    case 'u':
-      if (!optional)
-      {
-       snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
-       snprintf (buf, buflen, fmt, Context ? Context->unread : 0);
-      }
-      else if (!Context || !Context->unread)
-       optional = 0;
-      break;
+  case 't':
+    if (!optional) {
+      snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
+      snprintf (buf, buflen, fmt, Context ? Context->tagged : 0);
+    }
+    else if (!Context || !Context->tagged)
+      optional = 0;
+    break;
+
+  case 'u':
+    if (!optional) {
+      snprintf (fmt, sizeof (fmt), "%%%sd", prefix);
+      snprintf (buf, buflen, fmt, Context ? Context->unread : 0);
+    }
+    else if (!Context || !Context->unread)
+      optional = 0;
+    break;
 
-    case 'v':
-      snprintf (fmt, sizeof (fmt), "Mutt-ng %%s");
-      snprintf (buf, buflen, fmt, MUTT_VERSION);
-      break;
+  case 'v':
+    snprintf (fmt, sizeof (fmt), "Mutt-ng %%s");
+    snprintf (buf, buflen, fmt, MUTT_VERSION);
+    break;
 
-    case 'V':
-      if (!optional)
-      {
-       snprintf (fmt, sizeof(fmt), "%%%ss", prefix);
-       snprintf (buf, buflen, fmt, (Context && Context->pattern) ? Context->pattern : "");
-      }
-      else if (!Context || !Context->pattern)
-       optional = 0;
-      break;
+  case 'V':
+    if (!optional) {
+      snprintf (fmt, sizeof (fmt), "%%%ss", prefix);
+      snprintf (buf, buflen, fmt,
+                (Context && Context->pattern) ? Context->pattern : "");
+    }
+    else if (!Context || !Context->pattern)
+      optional = 0;
+    break;
 
-    case 0:
-      *buf = 0;
-      return (src);
+  case 0:
+    *buf = 0;
+    return (src);
 
-    default:
-      snprintf (buf, buflen, "%%%s%c", prefix, op);
-      break;
+  default:
+    snprintf (buf, buflen, "%%%s%c", prefix, op);
+    break;
   }
 
   if (optional)
@@ -326,7 +314,9 @@ status_format_str (char *buf, size_t buflen, char op, const char *src,
   return (src);
 }
 
-void menu_status_line (char *buf, size_t buflen, MUTTMENU *menu, const char *p)
+void menu_status_line (char *buf, size_t buflen, MUTTMENU * menu,
+                       const char *p)
 {
-  mutt_FormatString (buf, buflen, p, status_format_str, (unsigned long) menu, 0);
+  mutt_FormatString (buf, buflen, p, status_format_str, (unsigned long) menu,
+                     0);
 }