2011-12-26 21:35:57 +00:00
|
|
|
/*
|
|
|
|
htop - AvailableColumnsPanel.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 "AvailableColumnsPanel.h"
|
2015-03-15 23:29:13 +00:00
|
|
|
#include "Platform.h"
|
2011-12-26 21:35:57 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
#include "Header.h"
|
2006-05-30 13:47:28 +00:00
|
|
|
#include "ColumnsPanel.h"
|
2011-12-26 21:35:57 +00:00
|
|
|
|
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>
|
2015-01-22 01:27:31 +00:00
|
|
|
#include <string.h>
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
/*{
|
2011-12-26 21:35:57 +00:00
|
|
|
#include "Panel.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2006-05-30 13:47:28 +00:00
|
|
|
typedef struct AvailableColumnsPanel_ {
|
|
|
|
Panel super;
|
|
|
|
Panel* columns;
|
|
|
|
} AvailableColumnsPanel;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
}*/
|
|
|
|
|
2015-03-23 18:26:56 +00:00
|
|
|
static const char* AvailableColumnsFunctions[] = {" ", " ", " ", " ", "Add ", " ", " ", " ", " ", "Done ", NULL};
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
static void AvailableColumnsPanel_delete(Object* object) {
|
2006-05-30 13:47:28 +00:00
|
|
|
Panel* super = (Panel*) object;
|
|
|
|
AvailableColumnsPanel* this = (AvailableColumnsPanel*) object;
|
|
|
|
Panel_done(super);
|
2006-03-04 18:16:49 +00:00
|
|
|
free(this);
|
|
|
|
}
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
static HandlerResult AvailableColumnsPanel_eventHandler(Panel* super, int ch) {
|
2006-05-30 13:47:28 +00:00
|
|
|
AvailableColumnsPanel* this = (AvailableColumnsPanel*) super;
|
2015-01-22 01:27:31 +00:00
|
|
|
int key = ((ListItem*) Panel_getSelected(super))->key;
|
2006-03-04 18:16:49 +00:00
|
|
|
HandlerResult result = IGNORED;
|
|
|
|
|
|
|
|
switch(ch) {
|
|
|
|
case 13:
|
|
|
|
case KEY_ENTER:
|
|
|
|
case KEY_F(5):
|
|
|
|
{
|
2008-03-09 07:42:19 +00:00
|
|
|
int at = Panel_getSelectedIndex(this->columns);
|
2015-01-22 01:27:31 +00:00
|
|
|
Panel_insert(this->columns, at, (Object*) ListItem_new(Process_fields[key].name, key));
|
2008-03-09 07:42:19 +00:00
|
|
|
Panel_setSelected(this->columns, at+1);
|
2006-05-30 13:47:28 +00:00
|
|
|
ColumnsPanel_update(this->columns);
|
2006-03-04 18:16:49 +00:00
|
|
|
result = HANDLED;
|
|
|
|
break;
|
|
|
|
}
|
2011-11-18 06:08:56 +00:00
|
|
|
default:
|
|
|
|
{
|
2015-03-23 01:56:28 +00:00
|
|
|
if (ch < 255 && isalpha(ch))
|
2011-12-14 23:30:16 +00:00
|
|
|
result = Panel_selectByTyping(super, ch);
|
2011-11-18 06:08:56 +00:00
|
|
|
break;
|
|
|
|
}
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2008-03-09 08:58:38 +00:00
|
|
|
|
2012-12-05 15:12:20 +00:00
|
|
|
PanelClass AvailableColumnsPanel_class = {
|
|
|
|
.super = {
|
|
|
|
.extends = Class(Panel),
|
|
|
|
.delete = AvailableColumnsPanel_delete
|
|
|
|
},
|
|
|
|
.eventHandler = AvailableColumnsPanel_eventHandler
|
|
|
|
};
|
|
|
|
|
2015-01-22 01:27:31 +00:00
|
|
|
AvailableColumnsPanel* AvailableColumnsPanel_new(Panel* columns) {
|
2012-12-05 15:12:20 +00:00
|
|
|
AvailableColumnsPanel* this = AllocThis(AvailableColumnsPanel);
|
2008-03-09 08:58:38 +00:00
|
|
|
Panel* super = (Panel*) this;
|
2015-03-23 18:26:56 +00:00
|
|
|
FunctionBar* fuBar = FunctionBar_new(AvailableColumnsFunctions, NULL, NULL);
|
|
|
|
Panel_init(super, 1, 1, 1, 1, Class(ListItem), true, fuBar);
|
2008-03-09 08:58:38 +00:00
|
|
|
|
|
|
|
Panel_setHeader(super, "Available Columns");
|
|
|
|
|
2015-03-16 04:43:04 +00:00
|
|
|
for (int i = 1; i < Platform_numberOfFields; i++) {
|
2015-01-22 01:27:31 +00:00
|
|
|
if (i != COMM && Process_fields[i].description) {
|
|
|
|
char description[256];
|
|
|
|
snprintf(description, sizeof(description), "%s - %s", Process_fields[i].name, Process_fields[i].description);
|
|
|
|
Panel_add(super, (Object*) ListItem_new(description, i));
|
|
|
|
}
|
2008-03-09 08:58:38 +00:00
|
|
|
}
|
|
|
|
this->columns = columns;
|
|
|
|
return this;
|
|
|
|
}
|