summaryrefslogtreecommitdiffstats
path: root/Settings.h
diff options
context:
space:
mode:
authorNathan Scott <nathans@redhat.com>2023-08-22 16:11:05 +1000
committerNathan Scott <nathans@redhat.com>2023-08-30 13:11:57 +1000
commit0f751e991d399769fb8d7800f7c4bccec2ca7f60 (patch)
tree34cd7838f7ebf51049816f9acb6a63cea175af06 /Settings.h
parent68f4f10f012d11bd57bb725fe4113b2af937fc1d (diff)
Introduce Row and Table classes for screens beyond top-processes
This commit refactors the Process and ProcessList structures such they each have a new parent - Row and Table, respectively. These new classes handle screen updates relating to anything that could be represented in tabular format, e.g. cgroups, filesystems, etc, without us having to reimplement the display logic repeatedly for each new entity.
Diffstat (limited to 'Settings.h')
-rw-r--r--Settings.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/Settings.h b/Settings.h
index 48c62590..3caaab28 100644
--- a/Settings.h
+++ b/Settings.h
@@ -14,7 +14,7 @@ in the source distribution for its full text.
#include "Hashtable.h"
#include "HeaderLayout.h"
-#include "Process.h"
+#include "Row.h"
#define DEFAULT_DELAY 15
@@ -33,16 +33,16 @@ typedef struct {
int* modes;
} MeterColumnSetting;
-typedef struct {
+typedef struct ScreenSettings_ {
char* name;
- ProcessField* fields;
+ RowField* fields;
uint32_t flags;
int direction;
int treeDirection;
- ProcessField sortKey;
- ProcessField treeSortKey;
+ RowField sortKey;
+ RowField treeSortKey;
bool treeView;
- bool treeViewAlwaysByPID;
+ bool treeViewAlwaysByID;
bool allBranchesCollapsed;
} ScreenSettings;
@@ -104,9 +104,9 @@ typedef struct Settings_ {
#define Settings_cpuId(settings, cpu) ((settings)->countCPUsFromOne ? (cpu)+1 : (cpu))
-static inline ProcessField ScreenSettings_getActiveSortKey(const ScreenSettings* this) {
+static inline RowField ScreenSettings_getActiveSortKey(const ScreenSettings* this) {
return (this->treeView)
- ? (this->treeViewAlwaysByPID ? PID : this->treeSortKey)
+ ? (this->treeViewAlwaysByID ? 1 : this->treeSortKey)
: this->sortKey;
}
@@ -126,7 +126,7 @@ void ScreenSettings_delete(ScreenSettings* this);
void ScreenSettings_invertSortOrder(ScreenSettings* this);
-void ScreenSettings_setSortKey(ScreenSettings* this, ProcessField sortKey);
+void ScreenSettings_setSortKey(ScreenSettings* this, RowField sortKey);
void Settings_enableReadonly(void);

© 2014-2024 Faster IT GmbH | imprint | privacy policy