From 6dd47135d4fe5dd9819fcda2674322bad688c3aa Mon Sep 17 00:00:00 2001 From: Gluzskiy Alexandr Date: Mon, 13 Jul 2015 06:49:05 +0300 Subject: thinking about proto --- protocol/udm.proto | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'protocol') 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 { -- cgit v1.2.3