Я знаю, что есть куча вопросов, похожих на этот, но все они очень устарели, в основном у меня есть statusBarItem
, и я хочу, чтобы он реагировал на перетаскивание файлов, вот некоторые из кода, который я ' Мы пробовали:
extension NSStatusBarButton {
open override func prepareForDragOperation(_ sender: NSDraggingInfo) -> Bool {
true
}
open override func draggingEntered(_ sender: NSDraggingInfo) -> NSDragOperation {
print("dragging entered")
return .copy
}
open override func performDragOperation(_ sender: NSDraggingInfo) -> Bool {
print("Something was dragged!")
return true
}
open override func draggingEnded(_ sender: NSDraggingInfo) {
print("Draging ended")
}
}
class DragAndDropButton: NSStatusBarButton {
open override func prepareForDragOperation(_ sender: NSDraggingInfo) -> Bool {
true
}
open override func draggingEntered(_ sender: NSDraggingInfo) -> NSDragOperation {
print("dragging entered")
return .copy
}
open override func performDragOperation(_ sender: NSDraggingInfo) -> Bool {
print("Something was dragged!")
return true
}
open override func draggingEnded(_ sender: NSDraggingInfo) {
print("Draging ended")
}
}
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
var window: NSWindow!
var popover: NSPopover!
var statusBarItem: NSStatusItem!
func applicationDidFinishLaunching(_ aNotification: Notification) {
// Create the SwiftUI view and set the context as the value for the managedObjectContext environment keyPath.
// Add `@Environment(\.managedObjectContext)` in the views that will need the context.
let popoverView = PopoverView()
popover = NSPopover()
popover.contentSize = NSSize(width: AppConstants.popoverWidth, height: AppConstants.popoverHeight)
popover.animates = true
popover.behavior = .transient
popover.contentViewController = NSHostingController(rootView: popoverView)
statusBarItem = NSStatusBar.system.statusItem(withLength: CGFloat(NSStatusItem.variableLength))
let dropSubview = DragAndDropButton()
dropSubview.registerForDraggedTypes([.png])
dropSubview.image = NSImage(named: "CognitionSmall")
statusBarItem.button = drop
// statusBarItem.view = dropSubview
// statusBarItem.title = "Test"
if let button = self.statusBarItem.button {
// button.view
// button.registerForDraggedTypes([.multipleTextSelection])
button.addSubview(dropSubview)
button.imagePosition = NSControl.ImagePosition.imageLeft
button.image = NSImage(named: "CognitionSmall")
button.action = #selector(togglePopover(_:))
// button.window!.delegate = self
// button.addSubview(cognitoSubview)
// button.performDragOperation = #selector(onDrag(_:))
}
}
, как видите, я пытался расширить и переопределить поведение по умолчанию NSStatusBarButton
, а также заменить его своим собственным NSView
и добавить подпредставление к кнопке, но Кажется, ничего не работает, есть ли у кого-нибудь идеи, как это сделать?