KMBotaEnum.swift 496 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // KMBotaEnum.swift
  3. // PDF Master
  4. //
  5. // Created by tangchao on 2023/11/17.
  6. //
  7. import Foundation
  8. enum KMLeftSidePaneState: Int {
  9. case thumbnail = 1
  10. case outline
  11. case noteList
  12. case snapshotList
  13. case find
  14. }
  15. enum KMFindPaneState: Int {
  16. case singular = 1
  17. case grouped
  18. }
  19. enum KMFindState: Int {
  20. case content = 1
  21. case note
  22. case snapshot
  23. }
  24. enum KMFoldAllAnnotationType: Int {
  25. case none = 0 //混合
  26. case unfold //展开
  27. case fold //折叠
  28. }