updated config frame widget to draw tabs for each config group

This commit is contained in:
bharnden 2019-11-06 22:41:05 -08:00
parent 0147bb9988
commit 5d6d22c6eb
2 changed files with 65 additions and 47 deletions

View file

@ -768,6 +768,23 @@ message NodeType {
}
}
message ConfigOptionType {
enum Enum {
NONE = 0;
UINT8 = 1;
UINT16 = 2;
UINT32 = 3;
UINT64 = 4;
INT8 = 5;
INT16 = 6;
INT32 = 7;
INT64 = 8;
FLOAT = 9;
STRING = 10;
BOOL = 11;
}
}
message ServiceValidationMode {
enum Enum {
BLOCKING = 0;