2009-04-13 19:25:46 +04:00
|
|
|
/* ncdu - NCurses Disk Usage
|
|
|
|
|
2012-01-18 14:40:50 +04:00
|
|
|
Copyright (c) 2007-2012 Yoran Heling
|
2007-07-20 15:15:46 +04:00
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
a copy of this software and associated documentation files (the
|
|
|
|
"Software"), to deal in the Software without restriction, including
|
|
|
|
without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
the following conditions:
|
2009-04-13 19:25:46 +04:00
|
|
|
|
2007-07-20 15:15:46 +04:00
|
|
|
The above copyright notice and this permission notice shall be included
|
|
|
|
in all copies or substantial portions of the Software.
|
2009-04-13 19:25:46 +04:00
|
|
|
|
2007-07-20 15:15:46 +04:00
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
|
|
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2009-04-26 13:08:40 +04:00
|
|
|
#include "global.h"
|
2007-07-20 15:15:46 +04:00
|
|
|
|
2009-04-13 19:25:46 +04:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ncurses.h>
|
2007-07-20 15:15:46 +04:00
|
|
|
|
|
|
|
|
2011-10-31 18:09:12 +04:00
|
|
|
static int graph = 1, show_as = 0, info_show = 0, info_page = 0, info_start = 0;
|
2009-04-13 19:25:46 +04:00
|
|
|
|
2007-07-20 15:15:46 +04:00
|
|
|
|
|
|
|
|
2011-10-31 18:09:12 +04:00
|
|
|
static void browse_draw_info(struct dir *dr) {
|
2010-02-27 17:15:25 +03:00
|
|
|
struct dir *t;
|
2010-02-28 12:13:12 +03:00
|
|
|
int i;
|
2010-02-27 17:15:25 +03:00
|
|
|
|
2009-04-18 18:02:46 +04:00
|
|
|
nccreate(11, 60, "Item info");
|
|
|
|
|
2010-02-27 17:15:25 +03:00
|
|
|
if(dr->hlnk) {
|
|
|
|
if(info_page == 0)
|
|
|
|
attron(A_REVERSE);
|
|
|
|
ncaddstr(0, 41, "1:Info");
|
|
|
|
attroff(A_REVERSE);
|
|
|
|
if(info_page == 1)
|
|
|
|
attron(A_REVERSE);
|
|
|
|
ncaddstr(0, 50, "2:Links");
|
|
|
|
attroff(A_REVERSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(info_page) {
|
|
|
|
case 0:
|
|
|
|
attron(A_BOLD);
|
|
|
|
ncaddstr(2, 3, "Name:");
|
|
|
|
ncaddstr(3, 3, "Path:");
|
|
|
|
ncaddstr(4, 3, "Type:");
|
|
|
|
ncaddstr(6, 3, " Disk usage:");
|
|
|
|
ncaddstr(7, 3, "Apparent size:");
|
|
|
|
attroff(A_BOLD);
|
|
|
|
|
|
|
|
ncaddstr(2, 9, cropstr(dr->name, 49));
|
|
|
|
ncaddstr(3, 9, cropstr(getpath(dr->parent), 49));
|
|
|
|
ncaddstr(4, 9, dr->flags & FF_DIR ? "Directory"
|
|
|
|
: dr->flags & FF_FILE ? "File" : "Other (link, device, socket, ..)");
|
|
|
|
ncprint(6, 18, "%s (%s B)", formatsize(dr->size), fullsize(dr->size));
|
|
|
|
ncprint(7, 18, "%s (%s B)", formatsize(dr->asize), fullsize(dr->asize));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
for(i=0,t=dr->hlnk; t!=dr; t=t->hlnk,i++) {
|
|
|
|
if(info_start > i)
|
|
|
|
continue;
|
|
|
|
if(i-info_start > 5)
|
|
|
|
break;
|
|
|
|
ncaddstr(2+i-info_start, 3, cropstr(getpath(t), 54));
|
|
|
|
}
|
|
|
|
if(t!=dr)
|
|
|
|
ncaddstr(8, 25, "-- more --");
|
|
|
|
break;
|
|
|
|
}
|
2009-04-18 18:02:46 +04:00
|
|
|
|
|
|
|
ncaddstr(9, 32, "Press i to hide this window");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-31 18:09:12 +04:00
|
|
|
static void browse_draw_item(struct dir *n, int row) {
|
2010-04-28 19:15:46 +04:00
|
|
|
char ct, dt, *size, gr[11];
|
2009-04-13 19:25:46 +04:00
|
|
|
int i, o;
|
|
|
|
float pc;
|
2007-07-20 15:15:46 +04:00
|
|
|
|
2009-04-13 19:25:46 +04:00
|
|
|
if(n->flags & FF_BSEL)
|
|
|
|
attron(A_REVERSE);
|
|
|
|
|
|
|
|
/* reference to parent dir has a different format */
|
2010-03-07 13:10:00 +03:00
|
|
|
if(n == dirlist_parent) {
|
2009-04-13 19:25:46 +04:00
|
|
|
mvhline(row, 0, ' ', wincols);
|
2009-08-03 16:26:10 +04:00
|
|
|
o = graph == 0 ? 12 :
|
|
|
|
graph == 1 ? 24 :
|
|
|
|
graph == 2 ? 20 :
|
|
|
|
31 ;
|
2009-04-13 19:25:46 +04:00
|
|
|
mvaddstr(row, o, "/..");
|
|
|
|
if(n->flags & FF_BSEL)
|
|
|
|
attroff(A_REVERSE);
|
|
|
|
return;
|
|
|
|
}
|
2007-07-20 15:15:46 +04:00
|
|
|
|
2009-04-13 19:25:46 +04:00
|
|
|
/* determine indication character */
|
|
|
|
ct = n->flags & FF_EXL ? '<' :
|
|
|
|
n->flags & FF_ERR ? '!' :
|
|
|
|
n->flags & FF_SERR ? '.' :
|
|
|
|
n->flags & FF_OTHFS ? '>' :
|
2010-02-27 13:29:36 +03:00
|
|
|
n->flags & FF_HLNKC ? 'H' :
|
2009-04-13 19:25:46 +04:00
|
|
|
!(n->flags & FF_FILE
|
|
|
|
|| n->flags & FF_DIR) ? '@' :
|
|
|
|
n->flags & FF_DIR
|
|
|
|
&& n->sub == NULL ? 'e' :
|
|
|
|
' ' ;
|
|
|
|
dt = n->flags & FF_DIR ? '/' : ' ';
|
2010-03-07 13:10:00 +03:00
|
|
|
size = formatsize(show_as ? n->asize : n->size);
|
2009-04-13 19:25:46 +04:00
|
|
|
|
|
|
|
/* create graph (if necessary) */
|
2010-03-07 13:10:00 +03:00
|
|
|
if(graph) {
|
|
|
|
/* percentage */
|
|
|
|
if((pc = (float)(show_as ? n->parent->asize : n->parent->size)) < 1)
|
|
|
|
pc = 1.0f;
|
|
|
|
pc = ((float)(show_as ? n->asize : n->size) / pc) * 100.0f;
|
|
|
|
/* graph */
|
|
|
|
if(graph == 1 || graph == 3) {
|
|
|
|
o = (int)(10.0f*(float)(show_as ? n->asize : n->size) / (float)(show_as ? dirlist_maxa : dirlist_maxs));
|
|
|
|
for(i=0; i<10; i++)
|
|
|
|
gr[i] = i < o ? '#' : ' ';
|
|
|
|
gr[10] = '\0';
|
|
|
|
}
|
2009-04-13 19:25:46 +04:00
|
|
|
}
|
2007-07-24 11:58:22 +04:00
|
|
|
|
2009-04-13 19:25:46 +04:00
|
|
|
/* format and add item to the list */
|
2009-04-18 17:23:33 +04:00
|
|
|
switch(graph) {
|
2010-07-18 20:58:22 +04:00
|
|
|
case 0: mvprintw(row, 0, "%c %8s %c%-*s", ct, size, dt, wincols-13, cropstr(n->name, wincols-13)); break;
|
|
|
|
case 1: mvprintw(row, 0, "%c %8s [%10s] %c%-*s", ct, size, gr, dt, wincols-25, cropstr(n->name, wincols-25)); break;
|
|
|
|
case 2: mvprintw(row, 0, "%c %8s [%5.1f%%] %c%-*s", ct, size, pc, dt, wincols-21, cropstr(n->name, wincols-21)); break;
|
|
|
|
case 3: mvprintw(row, 0, "%c %8s [%5.1f%% %10s] %c%-*s", ct, size, pc, gr, dt, wincols-32, cropstr(n->name, wincols-32));
|
2009-04-13 19:25:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if(n->flags & FF_BSEL)
|
|
|
|
attroff(A_REVERSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-26 11:49:51 +04:00
|
|
|
void browse_draw() {
|
2010-03-07 13:10:00 +03:00
|
|
|
struct dir *t;
|
2010-07-18 20:58:22 +04:00
|
|
|
char fmtsize[9], *tmp;
|
2009-04-13 19:25:46 +04:00
|
|
|
int selected, i;
|
2007-07-20 15:15:46 +04:00
|
|
|
|
2007-07-24 11:58:22 +04:00
|
|
|
erase();
|
2010-03-07 13:10:00 +03:00
|
|
|
t = dirlist_get(0);
|
2007-07-20 15:15:46 +04:00
|
|
|
|
2010-03-07 13:10:00 +03:00
|
|
|
/* top line - basic info */
|
2007-07-20 15:15:46 +04:00
|
|
|
attron(A_REVERSE);
|
2007-07-24 11:58:22 +04:00
|
|
|
mvhline(0, 0, ' ', wincols);
|
|
|
|
mvhline(winrows-1, 0, ' ', wincols);
|
2007-07-20 15:15:46 +04:00
|
|
|
mvprintw(0,0,"%s %s ~ Use the arrow keys to navigate, press ? for help", PACKAGE_NAME, PACKAGE_VERSION);
|
2011-10-31 16:10:36 +04:00
|
|
|
if(read_only)
|
|
|
|
mvaddstr(0, wincols-11, "[read-only]");
|
2007-08-01 17:17:26 +04:00
|
|
|
attroff(A_REVERSE);
|
2009-04-13 19:25:46 +04:00
|
|
|
|
2010-03-07 13:10:00 +03:00
|
|
|
/* second line - the path */
|
2007-07-24 11:58:22 +04:00
|
|
|
mvhline(1, 0, '-', wincols);
|
2010-03-07 13:10:00 +03:00
|
|
|
if(t) {
|
2009-04-18 17:34:47 +04:00
|
|
|
mvaddch(1, 3, ' ');
|
2010-03-07 13:10:00 +03:00
|
|
|
tmp = getpath(t->parent);
|
2009-04-26 13:18:45 +04:00
|
|
|
mvaddstr(1, 4, cropstr(tmp, wincols-8));
|
|
|
|
mvaddch(1, 4+((int)strlen(tmp) > wincols-8 ? wincols-8 : (int)strlen(tmp)), ' ');
|
2009-04-18 17:34:47 +04:00
|
|
|
}
|
|
|
|
|
2010-03-07 13:10:00 +03:00
|
|
|
/* bottom line - stats */
|
|
|
|
attron(A_REVERSE);
|
|
|
|
if(t) {
|
|
|
|
strcpy(fmtsize, formatsize(t->parent->size));
|
|
|
|
mvprintw(winrows-1, 0, " Total disk usage: %s Apparent size: %s Items: %d",
|
|
|
|
fmtsize, formatsize(t->parent->asize), t->parent->items);
|
|
|
|
} else
|
|
|
|
mvaddstr(winrows-1, 0, " No items to display.");
|
|
|
|
attroff(A_REVERSE);
|
2007-07-24 11:58:22 +04:00
|
|
|
|
2010-03-07 13:10:00 +03:00
|
|
|
/* nothing to display? stop here. */
|
|
|
|
if(!t)
|
|
|
|
return;
|
2007-08-12 13:52:24 +04:00
|
|
|
|
2010-03-07 13:10:00 +03:00
|
|
|
/* get start position */
|
2010-04-28 15:32:30 +04:00
|
|
|
t = dirlist_top(0);
|
2007-07-24 11:58:22 +04:00
|
|
|
|
2009-04-13 19:25:46 +04:00
|
|
|
/* print the list to the screen */
|
2010-04-28 15:32:30 +04:00
|
|
|
for(i=0; t && i<winrows-3; t=dirlist_next(t),i++) {
|
2010-07-18 20:58:22 +04:00
|
|
|
browse_draw_item(t, 2+i);
|
2010-03-07 13:10:00 +03:00
|
|
|
/* save the selected row number for later */
|
|
|
|
if(t->flags & FF_BSEL)
|
|
|
|
selected = i;
|
2007-07-20 15:15:46 +04:00
|
|
|
}
|
2007-08-12 13:52:24 +04:00
|
|
|
|
2009-04-18 18:02:46 +04:00
|
|
|
/* draw information window */
|
2010-03-07 13:10:00 +03:00
|
|
|
t = dirlist_get(0);
|
|
|
|
if(info_show && t != dirlist_parent)
|
|
|
|
browse_draw_info(t);
|
2009-04-18 18:02:46 +04:00
|
|
|
|
2009-04-13 19:25:46 +04:00
|
|
|
/* move cursor to selected row for accessibility */
|
2008-08-02 17:31:21 +04:00
|
|
|
move(selected+2, 0);
|
2009-04-13 19:25:46 +04:00
|
|
|
}
|
|
|
|
|
2008-08-02 17:31:21 +04:00
|
|
|
|
2009-04-13 19:25:46 +04:00
|
|
|
int browse_key(int ch) {
|
2010-03-07 13:10:00 +03:00
|
|
|
struct dir *t, *sel;
|
|
|
|
int i, catch = 0;
|
2010-02-27 17:15:25 +03:00
|
|
|
|
2010-03-07 13:10:00 +03:00
|
|
|
sel = dirlist_get(0);
|
2007-07-24 11:58:22 +04:00
|
|
|
|
2010-02-27 17:15:25 +03:00
|
|
|
/* info window overwrites a few keys */
|
2010-03-07 13:10:00 +03:00
|
|
|
if(info_show && sel)
|
2010-02-27 17:15:25 +03:00
|
|
|
switch(ch) {
|
|
|
|
case '1':
|
|
|
|
info_page = 0;
|
|
|
|
break;
|
|
|
|
case '2':
|
|
|
|
if(sel->hlnk)
|
|
|
|
info_page = 1;
|
|
|
|
break;
|
|
|
|
case KEY_RIGHT:
|
|
|
|
case 'l':
|
|
|
|
if(sel->hlnk) {
|
|
|
|
info_page = 1;
|
|
|
|
catch++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KEY_LEFT:
|
|
|
|
case 'h':
|
|
|
|
if(sel->hlnk) {
|
|
|
|
info_page = 0;
|
|
|
|
catch++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KEY_UP:
|
|
|
|
case 'k':
|
|
|
|
if(sel->hlnk && info_page == 1) {
|
|
|
|
if(info_start > 0)
|
|
|
|
info_start--;
|
|
|
|
catch++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KEY_DOWN:
|
|
|
|
case 'j':
|
|
|
|
case ' ':
|
|
|
|
if(sel->hlnk && info_page == 1) {
|
2010-03-07 13:10:00 +03:00
|
|
|
for(i=0,t=sel->hlnk; t!=sel; t=t->hlnk)
|
2010-02-27 17:15:25 +03:00
|
|
|
i++;
|
|
|
|
if(i > info_start+6)
|
|
|
|
info_start++;
|
|
|
|
catch++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!catch)
|
|
|
|
switch(ch) {
|
2009-04-13 19:25:46 +04:00
|
|
|
/* selecting items */
|
|
|
|
case KEY_UP:
|
2009-10-18 14:52:00 +04:00
|
|
|
case 'k':
|
2010-03-07 13:10:00 +03:00
|
|
|
dirlist_select(dirlist_get(-1));
|
2010-04-28 15:32:30 +04:00
|
|
|
dirlist_top(-1);
|
2010-02-27 17:15:25 +03:00
|
|
|
info_start = 0;
|
2009-04-13 19:25:46 +04:00
|
|
|
break;
|
|
|
|
case KEY_DOWN:
|
2009-10-18 14:52:00 +04:00
|
|
|
case 'j':
|
2010-03-07 13:10:00 +03:00
|
|
|
dirlist_select(dirlist_get(1));
|
2010-04-28 15:32:30 +04:00
|
|
|
dirlist_top(1);
|
2010-02-27 17:15:25 +03:00
|
|
|
info_start = 0;
|
2009-04-13 19:25:46 +04:00
|
|
|
break;
|
|
|
|
case KEY_HOME:
|
2010-03-07 13:10:00 +03:00
|
|
|
dirlist_select(dirlist_next(NULL));
|
2010-04-28 15:32:30 +04:00
|
|
|
dirlist_top(2);
|
2010-02-27 17:15:25 +03:00
|
|
|
info_start = 0;
|
2009-04-13 19:25:46 +04:00
|
|
|
break;
|
|
|
|
case KEY_LL:
|
|
|
|
case KEY_END:
|
2010-03-07 13:10:00 +03:00
|
|
|
dirlist_select(dirlist_get(1<<30));
|
2010-04-28 15:32:30 +04:00
|
|
|
dirlist_top(1);
|
2010-02-27 17:15:25 +03:00
|
|
|
info_start = 0;
|
2009-04-13 19:25:46 +04:00
|
|
|
break;
|
|
|
|
case KEY_PPAGE:
|
2010-03-07 13:10:00 +03:00
|
|
|
dirlist_select(dirlist_get(-1*(winrows-3)));
|
2010-04-28 15:32:30 +04:00
|
|
|
dirlist_top(-1);
|
2010-02-27 17:15:25 +03:00
|
|
|
info_start = 0;
|
2009-04-13 19:25:46 +04:00
|
|
|
break;
|
|
|
|
case KEY_NPAGE:
|
2010-03-07 13:10:00 +03:00
|
|
|
dirlist_select(dirlist_get(winrows-3));
|
2010-04-28 15:32:30 +04:00
|
|
|
dirlist_top(1);
|
2010-02-27 17:15:25 +03:00
|
|
|
info_start = 0;
|
2009-04-13 19:25:46 +04:00
|
|
|
break;
|
2007-07-24 11:58:22 +04:00
|
|
|
|
2009-04-26 11:55:23 +04:00
|
|
|
/* sorting items */
|
2009-04-13 19:25:46 +04:00
|
|
|
case 'n':
|
2010-04-28 17:39:45 +04:00
|
|
|
dirlist_set_sort(DL_COL_NAME, dirlist_sort_col == DL_COL_NAME ? !dirlist_sort_desc : 0, DL_NOCHANGE);
|
2010-03-07 13:10:00 +03:00
|
|
|
info_show = 0;
|
2009-04-13 19:25:46 +04:00
|
|
|
break;
|
|
|
|
case 's':
|
2010-03-07 13:10:00 +03:00
|
|
|
i = show_as ? DL_COL_ASIZE : DL_COL_SIZE;
|
2010-04-28 17:39:45 +04:00
|
|
|
dirlist_set_sort(i, dirlist_sort_col == i ? !dirlist_sort_desc : 1, DL_NOCHANGE);
|
2010-03-07 13:10:00 +03:00
|
|
|
info_show = 0;
|
2009-04-13 19:25:46 +04:00
|
|
|
break;
|
2009-10-18 14:52:00 +04:00
|
|
|
case 'e':
|
2010-03-07 13:10:00 +03:00
|
|
|
dirlist_set_hidden(!dirlist_hidden);
|
|
|
|
info_show = 0;
|
2009-04-13 19:25:46 +04:00
|
|
|
break;
|
|
|
|
case 't':
|
2010-03-07 13:10:00 +03:00
|
|
|
dirlist_set_sort(DL_NOCHANGE, DL_NOCHANGE, dirlist_sort_df);
|
|
|
|
info_show = 0;
|
2009-04-13 19:25:46 +04:00
|
|
|
break;
|
|
|
|
case 'a':
|
2010-03-07 13:10:00 +03:00
|
|
|
show_as = !show_as;
|
|
|
|
if(dirlist_sort_col == DL_COL_ASIZE || dirlist_sort_col == DL_COL_SIZE)
|
|
|
|
dirlist_set_sort(show_as ? DL_COL_ASIZE : DL_COL_SIZE, DL_NOCHANGE, DL_NOCHANGE);
|
|
|
|
info_show = 0;
|
2009-04-13 19:25:46 +04:00
|
|
|
break;
|
|
|
|
|
2009-04-26 11:55:23 +04:00
|
|
|
/* browsing */
|
2009-04-13 19:25:46 +04:00
|
|
|
case 10:
|
|
|
|
case KEY_RIGHT:
|
2009-10-18 14:52:00 +04:00
|
|
|
case 'l':
|
2010-04-28 15:32:30 +04:00
|
|
|
if(sel != NULL && sel->sub != NULL) {
|
2010-03-07 13:10:00 +03:00
|
|
|
dirlist_open(sel->sub);
|
2010-04-28 15:32:30 +04:00
|
|
|
dirlist_top(-3);
|
|
|
|
}
|
2010-03-07 13:10:00 +03:00
|
|
|
info_show = 0;
|
2009-04-13 19:25:46 +04:00
|
|
|
break;
|
|
|
|
case KEY_LEFT:
|
2009-10-18 14:52:00 +04:00
|
|
|
case 'h':
|
|
|
|
case '<':
|
2010-04-28 15:32:30 +04:00
|
|
|
if(sel != NULL && sel->parent->parent != NULL) {
|
2010-03-07 13:10:00 +03:00
|
|
|
dirlist_open(sel->parent);
|
2010-04-28 15:32:30 +04:00
|
|
|
dirlist_top(-3);
|
|
|
|
}
|
2010-03-07 13:10:00 +03:00
|
|
|
info_show = 0;
|
2009-04-13 19:25:46 +04:00
|
|
|
break;
|
|
|
|
|
2009-04-26 13:08:40 +04:00
|
|
|
/* and other stuff */
|
2009-04-13 19:25:46 +04:00
|
|
|
case 'r':
|
2010-03-07 13:10:00 +03:00
|
|
|
if(sel != NULL)
|
|
|
|
calc_init(getpath(sel->parent), sel->parent);
|
|
|
|
info_show = 0;
|
2009-04-13 19:25:46 +04:00
|
|
|
break;
|
|
|
|
case 'q':
|
2010-03-07 13:10:00 +03:00
|
|
|
if(info_show)
|
|
|
|
info_show = 0;
|
2009-04-19 12:06:33 +04:00
|
|
|
else
|
|
|
|
return 1;
|
|
|
|
break;
|
2009-04-13 19:25:46 +04:00
|
|
|
case 'g':
|
2009-04-18 18:02:46 +04:00
|
|
|
if(++graph > 3)
|
|
|
|
graph = 0;
|
2010-03-07 13:10:00 +03:00
|
|
|
info_show = 0;
|
2009-04-18 18:02:46 +04:00
|
|
|
break;
|
|
|
|
case 'i':
|
2010-03-07 13:10:00 +03:00
|
|
|
info_show = !info_show;
|
2009-04-13 19:25:46 +04:00
|
|
|
break;
|
|
|
|
case '?':
|
2009-04-19 12:03:42 +04:00
|
|
|
help_init();
|
2010-03-07 13:10:00 +03:00
|
|
|
info_show = 0;
|
2009-04-13 19:25:46 +04:00
|
|
|
break;
|
|
|
|
case 'd':
|
2011-09-09 04:41:12 +04:00
|
|
|
if(read_only || sel == NULL || sel == dirlist_parent)
|
2009-04-19 13:35:24 +04:00
|
|
|
break;
|
2010-03-07 13:10:00 +03:00
|
|
|
info_show = 0;
|
|
|
|
if((t = dirlist_get(1)) == sel)
|
2010-04-27 19:58:17 +04:00
|
|
|
if((t = dirlist_get(-1)) == sel || t == dirlist_parent)
|
|
|
|
t = sel->parent;
|
2010-03-07 13:10:00 +03:00
|
|
|
delete_init(sel, t);
|
2009-04-13 19:25:46 +04:00
|
|
|
break;
|
2010-02-27 17:15:25 +03:00
|
|
|
}
|
2009-04-18 17:45:26 +04:00
|
|
|
|
2010-03-07 13:10:00 +03:00
|
|
|
/* make sure the info_* options are correct */
|
|
|
|
sel = dirlist_get(0);
|
|
|
|
if(!info_show || sel == dirlist_parent)
|
|
|
|
info_show = info_page = info_start = 0;
|
|
|
|
else if(sel && !sel->hlnk)
|
|
|
|
info_page = info_start = 0;
|
|
|
|
|
2009-04-13 19:25:46 +04:00
|
|
|
return 0;
|
2007-07-20 15:15:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-18 17:23:33 +04:00
|
|
|
void browse_init(struct dir *cur) {
|
|
|
|
pstate = ST_BROWSE;
|
2010-03-07 13:10:00 +03:00
|
|
|
dirlist_open(cur);
|
2009-04-18 17:23:33 +04:00
|
|
|
}
|
|
|
|
|