summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--table.proto9
1 files changed, 5 insertions, 4 deletions
diff --git a/table.proto b/table.proto
index f9b355b..6f30432 100644
--- a/table.proto
+++ b/table.proto
@@ -27,19 +27,20 @@ message TimeRow {
}
message BoolRow {
- Widget header = 1; //
- repeated Widget widgets = 2; //
+ Widget header = 1;
+ repeated Widget widgets = 2;
}
message Table { // `autogenpb:marshal`
string title = 1;
- Widget window = 2; //
- Widget grid = 3; //
+ Widget parent = 2;
+ Widget grid = 3;
repeated string order = 4;
repeated StringRow StringRows = 5;
repeated IntRow IntRows = 6;
repeated TimeRow TimeRows = 7;
repeated BoolRow BoolRows = 8;
+ Widget window = 9; // deprecate this
}
message Tables { // `autogenpb:marshal`