vid_us_display_mode.dart 493 B

123456789101112131415161718192021222324252627
  1. enum VidUsDisplayMode {
  2. /// Normal B mode
  3. Normal,
  4. /// Up/Down, B holds 1/3, Other hodes 2/3
  5. UpDown13B,
  6. /// Up/Down, half, half
  7. UpDownHalfHalf,
  8. /// Up/Down, B holds2/3, Other hodes1/3
  9. UpDown23B,
  10. ///// Left/Right, B holds 1/3, other hodes 2/3
  11. //SideBySide13B = 3,
  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. }