diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2015-07-13 06:49:05 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2015-07-13 06:49:05 +0300 |
commit | 6dd47135d4fe5dd9819fcda2674322bad688c3aa (patch) | |
tree | 80c4343f3a1902f913a97b0b7b2804f9ecbfb3c4 | |
parent | 6a7046891d4ecca4bd4aa5808bc31eb306eab22a (diff) |
thinking about proto
-rw-r--r-- | protocol/udm.proto | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/protocol/udm.proto b/protocol/udm.proto index 05059b8..1a821b8 100644 --- a/protocol/udm.proto +++ b/protocol/udm.proto @@ -24,12 +24,14 @@ enum MODULE_UI_ELEMENT_TYPE { UI_INTEGER = 1; UI_PROGRESS_BAR = 2; UI_WINDOW = 3; + UI_GROUP = 4; } message module_ui_element_info { optional MODULE_UI_ELEMENT_TYPE type = 1 [default = UI_STRING]; - required string id = 2; //internal element id used to get element value - optional string name = 3 [default = "not set"]; + repeated module_ui_element_info children = 2; + required string id = 3; //internal element id used to get element value + optional string name = 4 [default = "not set"]; } message setting { |