Andreas Krennmair:
[apps/madmutt.git] / curs_lib.c
index 1eb0911..a764b6a 100644 (file)
@@ -119,6 +119,29 @@ int _mutt_get_field (/* const */ char *field, char *buf, size_t buflen, int comp
   return (ret);
 }
 
+int _mutt_get_field_att (/* const */ char *field, char *buf, size_t buflen, int complete, int multiple, char ***files, int *numfiles)
+{
+  int ret;
+  int x, y;
+
+  ENTER_STATE *es = mutt_new_enter_state();
+  
+  do
+  {
+    CLEARLINE (LINES-1);
+    addstr (field);
+    mutt_refresh ();
+    getyx (stdscr, y, x);
+    ret = _mutt_enter_string_att (buf, buflen, y, x, complete, multiple, files, numfiles, es);
+  }
+  while (ret == 1);
+  CLEARLINE (LINES-1);
+  mutt_free_enter_state (&es);
+  
+  return (ret);
+}
+
+
 int mutt_get_password (char *msg, char *buf, size_t buflen)
 {
   int rc;