summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--table.proto15
1 files changed, 9 insertions, 6 deletions
diff --git a/table.proto b/table.proto
index 1bfa857..424c8b2 100644
--- a/table.proto
+++ b/table.proto
@@ -17,7 +17,8 @@ message StringRow {
message IntRow {
Widget header = 1; //
- repeated Widget widgets = 2; //
+ repeated int64 vals = 2; //
+ repeated Widget widgets = 3; //
}
message TimeRow {
@@ -32,11 +33,13 @@ message BoolRow {
message Table { // `autogenpb:marshal`
string title = 1;
- repeated string order = 2;
- repeated StringRow StringRows = 3;
- repeated IntRow IntRows = 4;
- repeated TimeRow TimeRows = 5;
- repeated BoolRow BoolRows = 6;
+ Widget window = 2; //
+ Widget grid = 3; //
+ repeated string order = 4;
+ repeated StringRow StringRows = 5;
+ repeated IntRow IntRows = 6;
+ repeated TimeRow TimeRows = 7;
+ repeated BoolRow BoolRows = 8;
}
message Tables { // `autogenpb:marshal`