KMBatchOperateNewCompressViewController.swift 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // KMBatchOperateNewCompressViewController.swift
  3. // PDF Reader Pro
  4. //
  5. // Created by lizhe on 2024/11/15.
  6. //
  7. import Cocoa
  8. class KMBatchOperateNewCompressViewController: KMBatchOperateBaseViewController {
  9. @IBOutlet weak var titleLabel: NSTextField!
  10. @IBOutlet weak var compressButton: NSButton!
  11. @IBOutlet weak var compressView: KMBatchOperateCompressView!
  12. override func viewDidLoad() {
  13. super.viewDidLoad()
  14. // Do view setup here.
  15. }
  16. }
  17. //UI
  18. extension KMBatchOperateNewCompressViewController {
  19. func updateUI() {
  20. }
  21. }
  22. //MARK: Data
  23. extension KMBatchOperateNewCompressViewController {
  24. func reloadData() {
  25. }
  26. }
  27. //MARK: Action
  28. extension KMBatchOperateNewCompressViewController {
  29. @IBAction func standardButtonAction(_ sender: NSButton) {
  30. }
  31. @IBAction func mobileButtonAction(_ sender: Any) {
  32. }
  33. @IBAction func customButtonAction(_ sender: Any) {
  34. }
  35. @IBAction func settingButtonAction(_ sender: Any) {
  36. }
  37. @IBAction func compressButtonAction(_ sender: Any) {
  38. }
  39. }