htop/ColumnsPanel.c

179 lines
4.6 KiB
C
Raw Normal View History

2011-12-26 21:35:57 +00:00
/*
htop - ColumnsPanel.c
(C) 2004-2011 Hisham H. Muhammad
Released under the GNU GPLv2+, see the COPYING file
2011-12-26 21:35:57 +00:00
in the source distribution for its full text.
*/
2006-03-04 18:16:49 +00:00
2006-05-30 13:47:28 +00:00
#include "ColumnsPanel.h"
2011-12-26 21:35:57 +00:00
2021-08-24 15:27:43 +00:00
#include <assert.h>
2011-12-26 21:35:57 +00:00
#include <ctype.h>
#include <stdlib.h>
#include "CRT.h"
#include "DynamicColumn.h"
#include "FunctionBar.h"
#include "Hashtable.h"
#include "ListItem.h"
#include "Object.h"
#include "Process.h"
#include "ProvideCurses.h"
#include "XUtils.h"
2006-03-04 18:16:49 +00:00
static const char* const ColumnsFunctions[] = {" ", " ", " ", " ", " ", " ", "MoveUp", "MoveDn", "Remove", "Done ", NULL};
2015-03-23 18:26:56 +00:00
static void ColumnsPanel_delete(Object* object) {
2006-05-30 13:47:28 +00:00
Panel* super = (Panel*) object;
ColumnsPanel* this = (ColumnsPanel*) object;
Panel_done(super);
2006-03-04 18:16:49 +00:00
free(this);
}
static HandlerResult ColumnsPanel_eventHandler(Panel* super, int ch) {
ColumnsPanel* const this = (ColumnsPanel*) super;
2019-10-31 16:39:12 +00:00
2006-05-30 13:47:28 +00:00
int selected = Panel_getSelectedIndex(super);
2006-03-04 18:16:49 +00:00
HandlerResult result = IGNORED;
2009-06-02 04:51:23 +00:00
int size = Panel_size(super);
2006-03-04 18:16:49 +00:00
switch(ch) {
case 0x0a:
case 0x0d:
case KEY_ENTER:
case KEY_MOUSE:
case KEY_RECLICK:
{
if (selected < size - 1) {
this->moving = !(this->moving);
Panel_setSelectionColor(super, this->moving ? PANEL_SELECTION_FOLLOW : PANEL_SELECTION_FOCUS);
ListItem* selectedItem = (ListItem*) Panel_getSelected(super);
if (selectedItem)
selectedItem->moving = this->moving;
result = HANDLED;
}
break;
}
case KEY_UP:
{
if (!this->moving) {
break;
}
}
/* else fallthrough */
2006-03-04 18:16:49 +00:00
case KEY_F(7):
case '[':
case '-':
{
if (selected < size - 1)
2006-05-30 13:47:28 +00:00
Panel_moveSelectedUp(super);
2006-03-04 18:16:49 +00:00
result = HANDLED;
break;
}
case KEY_DOWN:
{
if (!this->moving) {
break;
}
}
/* else fallthrough */
2006-03-04 18:16:49 +00:00
case KEY_F(8):
case ']':
case '+':
{
2019-10-31 16:39:12 +00:00
if (selected < size - 2)
2006-05-30 13:47:28 +00:00
Panel_moveSelectedDown(super);
2006-03-04 18:16:49 +00:00
result = HANDLED;
break;
}
case KEY_F(9):
case KEY_DC:
{
if (selected < size - 1) {
2006-05-30 13:47:28 +00:00
Panel_remove(super, selected);
2006-03-04 18:16:49 +00:00
}
result = HANDLED;
break;
}
default:
{
2020-11-21 17:02:39 +00:00
if (0 < ch && ch < 255 && isgraph((unsigned char)ch))
2011-12-14 23:30:16 +00:00
result = Panel_selectByTyping(super, ch);
if (result == BREAK_LOOP)
result = IGNORED;
break;
}
2006-03-04 18:16:49 +00:00
}
if (result == HANDLED)
2006-05-30 13:47:28 +00:00
ColumnsPanel_update(super);
2006-03-04 18:16:49 +00:00
return result;
}
2020-10-05 11:19:50 +00:00
const PanelClass ColumnsPanel_class = {
.super = {
.extends = Class(Panel),
.delete = ColumnsPanel_delete
},
.eventHandler = ColumnsPanel_eventHandler
};
static void ColumnsPanel_add(Panel* super, unsigned int key, Hashtable* columns) {
const char* name;
if (key < LAST_PROCESSFIELD) {
name = Process_fields[key].name;
} else {
const DynamicColumn* column = Hashtable_get(columns, key);
assert(column);
if (!column) {
name = NULL;
} else {
name = column->caption ? column->caption : column->heading;
if (!name)
name = column->name; /* name is a mandatory field */
}
}
if (name == NULL)
name = "- ";
Panel_add(super, (Object*) ListItem_new(name, key));
}
void ColumnsPanel_fill(ColumnsPanel* this, ScreenSettings* ss, Hashtable* columns) {
Panel* super = (Panel*) this;
Panel_prune(super);
for (const ProcessField* fields = ss->fields; *fields; fields++)
ColumnsPanel_add(super, *fields, columns);
this->ss = ss;
}
ColumnsPanel* ColumnsPanel_new(ScreenSettings* ss, Hashtable* columns, bool* changed) {
ColumnsPanel* this = AllocThis(ColumnsPanel);
Panel* super = (Panel*) this;
2015-03-23 18:26:56 +00:00
FunctionBar* fuBar = FunctionBar_new(ColumnsFunctions, NULL, NULL);
Panel_init(super, 1, 1, 1, 1, Class(ListItem), true, fuBar);
this->ss = ss;
this->changed = changed;
this->moving = false;
Panel_setHeader(super, "Active Columns");
ColumnsPanel_fill(this, ss, columns);
return this;
}
void ColumnsPanel_update(Panel* super) {
ColumnsPanel* this = (ColumnsPanel*) super;
2009-06-02 04:51:23 +00:00
int size = Panel_size(super);
*(this->changed) = true;
this->ss->fields = xRealloc(this->ss->fields, sizeof(ProcessField) * (size + 1));
this->ss->flags = 0;
for (int i = 0; i < size; i++) {
int key = ((ListItem*) Panel_get(super, i))->key;
this->ss->fields[i] = key;
if (key < LAST_PROCESSFIELD)
this->ss->flags |= Process_fields[key].flags;
}
this->ss->fields[size] = 0;
}