event_map.proto 596 B

123456789101112131415161718192021222324252627
  1. syntax = "proto3";
  2. enum GridEvent {
  3. GetGridData = 0;
  4. GetGridBlocks = 1;
  5. GetFields = 10;
  6. UpdateField = 11;
  7. UpdateFieldTypeOption = 12;
  8. InsertField = 13;
  9. DeleteField = 14;
  10. SwitchToField = 20;
  11. DuplicateField = 21;
  12. MoveItem = 22;
  13. GetFieldTypeOption = 23;
  14. CreateFieldTypeOption = 24;
  15. NewSelectOption = 30;
  16. GetSelectOptionCellData = 31;
  17. UpdateSelectOption = 32;
  18. CreateRow = 50;
  19. GetRow = 51;
  20. DeleteRow = 52;
  21. DuplicateRow = 53;
  22. GetCell = 70;
  23. UpdateCell = 71;
  24. UpdateSelectOptionCell = 72;
  25. UpdateDateCell = 80;
  26. }