Files
2024-05-07 18:27:01 +04:00

236 lines
6.5 KiB
Swift

//
// ContextMenu.swift
// TGUIKit
//
// Created by keepcoder on 03/10/2016.
// Copyright © 2016 Telegram. All rights reserved.
//
import Cocoa
public class ContextSeparatorItem : ContextMenuItem {
public init() {
super.init("", handler: {}, image: nil)
}
public override var isSeparatorItem: Bool {
return true
}
required public init(coder decoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
public override func rowItem(presentation: AppMenu.Presentation, interaction interactions: AppMenuBasicItem.Interaction) -> TableRowItem {
return AppMenuSeparatorItem(.zero, presentation: presentation)
}
}
open class ContextMenuItem : NSMenuItem {
private var _id: Int64?
open var id: Int64 {
if _id == nil {
_id = arc4random64()
}
return _id!
}
open override func isEqual(_ object: Any?) -> Bool {
if let object = object as? ContextMenuItem {
return object.title == self.title && object.state == self.state
}
return false
}
public enum KeyEquiavalent: String {
case none = ""
case cmds = "⌘S"
case cmdc = "⌘C"
case cmde = "⌘E"
case cmdr = "⌘R"
}
open func rowItem(presentation: AppMenu.Presentation, interaction: AppMenuBasicItem.Interaction) -> TableRowItem {
return AppMenuRowItem.init(.zero, item: self, interaction: interaction, presentation: presentation)
}
open func stickClass() -> AnyClass? {
return nil
}
public var handler:(()->Void)?
private let dynamicTitle:(()->String)?
public var hover:(()->Void)?
public var contextObject: Any? = nil
public var itemImage: ((NSColor, ContextMenuItem)->AppMenuItemImageDrawable)? {
didSet {
redraw?()
}
}
public var itemMode: AppMenu.ItemMode {
didSet {
redraw?()
}
}
public internal(set) var redraw:(()->Void)?
public var stateOnImage: NSImage? {
didSet {
redraw?()
}
}
public let keyEquivalentValue: KeyEquiavalent
let overrideWidth: CGFloat?
let removeTail: Bool
public init(_ title:String, handler: (()->Void)? = nil, hover: (()->Void)? = nil, image:NSImage? = nil, dynamicTitle:(()->String)? = nil, state: NSControl.StateValue? = nil, itemMode: AppMenu.ItemMode = .normal, itemImage: ((NSColor, ContextMenuItem)->AppMenuItemImageDrawable)? = nil, keyEquivalent: KeyEquiavalent = .none, removeTail: Bool = true, overrideWidth: CGFloat? = nil) {
self.handler = handler
self.hover = hover
self.dynamicTitle = dynamicTitle
self.itemMode = itemMode
self.itemImage = itemImage
self.removeTail = removeTail
self.overrideWidth = overrideWidth
self.keyEquivalentValue = keyEquivalent
super.init(title: title, action: nil, keyEquivalent: "")
self.title = title.prefixWithDots(removeTail ? cuttail ?? Int.max : Int.max)
self.action = #selector(click)
self.target = self
self.isEnabled = true
self.image = image
if let state = state {
self.state = state
}
}
open var cuttail: Int? {
return 30
}
public override var title: String {
get {
return self.dynamicTitle?() ?? super.title
}
set {
super.title = newValue
}
}
required public init(coder decoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
@objc func click() -> Void {
handler?()
}
}
public final class ContextMenu : NSMenu, NSMenuDelegate {
public let presentation: AppMenu.Presentation
let betterInside: Bool
let bottomAnchor: Bool
let maxHeight: CGFloat
let isLegacy: Bool
public internal(set) var isShown: Bool = false
public init(presentation: AppMenu.Presentation = .current(PresentationTheme.current.colors), betterInside: Bool = false, maxHeight: CGFloat = 600, isLegacy: Bool = false, bottomAnchor: Bool = false) {
self.presentation = presentation
self.betterInside = betterInside
self.maxHeight = maxHeight
self.isLegacy = isLegacy
self.bottomAnchor = bottomAnchor
super.init(title: "")
}
public var topWindow: Window?
public var closeOutside: Bool = true
public var loadMore: (()->Void)? = nil
@objc dynamic internal var _items:[NSMenuItem] = [] {
didSet {
self.removeAllItems()
for item in _items {
super.addItem(item)
}
}
}
required init(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
public override func addItem(_ newItem: NSMenuItem) {
_items.append(newItem)
}
public override var items: [NSMenuItem] {
get {
return _items
}
set {
_items = newValue
}
}
public var contextItems: [ContextMenuItem] {
return self.items.compactMap {
$0 as? ContextMenuItem
}
}
public var onShow:(ContextMenu)->Void = {(ContextMenu) in}
public var onClose:()->Void = {() in}
public static func show(items:[ContextMenuItem], view:NSView, event:NSEvent, onShow:@escaping(ContextMenu)->Void = {_ in}, onClose:@escaping()->Void = {}, presentation: AppMenu.Presentation = .current(PresentationTheme.current.colors), isLegacy: Bool = false) -> Void {
let menu = ContextMenu(presentation: presentation, isLegacy: isLegacy)
menu.onShow = onShow
menu.onClose = onClose
for item in items {
menu.addItem(item)
}
let app = AppMenu(menu: menu)
app.show(event: event, view: view)
}
public override class func popUpContextMenu(_ menu: NSMenu, with event: NSEvent, for view: NSView) {
show(items: menu.items.compactMap {
$0 as? ContextMenuItem
}, view: view, event: event)
}
public func validateMenuItem(_ menuItem: NSMenuItem) -> Bool {
return true
}
public func menuWillOpen(_ menu: NSMenu) {
onShow(self)
}
public func menuDidClose(_ menu: NSMenu) {
onClose()
}
deinit {
NotificationCenter.default.removeObserver(self)
}
}