string rows
This commit is contained in:
parent
a664750d1a
commit
b304d01e0c
15
table.proto
15
table.proto
|
@ -17,7 +17,8 @@ message StringRow {
|
||||||
|
|
||||||
message IntRow {
|
message IntRow {
|
||||||
Widget header = 1; //
|
Widget header = 1; //
|
||||||
repeated Widget widgets = 2; //
|
repeated int64 vals = 2; //
|
||||||
|
repeated Widget widgets = 3; //
|
||||||
}
|
}
|
||||||
|
|
||||||
message TimeRow {
|
message TimeRow {
|
||||||
|
@ -32,11 +33,13 @@ message BoolRow {
|
||||||
|
|
||||||
message Table { // `autogenpb:marshal`
|
message Table { // `autogenpb:marshal`
|
||||||
string title = 1;
|
string title = 1;
|
||||||
repeated string order = 2;
|
Widget window = 2; //
|
||||||
repeated StringRow StringRows = 3;
|
Widget grid = 3; //
|
||||||
repeated IntRow IntRows = 4;
|
repeated string order = 4;
|
||||||
repeated TimeRow TimeRows = 5;
|
repeated StringRow StringRows = 5;
|
||||||
repeated BoolRow BoolRows = 6;
|
repeated IntRow IntRows = 6;
|
||||||
|
repeated TimeRow TimeRows = 7;
|
||||||
|
repeated BoolRow BoolRows = 8;
|
||||||
}
|
}
|
||||||
|
|
||||||
message Tables { // `autogenpb:marshal`
|
message Tables { // `autogenpb:marshal`
|
||||||
|
|
Loading…
Reference in New Issue