Cog/Window/DraggableView.swift
Kevin López Brante 2ce719c7fa [About Dialog] Implemented new About dialog
Signed-off-by: Kevin López Brante <kevin@kddlb.cl>
2022-06-20 21:58:22 -04:00

30 lines
524 B
Swift

//
// DraggableView.swift
// Cog
//
// Created by Kevin López Brante on 20-06-22.
//
import Cocoa
class DraggableImageView: NSImageView {
override func draw(_ dirtyRect: NSRect) {
super.draw(dirtyRect)
// Drawing code here.
}
override func mouseDown(with event: NSEvent) {
window?.performDrag(with: event)
}
}
class DraggableVFXView: NSVisualEffectView {
override func mouseDown(with event: NSEvent) {
window?.performDrag(with: event)
}
}