2018-09-30 09:36:14 +00:00
|
|
|
/*
|
|
|
|
* This file is part of mpv.
|
|
|
|
*
|
|
|
|
* mpv is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* mpv is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import Cocoa
|
|
|
|
|
2019-07-20 10:16:37 +00:00
|
|
|
extension NSDeviceDescriptionKey {
|
|
|
|
static let screenNumber = NSDeviceDescriptionKey("NSScreenNumber")
|
|
|
|
}
|
|
|
|
|
2018-09-30 09:36:14 +00:00
|
|
|
extension NSScreen {
|
|
|
|
public var displayID: CGDirectDisplayID {
|
|
|
|
get {
|
2019-07-20 10:16:37 +00:00
|
|
|
return deviceDescription[.screenNumber] as? CGDirectDisplayID ?? 0
|
2018-09-30 09:36:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-03-29 19:39:42 +00:00
|
|
|
|
|
|
|
extension NSColor {
|
|
|
|
convenience init(hex: String) {
|
2019-03-30 20:26:31 +00:00
|
|
|
let int = Int(hex.dropFirst(), radix: 16) ?? 0
|
|
|
|
let alpha = CGFloat((int >> 24) & 0x000000FF)/255
|
|
|
|
let red = CGFloat((int >> 16) & 0x000000FF)/255
|
|
|
|
let green = CGFloat((int >> 8) & 0x000000FF)/255
|
|
|
|
let blue = CGFloat((int) & 0x000000FF)/255
|
2019-03-29 19:39:42 +00:00
|
|
|
|
|
|
|
self.init(calibratedRed: red, green: green, blue: blue, alpha: alpha)
|
|
|
|
}
|
|
|
|
}
|
2019-09-29 16:35:12 +00:00
|
|
|
|
|
|
|
extension Bool {
|
|
|
|
init(_ int32: Int32) {
|
|
|
|
self.init(int32 != 0)
|
|
|
|
}
|
|
|
|
}
|
2019-11-30 22:47:52 +00:00
|
|
|
|
|
|
|
extension Int32 {
|
|
|
|
init(_ bool: Bool) {
|
|
|
|
self.init(bool ? 1 : 0)
|
|
|
|
}
|
|
|
|
}
|