forked from htop-dev/htop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DynamicScreen.h
38 lines (27 loc) · 953 Bytes
/
DynamicScreen.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef HEADER_DynamicScreen
#define HEADER_DynamicScreen
/*
htop - DynamicColumn.h
(C) 2023 htop dev team
Released under the GNU GPLv2+, see the COPYING file
in the source distribution for its full text.
*/
#include <stdbool.h>
#include "Hashtable.h"
#include "Panel.h"
typedef struct DynamicScreen_ {
char name[32]; /* unique name cannot contain any spaces */
char* heading; /* user-settable more readable name */
char* caption; /* explanatory text for screen */
char* fields;
char* sortKey;
char* columnKeys;
int direction;
} DynamicScreen;
Hashtable* DynamicScreens_new(void);
void DynamicScreens_delete(Hashtable* screens);
void DynamicScreen_done(DynamicScreen* this);
void DynamicScreens_addAvailableColumns(Panel* availableColumns, char* screen);
const char* DynamicScreen_lookup(Hashtable* screens, unsigned int key);
bool DynamicScreen_search(Hashtable* screens, const char* name, unsigned int* key);
#endif