diff options
| author | Jeff Carr <[email protected]> | 2025-02-19 02:49:14 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-02-19 17:39:45 -0600 |
| commit | b304d01e0c56d7899185ce22604a35e73b007a16 (patch) | |
| tree | 7173424e5006f891df88a514fd8cf099ec405c77 | |
| parent | a664750d1a62ea1db43fb08afc528f4e258e8d30 (diff) | |
string rows
| -rw-r--r-- | table.proto | 15 |
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` |
