12345678910111213141516171819202122232425262728 |
- //
- // KMTableView.swift
- // PDF Reader Pro
- //
- // Created by wanjun on 2022/11/11.
- //
- import Cocoa
- class KMTableView: NSTableView {
-
- var menuClickedAction: ((_ clickPoint: NSPoint) -> NSMenu)?
- override func draw(_ dirtyRect: NSRect) {
- super.draw(dirtyRect)
- // Drawing code here.
- }
-
- override func menu(for event: NSEvent) -> NSMenu? {
- let point = event.locationInWindow
- if let menu = menuClickedAction?(point) {
- return menu
- }
-
- return super.menu(for: event)
- }
- }
|