2011-12-26 21:35:57 +00:00
|
|
|
/*
|
|
|
|
htop - ColorsPanel.c
|
|
|
|
(C) 2004-2011 Hisham H. Muhammad
|
2021-09-22 09:33:00 +00:00
|
|
|
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 "ColorsPanel.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2021-04-29 15:12:43 +00:00
|
|
|
#include <assert.h>
|
2020-09-19 11:55:23 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "CRT.h"
|
|
|
|
#include "FunctionBar.h"
|
2021-08-24 15:27:43 +00:00
|
|
|
#include "Macros.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "Object.h"
|
2020-11-21 20:40:08 +00:00
|
|
|
#include "OptionItem.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "ProvideCurses.h"
|
2011-12-26 21:35:57 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
// TO ADD A NEW SCHEME:
|
2006-05-30 13:47:28 +00:00
|
|
|
// * Increment the size of bool check in ColorsPanel.h
|
2015-02-03 21:30:05 +00:00
|
|
|
// * Add the entry in the ColorSchemeNames array below in the file
|
2006-03-04 18:16:49 +00:00
|
|
|
// * Add a define in CRT.h that matches the order of the array
|
|
|
|
// * Add the colors in CRT_setColors
|
|
|
|
|
|
|
|
|
2017-07-23 02:41:19 +00:00
|
|
|
static const char* const ColorsFunctions[] = {" ", " ", " ", " ", " ", " ", " ", " ", " ", "Done ", NULL};
|
2015-03-23 18:26:56 +00:00
|
|
|
|
2017-07-23 02:41:19 +00:00
|
|
|
static const char* const ColorSchemeNames[] = {
|
2006-03-04 18:16:49 +00:00
|
|
|
"Default",
|
|
|
|
"Monochromatic",
|
|
|
|
"Black on White",
|
|
|
|
"Light Terminal",
|
|
|
|
"MC",
|
|
|
|
"Black Night",
|
2015-04-09 18:17:20 +00:00
|
|
|
"Broken Gray",
|
2006-03-04 18:16:49 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
static void ColorsPanel_delete(Object* object) {
|
2006-05-30 13:47:28 +00:00
|
|
|
Panel* super = (Panel*) object;
|
|
|
|
ColorsPanel* this = (ColorsPanel*) object;
|
|
|
|
Panel_done(super);
|
2006-03-04 18:16:49 +00:00
|
|
|
free(this);
|
|
|
|
}
|
|
|
|
|
2012-12-05 15:12:20 +00:00
|
|
|
static HandlerResult ColorsPanel_eventHandler(Panel* super, int ch) {
|
2006-05-30 13:47:28 +00:00
|
|
|
ColorsPanel* this = (ColorsPanel*) super;
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
HandlerResult result = IGNORED;
|
2021-08-21 16:00:14 +00:00
|
|
|
int mark;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
switch(ch) {
|
|
|
|
case 0x0a:
|
|
|
|
case 0x0d:
|
|
|
|
case KEY_ENTER:
|
2008-05-07 23:01:45 +00:00
|
|
|
case KEY_MOUSE:
|
2015-08-27 21:42:35 +00:00
|
|
|
case KEY_RECLICK:
|
2006-03-04 18:16:49 +00:00
|
|
|
case ' ':
|
2021-08-21 16:00:14 +00:00
|
|
|
mark = Panel_getSelectedIndex(super);
|
2020-12-16 20:46:11 +00:00
|
|
|
assert(mark >= 0);
|
|
|
|
assert(mark < LAST_COLORSCHEME);
|
2015-02-03 21:30:05 +00:00
|
|
|
for (int i = 0; ColorSchemeNames[i] != NULL; i++)
|
2007-11-08 23:23:01 +00:00
|
|
|
CheckItem_set((CheckItem*)Panel_get(super, i), false);
|
|
|
|
CheckItem_set((CheckItem*)Panel_get(super, mark), true);
|
2020-11-01 00:09:51 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
this->settings->colorScheme = mark;
|
2006-05-19 20:27:23 +00:00
|
|
|
this->settings->changed = true;
|
2020-12-16 20:46:11 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
CRT_setColors(mark);
|
2018-02-05 06:01:12 +00:00
|
|
|
clear();
|
2020-12-16 20:46:11 +00:00
|
|
|
|
|
|
|
result = HANDLED | REDRAW;
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
2020-12-16 20:46:11 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-10-05 11:19:50 +00:00
|
|
|
const PanelClass ColorsPanel_class = {
|
2012-12-05 15:12:20 +00:00
|
|
|
.super = {
|
|
|
|
.extends = Class(Panel),
|
|
|
|
.delete = ColorsPanel_delete
|
|
|
|
},
|
|
|
|
.eventHandler = ColorsPanel_eventHandler
|
|
|
|
};
|
|
|
|
|
2021-08-21 15:58:23 +00:00
|
|
|
ColorsPanel* ColorsPanel_new(Settings* settings) {
|
2012-12-05 15:12:20 +00:00
|
|
|
ColorsPanel* this = AllocThis(ColorsPanel);
|
2008-03-09 08:58:38 +00:00
|
|
|
Panel* super = (Panel*) this;
|
2015-03-23 18:26:56 +00:00
|
|
|
FunctionBar* fuBar = FunctionBar_new(ColorsFunctions, NULL, NULL);
|
|
|
|
Panel_init(super, 1, 1, 1, 1, Class(CheckItem), true, fuBar);
|
2008-03-09 08:58:38 +00:00
|
|
|
|
|
|
|
this->settings = settings;
|
|
|
|
|
2020-12-16 20:46:11 +00:00
|
|
|
assert(ARRAYSIZE(ColorSchemeNames) == LAST_COLORSCHEME + 1);
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
Panel_setHeader(super, "Colors");
|
2015-02-03 21:30:05 +00:00
|
|
|
for (int i = 0; ColorSchemeNames[i] != NULL; i++) {
|
2020-11-21 20:40:08 +00:00
|
|
|
Panel_add(super, (Object*) CheckItem_newByVal(ColorSchemeNames[i], false));
|
2008-03-09 08:58:38 +00:00
|
|
|
}
|
|
|
|
CheckItem_set((CheckItem*)Panel_get(super, settings->colorScheme), true);
|
|
|
|
return this;
|
|
|
|
}
|