htop/ColumnsPanel.c

151 lines
3.9 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
#include <ctype.h>
#include <stdlib.h>
#include "CRT.h"
#include "FunctionBar.h"
#include "ListItem.h"
#include "Object.h"
#include "Platform.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 ? CRT_colors[PANEL_SELECTION_FOLLOW] : CRT_colors[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:
{
if (0 < ch && ch < 255 && isalpha((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
};
ColumnsPanel* ColumnsPanel_new(Settings* settings) {
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->settings = settings;
this->moving = false;
Panel_setHeader(super, "Active Columns");
ProcessField* fields = this->settings->fields;
for (; *fields; fields++) {
if (Process_fields[*fields].name) {
Panel_add(super, (Object*) ListItem_new(Process_fields[*fields].name, *fields));
}
}
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->settings->changed = true;
2020-10-31 22:28:02 +00:00
this->settings->fields = xRealloc(this->settings->fields, sizeof(ProcessField) * (size + 1));
this->settings->flags = 0;
for (int i = 0; i < size; i++) {
int key = ((ListItem*) Panel_get(super, i))->key;
this->settings->fields[i] = key;
this->settings->flags |= Process_fields[key].flags;
}
this->settings->fields[size] = 0;
}