KMBotaEnum.swift 382 B

123456789101112131415161718192021222324252627
  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. }