updated config frame widget to draw tabs for each config group
This commit is contained in:
parent
0147bb9988
commit
5d6d22c6eb
2 changed files with 65 additions and 47 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue