2006-04-10 20:40:38 +00:00
|
|
|
/* Do not edit this file. It was automatically generated. */
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
#ifndef HEADER_Settings
|
|
|
|
#define HEADER_Settings
|
|
|
|
/*
|
2006-06-06 20:28:42 +00:00
|
|
|
htop - Settings.h
|
2011-05-26 16:35:07 +00:00
|
|
|
(C) 2004-2011 Hisham H. Muhammad
|
2006-03-04 18:16:49 +00:00
|
|
|
Released under the GNU GPL, see the COPYING file
|
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2006-04-10 20:40:38 +00:00
|
|
|
#define DEFAULT_DELAY 15
|
|
|
|
|
2015-01-22 01:27:31 +00:00
|
|
|
#include "Process.h"
|
2011-12-26 21:35:57 +00:00
|
|
|
#include <stdbool.h>
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2015-01-22 01:27:31 +00:00
|
|
|
typedef struct {
|
|
|
|
int len;
|
|
|
|
char** names;
|
|
|
|
int* modes;
|
|
|
|
} MeterColumnSettings;
|
2015-01-23 05:08:21 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
typedef struct Settings_ {
|
2015-01-22 01:27:31 +00:00
|
|
|
char* filename;
|
2019-10-31 16:39:12 +00:00
|
|
|
|
2015-01-22 01:27:31 +00:00
|
|
|
MeterColumnSettings columns[2];
|
|
|
|
|
|
|
|
ProcessField* fields;
|
|
|
|
int flags;
|
2006-03-04 18:16:49 +00:00
|
|
|
int colorScheme;
|
2006-04-10 20:40:38 +00:00
|
|
|
int delay;
|
2015-01-22 01:27:31 +00:00
|
|
|
|
2015-08-12 20:11:07 +00:00
|
|
|
int cpuCount;
|
2015-01-22 01:27:31 +00:00
|
|
|
int direction;
|
|
|
|
ProcessField sortKey;
|
|
|
|
|
|
|
|
bool countCPUsFromZero;
|
|
|
|
bool detailedCPUTime;
|
2019-08-10 18:20:21 +00:00
|
|
|
bool showCPUUsage;
|
2019-08-10 04:34:48 +00:00
|
|
|
bool showCPUFrequency;
|
2015-01-22 01:27:31 +00:00
|
|
|
bool treeView;
|
2015-07-29 19:14:29 +00:00
|
|
|
bool showProgramPath;
|
2015-01-22 01:27:31 +00:00
|
|
|
bool hideThreads;
|
|
|
|
bool shadowOtherUsers;
|
|
|
|
bool showThreadNames;
|
|
|
|
bool hideKernelThreads;
|
|
|
|
bool hideUserlandThreads;
|
|
|
|
bool highlightBaseName;
|
|
|
|
bool highlightMegabytes;
|
|
|
|
bool highlightThreads;
|
|
|
|
bool updateProcessNames;
|
|
|
|
bool accountGuestInCPUMeter;
|
|
|
|
bool headerMargin;
|
2019-07-12 19:41:09 +00:00
|
|
|
bool enableMouse;
|
2019-10-31 16:20:55 +00:00
|
|
|
bool vimMode;
|
2015-01-22 01:27:31 +00:00
|
|
|
|
2014-02-27 19:35:22 +00:00
|
|
|
bool changed;
|
2006-03-04 18:16:49 +00:00
|
|
|
} Settings;
|
|
|
|
|
2015-01-22 01:27:31 +00:00
|
|
|
#ifndef Settings_cpuId
|
|
|
|
#define Settings_cpuId(settings, cpu) ((settings)->countCPUsFromZero ? (cpu) : (cpu)+1)
|
|
|
|
#endif
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern void Settings_delete(Settings* this);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern bool Settings_write(Settings* this);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern Settings* Settings_new(int cpuCount);
|
2015-01-22 01:27:31 +00:00
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern void Settings_invertSortOrder(Settings* this);
|
2008-03-09 08:58:38 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
#endif
|