mirror of https://github.com/xzeldon/htop.git
Collapse current subtree pressing Backspace
This commit is contained in:
parent
42c3a1fcb3
commit
0dbedf95a8
24
Action.c
24
Action.c
|
@ -155,6 +155,21 @@ static bool expandCollapse(Panel* panel) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static bool collapseIntoParent(Panel* panel) {
|
||||||
|
Process* p = (Process*) Panel_getSelected(panel);
|
||||||
|
if (!p) return false;
|
||||||
|
pid_t ppid = Process_getParentPid(p);
|
||||||
|
for (int i = 0; i < Panel_size(panel); i++) {
|
||||||
|
Process* q = (Process*) Panel_get(panel, i);
|
||||||
|
if (q->pid == ppid) {
|
||||||
|
q->showChildren = false;
|
||||||
|
Panel_setSelected(panel, i);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
Htop_Reaction Action_setSortKey(Settings* settings, ProcessField sortKey) {
|
Htop_Reaction Action_setSortKey(Settings* settings, ProcessField sortKey) {
|
||||||
settings->sortKey = sortKey;
|
settings->sortKey = sortKey;
|
||||||
settings->direction = 1;
|
settings->direction = 1;
|
||||||
|
@ -261,6 +276,14 @@ static Htop_Reaction actionExpandOrCollapse(State* st) {
|
||||||
return changed ? HTOP_RECALCULATE : HTOP_OK;
|
return changed ? HTOP_RECALCULATE : HTOP_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static Htop_Reaction actionCollapseIntoParent(State* st) {
|
||||||
|
if (!st->settings->treeView) {
|
||||||
|
return HTOP_OK;
|
||||||
|
}
|
||||||
|
bool changed = collapseIntoParent(st->panel);
|
||||||
|
return changed ? HTOP_RECALCULATE : HTOP_OK;
|
||||||
|
}
|
||||||
|
|
||||||
static Htop_Reaction actionExpandCollapseOrSortColumn(State* st) {
|
static Htop_Reaction actionExpandCollapseOrSortColumn(State* st) {
|
||||||
return st->settings->treeView ? actionExpandOrCollapse(st) : actionSetSortColumn(st);
|
return st->settings->treeView ? actionExpandOrCollapse(st) : actionSetSortColumn(st);
|
||||||
}
|
}
|
||||||
|
@ -557,6 +580,7 @@ void Action_setBindings(Htop_Action* keys) {
|
||||||
keys['+'] = actionExpandOrCollapse;
|
keys['+'] = actionExpandOrCollapse;
|
||||||
keys['='] = actionExpandOrCollapse;
|
keys['='] = actionExpandOrCollapse;
|
||||||
keys['-'] = actionExpandOrCollapse;
|
keys['-'] = actionExpandOrCollapse;
|
||||||
|
keys['\177'] = actionCollapseIntoParent;
|
||||||
keys['u'] = actionFilterByUser;
|
keys['u'] = actionFilterByUser;
|
||||||
keys['F'] = Action_follow;
|
keys['F'] = Action_follow;
|
||||||
keys['S'] = actionSetup;
|
keys['S'] = actionSetup;
|
||||||
|
|
|
@ -178,6 +178,8 @@ typedef struct ProcessClass_ {
|
||||||
|
|
||||||
#define As_Process(this_) ((ProcessClass*)((this_)->super.klass))
|
#define As_Process(this_) ((ProcessClass*)((this_)->super.klass))
|
||||||
|
|
||||||
|
#define Process_getParentPid(process_) (process_->tgid == process_->pid ? process_->ppid : process_->tgid)
|
||||||
|
|
||||||
#define Process_isChildOf(process_, pid_) (process_->tgid == pid_ || (process_->tgid == process_->pid && process_->ppid == pid_))
|
#define Process_isChildOf(process_, pid_) (process_->tgid == pid_ || (process_->tgid == process_->pid && process_->ppid == pid_))
|
||||||
|
|
||||||
#define Process_sortState(state) ((state) == 'I' ? 0x100 : (state))
|
#define Process_sortState(state) ((state) == 'I' ? 0x100 : (state))
|
||||||
|
|
|
@ -156,6 +156,8 @@ typedef struct ProcessClass_ {
|
||||||
|
|
||||||
#define As_Process(this_) ((ProcessClass*)((this_)->super.klass))
|
#define As_Process(this_) ((ProcessClass*)((this_)->super.klass))
|
||||||
|
|
||||||
|
#define Process_getParentPid(process_) (process_->tgid == process_->pid ? process_->ppid : process_->tgid)
|
||||||
|
|
||||||
#define Process_isChildOf(process_, pid_) (process_->tgid == pid_ || (process_->tgid == process_->pid && process_->ppid == pid_))
|
#define Process_isChildOf(process_, pid_) (process_->tgid == pid_ || (process_->tgid == process_->pid && process_->ppid == pid_))
|
||||||
|
|
||||||
#define Process_sortState(state) ((state) == 'I' ? 0x100 : (state))
|
#define Process_sortState(state) ((state) == 'I' ? 0x100 : (state))
|
||||||
|
|
|
@ -228,7 +228,7 @@ void ProcessList_sort(ProcessList* this) {
|
||||||
ProcessList_buildTree(this, process->pid, 0, 0, direction, false);
|
ProcessList_buildTree(this, process->pid, 0, 0, direction, false);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
pid_t ppid = process->tgid == process->pid ? process->ppid : process->tgid;
|
pid_t ppid = Process_getParentPid(process);
|
||||||
// Bisect the process vector to find parent
|
// Bisect the process vector to find parent
|
||||||
int l = 0, r = size;
|
int l = 0, r = size;
|
||||||
// If PID corresponds with PPID (e.g. "kernel_task" (PID:0, PPID:0)
|
// If PID corresponds with PPID (e.g. "kernel_task" (PID:0, PPID:0)
|
||||||
|
|
Loading…
Reference in New Issue