mirror of https://github.com/xzeldon/htop.git
Fixes for header generation.
This commit is contained in:
parent
0df3ea08d3
commit
130938f691
11
CRT.c
11
CRT.c
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
htop - CRT.c
|
htop - CRT.c
|
||||||
(C) 2004,2005 Hisham H. Muhammad
|
(C) 2004-2006 Hisham H. Muhammad
|
||||||
Released under the GNU GPL, see the COPYING file
|
Released under the GNU GPL, see the COPYING file
|
||||||
in the source distribution for its full text.
|
in the source distribution for its full text.
|
||||||
*/
|
*/
|
||||||
|
@ -18,6 +18,13 @@ in the source distribution for its full text.
|
||||||
|
|
||||||
#define ColorPair(i,j) COLOR_PAIR((7-i)*8+j)
|
#define ColorPair(i,j) COLOR_PAIR((7-i)*8+j)
|
||||||
|
|
||||||
|
#define COLORSCHEME_DEFAULT 0
|
||||||
|
#define COLORSCHEME_MONOCHROME 1
|
||||||
|
#define COLORSCHEME_BLACKONWHITE 2
|
||||||
|
#define COLORSCHEME_BLACKONWHITE2 3
|
||||||
|
#define COLORSCHEME_MIDNIGHT 4
|
||||||
|
#define COLORSCHEME_BLACKNIGHT 5
|
||||||
|
|
||||||
#define Black COLOR_BLACK
|
#define Black COLOR_BLACK
|
||||||
#define Red COLOR_RED
|
#define Red COLOR_RED
|
||||||
#define Green COLOR_GREEN
|
#define Green COLOR_GREEN
|
||||||
|
@ -93,6 +100,8 @@ extern int CRT_delay;
|
||||||
|
|
||||||
extern int CRT_colors[LAST_COLORELEMENT];
|
extern int CRT_colors[LAST_COLORELEMENT];
|
||||||
|
|
||||||
|
extern int CRT_colorScheme;
|
||||||
|
|
||||||
}*/
|
}*/
|
||||||
|
|
||||||
// TODO: centralize these in Settings.
|
// TODO: centralize these in Settings.
|
||||||
|
|
|
@ -28,7 +28,7 @@ typedef struct ColorsListBox_ {
|
||||||
|
|
||||||
}*/
|
}*/
|
||||||
|
|
||||||
/* private property */
|
/* private */
|
||||||
static char* ColorSchemes[] = {
|
static char* ColorSchemes[] = {
|
||||||
"Default",
|
"Default",
|
||||||
"Monochromatic",
|
"Monochromatic",
|
||||||
|
|
5
Meter.c
5
Meter.c
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
htop - Meter.c
|
htop - Meter.c
|
||||||
(C) 2004,2005 Hisham H. Muhammad
|
(C) 2004-2006 Hisham H. Muhammad
|
||||||
Released under the GNU GPL, see the COPYING file
|
Released under the GNU GPL, see the COPYING file
|
||||||
in the source distribution for its full text.
|
in the source distribution for its full text.
|
||||||
*/
|
*/
|
||||||
|
@ -66,6 +66,9 @@ extern char* METER_CLASS;
|
||||||
#ifndef MIN
|
#ifndef MIN
|
||||||
#define MIN(a,b) ((a)<(b)?(a):(b))
|
#define MIN(a,b) ((a)<(b)?(a):(b))
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef MAX
|
||||||
|
#define MAX(a,b) ((a)>(b)?(a):(b))
|
||||||
|
#endif
|
||||||
|
|
||||||
/* private property */
|
/* private property */
|
||||||
char* METER_CLASS = "Meter";
|
char* METER_CLASS = "Meter";
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
htop - Process.c
|
htop - Process.c
|
||||||
(C) 2004,2005 Hisham H. Muhammad
|
(C) 2004-2006 Hisham H. Muhammad
|
||||||
Released under the GNU GPL, see the COPYING file
|
Released under the GNU GPL, see the COPYING file
|
||||||
in the source distribution for its full text.
|
in the source distribution for its full text.
|
||||||
*/
|
*/
|
||||||
|
@ -235,6 +235,7 @@ static void Process_printTTY(RichString* str, int tty_nr) {
|
||||||
char* buffer[11];
|
char* buffer[11];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* private */
|
||||||
inline static void Process_writeCommand(Process* this, int attr, RichString* str) {
|
inline static void Process_writeCommand(Process* this, int attr, RichString* str) {
|
||||||
if (this->pl->highlightBaseName) {
|
if (this->pl->highlightBaseName) {
|
||||||
char* firstSpace = strchr(this->comm, ' ');
|
char* firstSpace = strchr(this->comm, ' ');
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
htop - TraceScreen.c
|
htop - TraceScreen.c
|
||||||
(C) 2005 Hisham H. Muhammad
|
(C) 2005-2006 Hisham H. Muhammad
|
||||||
Released under the GNU GPL, see the COPYING file
|
Released under the GNU GPL, see the COPYING file
|
||||||
in the source distribution for its full text.
|
in the source distribution for its full text.
|
||||||
*/
|
*/
|
||||||
|
@ -16,6 +16,8 @@ in the source distribution for its full text.
|
||||||
#include "ProcessList.h"
|
#include "ProcessList.h"
|
||||||
#include "Process.h"
|
#include "Process.h"
|
||||||
#include "ListItem.h"
|
#include "ListItem.h"
|
||||||
|
#include "ListBox.h"
|
||||||
|
#include "FunctionBar.h"
|
||||||
|
|
||||||
/*{
|
/*{
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue