123456789101112131415161718192021222324252627282930313233343536 |
- //
- // KMToolbarMainItemView.swift
- // PDF Reader Pro
- //
- // Created by tangchao on 2023/12/14.
- //
- import Cocoa
- class KMToolbarMainItemView: KMToolbarItemView {
- override class var textFont: NSFont {
- get {
- .systemFont(ofSize: 11)
- }
- }
-
- override class var textNormalColor: NSColor {
- get {
- KMAppearance.subtitleColor()
- }
- }
-
- override class var textSelectedColor: NSColor {
- get {
- KMAppearance.subtitleColor()
- }
- }
-
- override func draw(_ dirtyRect: NSRect) {
- super.draw(dirtyRect)
- // Drawing code here.
- }
-
- }
|