display_mode.dart 543 B

123456789101112131415161718192021222324252627
  1. /// C# enum begin at -1,so if u would like to match value, must calcluate -1
  2. // ignore_for_file: constant_identifier_names
  3. enum DisplayModeEnum {
  4. /// Normal B mode
  5. Normal,
  6. /// Up/Down, B holds 1/3, Other hodes 2/3
  7. UpDown13B,
  8. /// Up/Down, half, half
  9. UpDownHalfHalf,
  10. /// Up/Down, B holds2/3, Other hodes1/3
  11. UpDown23B,
  12. /// Left/Right, half, half
  13. SideBySideHalfHalf,
  14. /// Left/Right, B holds2/3, Other hodes1/3
  15. SideBySide14BOther,
  16. /// All Image area are Other image instead of B image
  17. FullOther,
  18. FullTissue,
  19. }