// // KMHomeNOFileView.swift // PDF Reader Pro // // Created by lizhe on 2023/10/30. // import Cocoa class KMHomeNOFileView: KMBaseXibView { @IBOutlet weak var titleLabel: NSTextField! @IBOutlet weak var subtitleLabel: NSTextField! override func draw(_ dirtyRect: NSRect) { super.draw(dirtyRect) // Drawing code here. } override func setup() { self.titleLabel.textColor = KMAppearance.Layout.h1Color() self.titleLabel.stringValue = NSLocalizedString("No recently opened file", comment: "") self.subtitleLabel.textColor = KMAppearance.Layout.h2Color() self.subtitleLabel.stringValue = NSLocalizedString("Click Open File or drag-and-drop file here to open them.", comment: "") } }