htop/ColumnsPanel.c

137 lines
3.2 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 GPL, see the COPYING file
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"
2006-03-04 18:16:49 +00:00
2011-12-26 21:35:57 +00:00
#include "String.h"
2006-03-04 18:16:49 +00:00
#include <assert.h>
2011-12-26 21:35:57 +00:00
#include <stdlib.h>
#include <ctype.h>
2006-03-04 18:16:49 +00:00
/*{
2011-12-26 21:35:57 +00:00
#include "Panel.h"
#include "Settings.h"
#include "ScreenManager.h"
2006-03-04 18:16:49 +00:00
2006-05-30 13:47:28 +00:00
typedef struct ColumnsPanel_ {
Panel super;
2006-03-04 18:16:49 +00:00
Settings* settings;
ScreenManager* scr;
2006-05-30 13:47:28 +00:00
} ColumnsPanel;
2006-03-04 18:16:49 +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) {
2006-03-04 18:16:49 +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 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_F(8):
case ']':
case '+':
{
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:
{
2011-12-14 23:30:16 +00:00
if (isalpha(ch))
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;
}
PanelClass ColumnsPanel_class = {
.super = {
.extends = Class(Panel),
.delete = ColumnsPanel_delete
},
.eventHandler = ColumnsPanel_eventHandler
};
ColumnsPanel* ColumnsPanel_new(Settings* settings, ScreenManager* scr) {
ColumnsPanel* this = AllocThis(ColumnsPanel);
Panel* super = (Panel*) this;
Panel_init(super, 1, 1, 1, 1, Class(ListItem), true);
this->settings = settings;
this->scr = scr;
Panel_setHeader(super, "Active Columns");
ProcessField* fields = this->settings->pl->fields;
for (; *fields; fields++) {
Panel_add(super, (Object*) ListItem_new(Process_fieldNames[*fields], 0));
}
return this;
}
int ColumnsPanel_fieldNameToIndex(const char* name) {
for (int j = 1; j <= LAST_PROCESSFIELD; j++) {
if (String_eq(name, Process_fieldNames[j])) {
return j;
}
}
return 0;
}
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;
// FIXME: this is crappily inefficient
free(this->settings->pl->fields);
this->settings->pl->fields = (ProcessField*) malloc(sizeof(ProcessField) * (size+1));
this->settings->pl->flags = 0;
for (int i = 0; i < size; i++) {
char* text = ((ListItem*) Panel_get(super, i))->value;
int j = ColumnsPanel_fieldNameToIndex(text);
if (j > 0) {
this->settings->pl->fields[i] = j;
this->settings->pl->flags |= Process_fieldFlags[j];
}
}
this->settings->pl->fields[size] = 0;
}