12345678910111213141516171819202122232425262728 |
- //
- // KMProgressWindowController.swift
- // PDF Reader Pro
- //
- // Created by tangchao on 2023/12/12.
- //
- import Cocoa
- class KMProgressWindowController: NSWindowController {
-
- @IBOutlet weak var titleLabel: NSTextField!
- @IBOutlet weak var extractProgress: NSProgressIndicator!
-
- var pageCount: Int = 0
-
- convenience init() {
- self.init(windowNibName: "KMProgressWindowController")
- }
- override func windowDidLoad() {
- super.windowDidLoad()
-
- self.titleLabel.stringValue = KMLocalizedString("Processing...", nil)
- self.extractProgress.doubleValue = 1
- }
- }
|