]> git.wh0rd.org Git - nano.git/commitdiff
move functions specific to the file browser to their own source file,
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 5 Nov 2005 20:01:11 +0000 (20:01 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 5 Nov 2005 20:01:11 +0000 (20:01 +0000)
browser.c

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3094 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
po/ChangeLog
po/POTFILES.in
src/Makefile.am
src/browser.c [new file with mode: 0644]
src/files.c
src/proto.h

index 17d70cd204e8beaee532fa0206926db0d71c0066..13e9b61eab8f32a8f01403de95929e71d3365d6a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -55,6 +55,11 @@ CVS code -
          do_replace_loop(), do_delete(), nano.1, nanorc.5, nano.texi,
          and nanorc.sample. (DLR, suggested by Jaime
          <re2823@Safe-mail.net>)
+       - Move functions specific to the file browser to their own
+         source file, and adjust related variables accordingly.  New
+         file browser.c; changes to striponedir(), browser_init(),
+         do_browser(), and do_browse_from() (all moved to browser.c).
+         (DLR)
 - files.c:
   read_file()
        - Remove apparently unneeded logic to handle a case where
@@ -79,7 +84,7 @@ CVS code -
        - Tweak the "c-file" regex for characters to properly accept
          '\"' and reject '"' and '''. (DLR)
 - src/Makefile.am:
-       - Add help.c and prompt.c to nano_SOURCES. (DLR)
+       - Add browser.c, help.c, and prompt.c to nano_SOURCES. (DLR)
 
 GNU nano 1.3.9 - 2005.10.23
 - General:
index 0e5bc418af99b58cca77fe0c14aa74a74fad88e6..574a24407f0581425b93035ea9d3f7b970bde80c 100644 (file)
@@ -1,3 +1,7 @@
+2005-11-05  David Lawrence Ramsey  <pooka109@cox.net>
+
+       * POTFILES.in: Add browser.c.
+
 2005-11-01  David Lawrence Ramsey  <pooka109@cox.net>
 
        * POTFILES.in: Add help.c.
index ed05a329a1ad57479113a15e5a309833a9eed439..0ccc9d611d6ac1a348cbe364075fc54fc23b5a12 100644 (file)
@@ -1,6 +1,7 @@
 # $Id$
 # List of source files containing translatable strings.
 
+src/browser.c
 src/files.c
 src/global.c
 src/help.c
index 08322aec0be5e206526585726a01bf9349aff1e7..ab86112567639e68edf4b4c31c86636cff4e67bd 100644 (file)
@@ -4,7 +4,8 @@ INCLUDES = -Iintl -DLOCALEDIR=\"$(localedir)\" -DSYSCONFDIR=\"$(sysconfdir)\"
 ACLOCAL_AMFLAGS = -I m4
 
 bin_PROGRAMS =         nano
-nano_SOURCES = chars.c \
+nano_SOURCES = browser.c \
+               chars.c \
                color.c \
                cut.c \
                files.c \
diff --git a/src/browser.c b/src/browser.c
new file mode 100644 (file)
index 0000000..32cffa5
--- /dev/null
@@ -0,0 +1,540 @@
+/* $Id$ */
+/**************************************************************************
+ *   browser.c                                                            *
+ *                                                                        *
+ *   Copyright (C) 2005 Chris Allegretta                                  *
+ *   This program is free software; you can redistribute it and/or modify *
+ *   it under the terms of the GNU General Public License as published by *
+ *   the Free Software Foundation; either version 2, or (at your option)  *
+ *   any later version.                                                   *
+ *                                                                        *
+ *   This program is distributed in the hope that it will be useful, but  *
+ *   WITHOUT ANY WARRANTY; without even the implied warranty of           *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU    *
+ *   General Public License for more details.                             *
+ *                                                                        *
+ *   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., 51 Franklin St, Fifth Floor, Boston, MA            *
+ *   02110-1301, USA.                                                     *
+ *                                                                        *
+ **************************************************************************/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <stdio.h>
+#include <string.h>
+#include <unistd.h>
+#include <errno.h>
+#include "proto.h"
+
+#ifndef DISABLE_BROWSER
+
+/* Strip one directory from the end of path. */
+void striponedir(char *path)
+{
+    char *tmp;
+
+    assert(path != NULL);
+
+    tmp = strrchr(path, '/');
+
+    if (tmp != NULL)
+       *tmp = '\0';
+}
+
+/* Return a list of files contained in the directory path.  *longest is
+ * the maximum display length of a file, up to COLS - 1 (but at least
+ * 7).  *numents is the number of files.  We assume path exists and is a
+ * directory.  If neither is true, we return NULL. */
+char **browser_init(const char *path, int *longest, size_t *numents, DIR
+       *dir)
+{
+    const struct dirent *nextdir;
+    char **filelist;
+    size_t i = 0, path_len;
+
+    assert(dir != NULL);
+
+    *longest = 0;
+
+    while ((nextdir = readdir(dir)) != NULL) {
+       size_t dlen;
+
+       /* Don't show the "." entry. */
+       if (strcmp(nextdir->d_name, ".") == 0)
+          continue;
+       i++;
+
+       dlen = strlenpt(nextdir->d_name);
+       if (dlen > *longest)
+           *longest = (dlen > COLS - 1) ? COLS - 1 : dlen;
+    }
+
+    *numents = i;
+    rewinddir(dir);
+    *longest += 10;
+
+    filelist = (char **)nmalloc(*numents * sizeof(char *));
+
+    path_len = strlen(path);
+
+    i = 0;
+
+    while ((nextdir = readdir(dir)) != NULL && i < *numents) {
+       /* Don't show the "." entry. */
+       if (strcmp(nextdir->d_name, ".") == 0)
+          continue;
+
+       filelist[i] = charalloc(path_len + strlen(nextdir->d_name) + 1);
+       sprintf(filelist[i], "%s%s", path, nextdir->d_name);
+       i++;
+    }
+
+    /* Maybe the number of files in the directory changed between the
+     * first time we scanned and the second.  i is the actual length of
+     * filelist, so record it. */
+    *numents = i;
+    closedir(dir);
+
+    if (*longest > COLS - 1)
+       *longest = COLS - 1;
+    if (*longest < 7)
+       *longest = 7;
+
+    return filelist;
+}
+
+/* Our browser function.  path is the path to start browsing from.
+ * Assume path has already been tilde-expanded. */
+char *do_browser(char *path, DIR *dir)
+{
+    int kbinput, longest, selected, width;
+    bool meta_key, func_key, old_const_update = ISSET(CONST_UPDATE);
+    size_t numents;
+    char **filelist, *retval = NULL;
+
+    curs_set(0);
+    blank_statusbar();
+    bottombars(browser_list);
+    wnoutrefresh(bottomwin);
+
+#if !defined(DISABLE_HELP) || !defined(DISABLE_MOUSE)
+    /* Set currshortcut so the user can click in the shortcut area, and
+     * so the browser help screen will come up. */
+    currshortcut = browser_list;
+#endif
+
+    UNSET(CONST_UPDATE);
+
+  change_browser_directory:
+       /* We go here after the user selects a new directory. */
+
+    kbinput = ERR;
+    selected = 0;
+    width = 0;
+
+    path = mallocstrassn(path, get_full_path(path));
+
+    /* Assume that path exists and ends with a slash. */
+    assert(path != NULL && path[strlen(path) - 1] == '/');
+
+    /* Get the list of files. */
+    filelist = browser_init(path, &longest, &numents, dir);
+
+    assert(filelist != NULL);
+
+    /* Sort the list. */
+    qsort(filelist, numents, sizeof(char *), diralphasort);
+
+    titlebar(path);
+
+    do {
+       bool abort = FALSE;
+       int j, col = 0, editline = 0, fileline;
+       int filecols = 0;
+           /* Used only if width == 0, to calculate the number of files
+            * per row below. */
+       struct stat st;
+       char *new_path;
+           /* Used by the "Go To Directory" prompt. */
+#ifndef DISABLE_MOUSE
+       MEVENT mevent;
+#endif
+
+       check_statusblank();
+
+       /* Compute the line number we're on now, so that we don't divide
+        * by zero later. */
+       fileline = selected;
+       if (width != 0)
+           fileline /= width;
+
+       switch (kbinput) {
+#ifndef DISABLE_MOUSE
+           case KEY_MOUSE:
+               if (getmouse(&mevent) == ERR)
+                   break;
+
+               /* If we clicked in the edit window, we probably clicked
+                * on a file. */
+               if (wenclose(edit, mevent.y, mevent.x)) {
+                   int old_selected = selected;
+
+                   /* Subtract out the size of topwin. */
+                   mevent.y -= 2 - no_more_space();
+
+                   /* longest is the width of each column.  There are
+                    * two spaces between each column. */
+                   selected = (fileline / editwinrows) * editwinrows *
+                       width + mevent.y * width + mevent.x /
+                       (longest + 2);
+
+                   /* If they clicked beyond the end of a row, select
+                    * the end of that row. */
+                   if (mevent.x > width * (longest + 2))
+                       selected--;
+
+                   /* If we're off the screen, reset to the last item.
+                    * If we clicked the same place as last time, select
+                    * this name! */
+                   if (selected > numents - 1)
+                       selected = numents - 1;
+                   else if (old_selected == selected)
+                       /* Put back the 'select' key. */
+                       unget_kbinput(NANO_ENTER_KEY, FALSE, FALSE);
+               } else {
+                   /* We must have clicked a shortcut.  Put back the
+                    * equivalent shortcut key. */
+                   int mouse_x, mouse_y;
+                   get_mouseinput(&mouse_x, &mouse_y, TRUE);
+               }
+
+               break;
+#endif
+           case NANO_PREVLINE_KEY:
+               if (selected >= width)
+                   selected -= width;
+               break;
+           case NANO_BACK_KEY:
+               if (selected > 0)
+                   selected--;
+               break;
+           case NANO_NEXTLINE_KEY:
+               if (selected + width <= numents - 1)
+                   selected += width;
+               break;
+           case NANO_FORWARD_KEY:
+               if (selected < numents - 1)
+                   selected++;
+               break;
+           case NANO_PREVPAGE_KEY:
+           case NANO_PREVPAGE_FKEY:
+           case '-': /* Pico compatibility. */
+               if (selected >= (editwinrows + fileline % editwinrows) *
+                       width)
+                   selected -= (editwinrows + fileline % editwinrows) *
+                       width;
+               else
+                   selected = 0;
+               break;
+           case NANO_NEXTPAGE_KEY:
+           case NANO_NEXTPAGE_FKEY:
+           case ' ': /* Pico compatibility. */
+               selected += (editwinrows - fileline % editwinrows) *
+                       width;
+               if (selected >= numents)
+                   selected = numents - 1;
+               break;
+           case NANO_HELP_KEY:
+           case NANO_HELP_FKEY:
+           case '?': /* Pico compatibility. */
+#ifndef DISABLE_HELP
+               do_help();
+               curs_set(0);
+#else
+               nano_disabled_msg();
+#endif
+               break;
+           case NANO_ENTER_KEY:
+           case 'S': /* Pico compatibility. */
+           case 's':
+               /* You can't move up from "/". */
+               if (strcmp(filelist[selected], "/..") == 0) {
+                   statusbar(_("Can't move up a directory"));
+                   beep();
+                   break;
+               }
+
+#ifndef DISABLE_OPERATINGDIR
+               /* Note: the selected file can be outside the operating
+                * directory if it's ".." or if it's a symlink to a
+                * directory outside the operating directory. */
+               if (check_operating_dir(filelist[selected], FALSE)) {
+                   statusbar(
+                       _("Can't go outside of %s in restricted mode"),
+                       operating_dir);
+                   beep();
+                   break;
+               }
+#endif
+
+               if (stat(filelist[selected], &st) == -1) {
+                   statusbar(_("Error reading %s: %s"),
+                       filelist[selected], strerror(errno));
+                   beep();
+                   break;
+               }
+
+               if (!S_ISDIR(st.st_mode)) {
+                   retval = mallocstrcpy(retval, filelist[selected]);
+                   abort = TRUE;
+                   break;
+               }
+
+               dir = opendir(filelist[selected]);
+               if (dir == NULL) {
+                   /* We can't open this dir for some reason.
+                    * Complain. */
+                   statusbar(_("Error reading %s: %s"),
+                       filelist[selected], strerror(errno));
+                   break;
+               }
+
+               path = mallocstrcpy(path, filelist[selected]);
+
+               /* Start over again with the new path value. */
+               free_chararray(filelist, numents);
+               goto change_browser_directory;
+
+           /* Refresh the screen. */
+           case NANO_REFRESH_KEY:
+               total_redraw();
+               break;
+
+           /* Go to a specific directory. */
+           case NANO_GOTOLINE_KEY:
+           case NANO_GOTOLINE_FKEY:
+           case 'G': /* Pico compatibility. */
+           case 'g':
+               curs_set(1);
+
+               j = statusq(FALSE, gotodir_list, "",
+#ifndef NANO_SMALL
+                       NULL,
+#endif
+                       _("Go To Directory"));
+
+               curs_set(0);
+               bottombars(browser_list);
+
+               if (j < 0) {
+                   statusbar(_("Cancelled"));
+                   break;
+               }
+
+               new_path = real_dir_from_tilde(answer);
+
+               if (new_path[0] != '/') {
+                   new_path = charealloc(new_path, strlen(path) +
+                       strlen(answer) + 1);
+                   sprintf(new_path, "%s%s", path, answer);
+               }
+
+#ifndef DISABLE_OPERATINGDIR
+               if (check_operating_dir(new_path, FALSE)) {
+                   statusbar(
+                       _("Can't go outside of %s in restricted mode"),
+                       operating_dir);
+                   free(new_path);
+                   break;
+               }
+#endif
+
+               dir = opendir(new_path);
+               if (dir == NULL) {
+                   /* We can't open this dir for some reason.
+                    * Complain. */
+                   statusbar(_("Error reading %s: %s"), answer,
+                       strerror(errno));
+                   free(new_path);
+                   break;
+               }
+
+               /* Start over again with the new path value. */
+               free(path);
+               path = new_path;
+               free_chararray(filelist, numents);
+               goto change_browser_directory;
+
+           /* Abort the browser. */
+           case NANO_EXIT_KEY:
+           case NANO_EXIT_FKEY:
+           case 'E': /* Pico compatibility. */
+           case 'e':
+               abort = TRUE;
+               break;
+       }
+
+       if (abort)
+           break;
+
+       blank_edit();
+
+       if (width != 0)
+           j = width * editwinrows *
+               ((selected / width) / editwinrows);
+       else
+           j = 0;
+
+       wmove(edit, 0, 0);
+
+       {
+           size_t foo_len = mb_cur_max() * 7;
+           char *foo = charalloc(foo_len + 1);
+
+           for (; j < numents && editline <= editwinrows - 1; j++) {
+               char *disp = display_string(tail(filelist[j]), 0,
+                       longest, FALSE);
+
+               /* Highlight the currently selected file/dir. */
+               if (j == selected)
+                   wattron(edit, A_REVERSE);
+
+               blank_line(edit, editline, col, longest);
+               mvwaddstr(edit, editline, col, disp);
+               free(disp);
+
+               col += longest;
+               filecols++;
+
+               /* Show file info also.  We don't want to report file
+                * sizes for links, so we use lstat().  Also, stat() and
+                * lstat() return an error if, for example, the file is
+                * deleted while the file browser is open.  In that
+                * case, we report "--" as the file info. */
+               if (lstat(filelist[j], &st) == -1 ||
+                       S_ISLNK(st.st_mode)) {
+                   /* Aha!  It's a symlink!  Now, is it a dir?  If so,
+                    * mark it as such. */
+                   if (stat(filelist[j], &st) == 0 &&
+                       S_ISDIR(st.st_mode)) {
+                       strncpy(foo, _("(dir)"), foo_len);
+                       foo[foo_len] = '\0';
+                   } else
+                       strcpy(foo, "--");
+               } else if (S_ISDIR(st.st_mode)) {
+                   strncpy(foo, _("(dir)"), foo_len);
+                   foo[foo_len] = '\0';
+               } else if (st.st_size < (1 << 10)) /* less than 1 k. */
+                   sprintf(foo, "%4u  B", (unsigned int)st.st_size);
+               else if (st.st_size < (1 << 20)) /* less than 1 meg. */
+                   sprintf(foo, "%4u KB",
+                       (unsigned int)(st.st_size >> 10));
+               else if (st.st_size < (1 << 30)) /* less than 1 gig. */
+                   sprintf(foo, "%4u MB",
+                       (unsigned int)(st.st_size >> 20));
+               else
+                   sprintf(foo, "%4u GB",
+                       (unsigned int)(st.st_size >> 30));
+
+               mvwaddnstr(edit, editline, col - strlen(foo), foo,
+                       foo_len);
+
+               if (j == selected)
+                   wattroff(edit, A_REVERSE);
+
+               /* Add some space between the columns. */
+               col += 2;
+
+               /* If the next entry isn't going to fit on the line,
+                * move to the next line. */
+               if (col > COLS - longest) {
+                   editline++;
+                   col = 0;
+                   if (width == 0)
+                       width = filecols;
+               }
+
+               wmove(edit, editline, col);
+           }
+
+           free(foo);
+       }
+
+       wnoutrefresh(edit);
+    } while ((kbinput = get_kbinput(edit, &meta_key, &func_key)) !=
+       NANO_EXIT_KEY && kbinput != NANO_EXIT_FKEY);
+
+    blank_edit();
+    titlebar(NULL);
+    edit_refresh();
+    curs_set(1);
+    if (old_const_update)
+       SET(CONST_UPDATE);
+
+    /* Clean up. */
+    free_chararray(filelist, numents);
+    free(path);
+
+    return retval;
+}
+
+/* The file browser front end.  We check to see if inpath has a dir in
+ * it.  If it does, we start do_browser() from there.  Otherwise, we
+ * start do_browser() from the current directory. */
+char *do_browse_from(const char *inpath)
+{
+    struct stat st;
+    char *path;
+       /* This holds the tilde-expanded version of inpath. */
+    DIR *dir = NULL;
+
+    assert(inpath != NULL);
+
+    path = real_dir_from_tilde(inpath);
+
+    /* Perhaps path is a directory.  If so, we'll pass it to
+     * do_browser().  Or perhaps path is a directory / a file.  If so,
+     * we'll try stripping off the last path element and passing it to
+     * do_browser().  Or perhaps path doesn't have a directory portion
+     * at all.  If so, we'll just pass the current directory to
+     * do_browser(). */
+    if (stat(path, &st) == -1 || !S_ISDIR(st.st_mode)) {
+       striponedir(path);
+       if (stat(path, &st) == -1 || !S_ISDIR(st.st_mode)) {
+           free(path);
+
+           path = charalloc(PATH_MAX + 1);
+           path = getcwd(path, PATH_MAX + 1);
+
+           if (path != NULL)
+               align(&path);
+       }
+    }
+
+#ifndef DISABLE_OPERATINGDIR
+    /* If the resulting path isn't in the operating directory, use
+     * the operating directory instead. */
+    if (check_operating_dir(path, FALSE)) {
+       if (path != NULL)
+           free(path);
+       path = mallocstrcpy(NULL, operating_dir);
+    }
+#endif
+
+    if (path != NULL)
+       dir = opendir(path);
+
+    if (dir == NULL) {
+       beep();
+       free(path);
+       return NULL;
+    }
+
+    return do_browser(path, dir);
+}
+
+#endif /* !DISABLE_BROWSER */
index 6d864bb6f653ad20ca4d23bfbc87984d8ae44ed1..65d0b7bde145b3bc4d840908502ae02de7ac95e5 100644 (file)
@@ -24,8 +24,8 @@
 #include <config.h>
 #endif
 
-#include <string.h>
 #include <stdio.h>
+#include <string.h>
 #include <unistd.h>
 #include <utime.h>
 #include <fcntl.h>
@@ -2246,514 +2246,6 @@ const char *tail(const char *foo)
     return tmp;
 }
 
-#ifndef DISABLE_BROWSER
-/* Strip one directory from the end of path. */
-void striponedir(char *path)
-{
-    char *tmp;
-
-    assert(path != NULL);
-
-    tmp = strrchr(path, '/');
-
-    if (tmp != NULL)
-       *tmp = '\0';
-}
-
-/* Return a list of files contained in the directory path.  *longest is
- * the maximum display length of a file, up to COLS - 1 (but at least
- * 7).  *numents is the number of files.  We assume path exists and is a
- * directory.  If neither is true, we return NULL. */
-char **browser_init(const char *path, int *longest, size_t *numents, DIR
-       *dir)
-{
-    const struct dirent *nextdir;
-    char **filelist;
-    size_t i = 0, path_len;
-
-    assert(dir != NULL);
-
-    *longest = 0;
-
-    while ((nextdir = readdir(dir)) != NULL) {
-       size_t dlen;
-
-       /* Don't show the "." entry. */
-       if (strcmp(nextdir->d_name, ".") == 0)
-          continue;
-       i++;
-
-       dlen = strlenpt(nextdir->d_name);
-       if (dlen > *longest)
-           *longest = (dlen > COLS - 1) ? COLS - 1 : dlen;
-    }
-
-    *numents = i;
-    rewinddir(dir);
-    *longest += 10;
-
-    filelist = (char **)nmalloc(*numents * sizeof(char *));
-
-    path_len = strlen(path);
-
-    i = 0;
-
-    while ((nextdir = readdir(dir)) != NULL && i < *numents) {
-       /* Don't show the "." entry. */
-       if (strcmp(nextdir->d_name, ".") == 0)
-          continue;
-
-       filelist[i] = charalloc(path_len + strlen(nextdir->d_name) + 1);
-       sprintf(filelist[i], "%s%s", path, nextdir->d_name);
-       i++;
-    }
-
-    /* Maybe the number of files in the directory changed between the
-     * first time we scanned and the second.  i is the actual length of
-     * filelist, so record it. */
-    *numents = i;
-    closedir(dir);
-
-    if (*longest > COLS - 1)
-       *longest = COLS - 1;
-    if (*longest < 7)
-       *longest = 7;
-
-    return filelist;
-}
-
-/* Our browser function.  path is the path to start browsing from.
- * Assume path has already been tilde-expanded. */
-char *do_browser(char *path, DIR *dir)
-{
-    int kbinput, longest, selected, width;
-    bool meta_key, func_key, old_const_update = ISSET(CONST_UPDATE);
-    size_t numents;
-    char **filelist, *retval = NULL;
-
-    curs_set(0);
-    blank_statusbar();
-    bottombars(browser_list);
-    wnoutrefresh(bottomwin);
-
-#if !defined(DISABLE_HELP) || !defined(DISABLE_MOUSE)
-    /* Set currshortcut so the user can click in the shortcut area, and
-     * so the browser help screen will come up. */
-    currshortcut = browser_list;
-#endif
-
-    UNSET(CONST_UPDATE);
-
-  change_browser_directory:
-       /* We go here after the user selects a new directory. */
-
-    kbinput = ERR;
-    selected = 0;
-    width = 0;
-
-    path = mallocstrassn(path, get_full_path(path));
-
-    /* Assume that path exists and ends with a slash. */
-    assert(path != NULL && path[strlen(path) - 1] == '/');
-
-    /* Get the list of files. */
-    filelist = browser_init(path, &longest, &numents, dir);
-
-    assert(filelist != NULL);
-
-    /* Sort the list. */
-    qsort(filelist, numents, sizeof(char *), diralphasort);
-
-    titlebar(path);
-
-    /* Loop invariant: Microsoft sucks. */
-    do {
-       bool abort = FALSE;
-       int j, col = 0, editline = 0, fileline;
-       int filecols = 0;
-           /* Used only if width == 0, to calculate the number of files
-            * per row below. */
-       struct stat st;
-       char *new_path;
-           /* Used by the "Go To Directory" prompt. */
-#ifndef DISABLE_MOUSE
-       MEVENT mevent;
-#endif
-
-       check_statusblank();
-
-       /* Compute the line number we're on now, so that we don't divide
-        * by zero later. */
-       fileline = selected;
-       if (width != 0)
-           fileline /= width;
-
-       switch (kbinput) {
-#ifndef DISABLE_MOUSE
-           case KEY_MOUSE:
-               if (getmouse(&mevent) == ERR)
-                   break;
-
-               /* If we clicked in the edit window, we probably clicked
-                * on a file. */
-               if (wenclose(edit, mevent.y, mevent.x)) {
-                   int old_selected = selected;
-
-                   /* Subtract out the size of topwin. */
-                   mevent.y -= 2 - no_more_space();
-
-                   /* longest is the width of each column.  There are
-                    * two spaces between each column. */
-                   selected = (fileline / editwinrows) * editwinrows *
-                       width + mevent.y * width + mevent.x /
-                       (longest + 2);
-
-                   /* If they clicked beyond the end of a row, select
-                    * the end of that row. */
-                   if (mevent.x > width * (longest + 2))
-                       selected--;
-
-                   /* If we're off the screen, reset to the last item.
-                    * If we clicked the same place as last time, select
-                    * this name! */
-                   if (selected > numents - 1)
-                       selected = numents - 1;
-                   else if (old_selected == selected)
-                       /* Put back the 'select' key. */
-                       unget_kbinput('s', FALSE, FALSE);
-               } else {
-                   /* We must have clicked a shortcut.  Put back the
-                    * equivalent shortcut key. */
-                   int mouse_x, mouse_y;
-                   get_mouseinput(&mouse_x, &mouse_y, TRUE);
-               }
-
-               break;
-#endif
-           case NANO_PREVLINE_KEY:
-               if (selected >= width)
-                   selected -= width;
-               break;
-           case NANO_BACK_KEY:
-               if (selected > 0)
-                   selected--;
-               break;
-           case NANO_NEXTLINE_KEY:
-               if (selected + width <= numents - 1)
-                   selected += width;
-               break;
-           case NANO_FORWARD_KEY:
-               if (selected < numents - 1)
-                   selected++;
-               break;
-           case NANO_PREVPAGE_KEY:
-           case NANO_PREVPAGE_FKEY:
-           case '-': /* Pico compatibility. */
-               if (selected >= (editwinrows + fileline % editwinrows) *
-                       width)
-                   selected -= (editwinrows + fileline % editwinrows) *
-                       width;
-               else
-                   selected = 0;
-               break;
-           case NANO_NEXTPAGE_KEY:
-           case NANO_NEXTPAGE_FKEY:
-           case ' ': /* Pico compatibility. */
-               selected += (editwinrows - fileline % editwinrows) *
-                       width;
-               if (selected >= numents)
-                   selected = numents - 1;
-               break;
-           case NANO_HELP_KEY:
-           case NANO_HELP_FKEY:
-           case '?': /* Pico compatibility. */
-#ifndef DISABLE_HELP
-               do_help();
-               curs_set(0);
-#else
-               nano_disabled_msg();
-#endif
-               break;
-           case NANO_ENTER_KEY:
-           case 'S': /* Pico compatibility. */
-           case 's':
-               /* You can't move up from "/". */
-               if (strcmp(filelist[selected], "/..") == 0) {
-                   statusbar(_("Can't move up a directory"));
-                   beep();
-                   break;
-               }
-
-#ifndef DISABLE_OPERATINGDIR
-               /* Note: the selected file can be outside the operating
-                * directory if it's ".." or if it's a symlink to a
-                * directory outside the operating directory. */
-               if (check_operating_dir(filelist[selected], FALSE)) {
-                   statusbar(
-                       _("Can't go outside of %s in restricted mode"),
-                       operating_dir);
-                   beep();
-                   break;
-               }
-#endif
-
-               if (stat(filelist[selected], &st) == -1) {
-                   statusbar(_("Error reading %s: %s"),
-                       filelist[selected], strerror(errno));
-                   beep();
-                   break;
-               }
-
-               if (!S_ISDIR(st.st_mode)) {
-                   retval = mallocstrcpy(retval, filelist[selected]);
-                   abort = TRUE;
-                   break;
-               }
-
-               dir = opendir(filelist[selected]);
-               if (dir == NULL) {
-                   /* We can't open this dir for some reason.
-                    * Complain. */
-                   statusbar(_("Error reading %s: %s"),
-                       filelist[selected], strerror(errno));
-                   break;
-               }
-
-               path = mallocstrcpy(path, filelist[selected]);
-
-               /* Start over again with the new path value. */
-               free_chararray(filelist, numents);
-               goto change_browser_directory;
-
-           /* Refresh the screen. */
-           case NANO_REFRESH_KEY:
-               total_redraw();
-               break;
-
-           /* Go to a specific directory. */
-           case NANO_GOTOLINE_KEY:
-           case NANO_GOTOLINE_FKEY:
-           case 'G': /* Pico compatibility. */
-           case 'g':
-               curs_set(1);
-
-               j = statusq(FALSE, gotodir_list, "",
-#ifndef NANO_SMALL
-                       NULL,
-#endif
-                       _("Go To Directory"));
-
-               curs_set(0);
-               bottombars(browser_list);
-
-               if (j < 0) {
-                   statusbar(_("Cancelled"));
-                   break;
-               }
-
-               new_path = real_dir_from_tilde(answer);
-
-               if (new_path[0] != '/') {
-                   new_path = charealloc(new_path, strlen(path) +
-                       strlen(answer) + 1);
-                   sprintf(new_path, "%s%s", path, answer);
-               }
-
-#ifndef DISABLE_OPERATINGDIR
-               if (check_operating_dir(new_path, FALSE)) {
-                   statusbar(
-                       _("Can't go outside of %s in restricted mode"),
-                       operating_dir);
-                   free(new_path);
-                   break;
-               }
-#endif
-
-               dir = opendir(new_path);
-               if (dir == NULL) {
-                   /* We can't open this dir for some reason.
-                    * Complain. */
-                   statusbar(_("Error reading %s: %s"), answer,
-                       strerror(errno));
-                   free(new_path);
-                   break;
-               }
-
-               /* Start over again with the new path value. */
-               free(path);
-               path = new_path;
-               free_chararray(filelist, numents);
-               goto change_browser_directory;
-
-           /* Abort the browser. */
-           case NANO_EXIT_KEY:
-           case NANO_EXIT_FKEY:
-           case 'E': /* Pico compatibility. */
-           case 'e':
-               abort = TRUE;
-               break;
-       }
-
-       if (abort)
-           break;
-
-       blank_edit();
-
-       if (width != 0)
-           j = width * editwinrows *
-               ((selected / width) / editwinrows);
-       else
-           j = 0;
-
-       wmove(edit, 0, 0);
-
-       {
-           size_t foo_len = mb_cur_max() * 7;
-           char *foo = charalloc(foo_len + 1);
-
-           for (; j < numents && editline <= editwinrows - 1; j++) {
-               char *disp = display_string(tail(filelist[j]), 0,
-                       longest, FALSE);
-
-               /* Highlight the currently selected file/dir. */
-               if (j == selected)
-                   wattron(edit, A_REVERSE);
-
-               blank_line(edit, editline, col, longest);
-               mvwaddstr(edit, editline, col, disp);
-               free(disp);
-
-               col += longest;
-               filecols++;
-
-               /* Show file info also.  We don't want to report file
-                * sizes for links, so we use lstat().  Also, stat() and
-                * lstat() return an error if, for example, the file is
-                * deleted while the file browser is open.  In that
-                * case, we report "--" as the file info. */
-               if (lstat(filelist[j], &st) == -1 ||
-                       S_ISLNK(st.st_mode)) {
-                   /* Aha!  It's a symlink!  Now, is it a dir?  If so,
-                    * mark it as such. */
-                   if (stat(filelist[j], &st) == 0 &&
-                       S_ISDIR(st.st_mode)) {
-                       strncpy(foo, _("(dir)"), foo_len);
-                       foo[foo_len] = '\0';
-                   } else
-                       strcpy(foo, "--");
-               } else if (S_ISDIR(st.st_mode)) {
-                   strncpy(foo, _("(dir)"), foo_len);
-                   foo[foo_len] = '\0';
-               } else if (st.st_size < (1 << 10)) /* less than 1 k. */
-                   sprintf(foo, "%4u  B", (unsigned int)st.st_size);
-               else if (st.st_size < (1 << 20)) /* less than 1 meg. */
-                   sprintf(foo, "%4u KB",
-                       (unsigned int)(st.st_size >> 10));
-               else if (st.st_size < (1 << 30)) /* less than 1 gig. */
-                   sprintf(foo, "%4u MB",
-                       (unsigned int)(st.st_size >> 20));
-               else
-                   sprintf(foo, "%4u GB",
-                       (unsigned int)(st.st_size >> 30));
-
-               mvwaddnstr(edit, editline, col - strlen(foo), foo,
-                       foo_len);
-
-               if (j == selected)
-                   wattroff(edit, A_REVERSE);
-
-               /* Add some space between the columns. */
-               col += 2;
-
-               /* If the next entry isn't going to fit on the line,
-                * move to the next line. */
-               if (col > COLS - longest) {
-                   editline++;
-                   col = 0;
-                   if (width == 0)
-                       width = filecols;
-               }
-
-               wmove(edit, editline, col);
-           }
-
-           free(foo);
-       }
-
-       wnoutrefresh(edit);
-    } while ((kbinput = get_kbinput(edit, &meta_key, &func_key)) !=
-       NANO_EXIT_KEY && kbinput != NANO_EXIT_FKEY);
-
-    blank_edit();
-    titlebar(NULL);
-    edit_refresh();
-    curs_set(1);
-    if (old_const_update)
-       SET(CONST_UPDATE);
-
-    /* Clean up. */
-    free_chararray(filelist, numents);
-    free(path);
-
-    return retval;
-}
-
-/* The file browser front end.  We check to see if inpath has a dir in
- * it.  If it does, we start do_browser() from there.  Otherwise, we
- * start do_browser() from the current directory. */
-char *do_browse_from(const char *inpath)
-{
-    struct stat st;
-    char *path;
-       /* This holds the tilde-expanded version of inpath. */
-    DIR *dir = NULL;
-
-    assert(inpath != NULL);
-
-    path = real_dir_from_tilde(inpath);
-
-    /* Perhaps path is a directory.  If so, we'll pass it to
-     * do_browser().  Or perhaps path is a directory / a file.  If so,
-     * we'll try stripping off the last path element and passing it to
-     * do_browser().  Or perhaps path doesn't have a directory portion
-     * at all.  If so, we'll just pass the current directory to
-     * do_browser(). */
-    if (stat(path, &st) == -1 || !S_ISDIR(st.st_mode)) {
-       striponedir(path);
-       if (stat(path, &st) == -1 || !S_ISDIR(st.st_mode)) {
-           free(path);
-
-           path = charalloc(PATH_MAX + 1);
-           path = getcwd(path, PATH_MAX + 1);
-
-           if (path != NULL)
-               align(&path);
-       }
-    }
-
-#ifndef DISABLE_OPERATINGDIR
-    /* If the resulting path isn't in the operating directory, use
-     * the operating directory instead. */
-    if (check_operating_dir(path, FALSE)) {
-       if (path != NULL)
-           free(path);
-       path = mallocstrcpy(NULL, operating_dir);
-    }
-#endif
-
-    if (path != NULL)
-       dir = opendir(path);
-
-    if (dir == NULL) {
-       beep();
-       free(path);
-       return NULL;
-    }
-
-    return do_browser(path, dir);
-}
-#endif /* !DISABLE_BROWSER */
-
 #if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
 /* Return $HOME/.nano_history, or NULL if we can't find the homedir.
  * The string is dynamically allocated, and should be freed. */
index 40b8ac6fe148742e7832da3c1b749c673707f57f..404845645059aa9f0638f3637e827f802c3612cf 100644 (file)
@@ -201,6 +201,15 @@ bool is_valid_unicode(wchar_t wc);
 bool is_valid_mbstring(const char *s);
 #endif
 
+/* Public functions in browser.c. */
+#ifndef DISABLE_BROWSER
+void striponedir(char *path);
+char **browser_init(const char *path, int *longest, size_t *numents, DIR
+       *dir);
+char *do_browser(char *path, DIR *dir);
+char *do_browse_from(const char *inpath);
+#endif
+
 /* Public functions in color.c. */
 #ifdef ENABLE_COLOR
 void set_colorpairs(void);
@@ -278,13 +287,6 @@ char **cwd_tab_completion(const char *buf, size_t *num_matches, size_t
 char *input_tab(char *buf, size_t *place, bool *lastwastab, bool *list);
 #endif
 const char *tail(const char *foo);
-#ifndef DISABLE_BROWSER
-void striponedir(char *path);
-char **browser_init(const char *path, int *longest, size_t *numents, DIR
-       *dir);
-char *do_browser(char *path, DIR *dir);
-char *do_browse_from(const char *inpath);
-#endif
 #if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
 char *histfilename(void);
 void load_history(void);