mirror of
https://github.com/danbee/persephone
synced 2025-03-04 08:39:11 +00:00
* Add cover art for each track * Stack song title and artist * Add song duration * Redesign the dragged image view to match
27 lines
994 B
Swift
27 lines
994 B
Swift
//
|
|
// NSUserInterfaceItemIdentifier.swift
|
|
// Persephone
|
|
//
|
|
// Created by Daniel Barber on 2019/2/08.
|
|
// Copyright © 2019 Dan Barber. All rights reserved.
|
|
//
|
|
|
|
import AppKit
|
|
|
|
extension NSUserInterfaceItemIdentifier {
|
|
static let queueSongInfoColumn = NSUserInterfaceItemIdentifier("songInfoColumn")
|
|
|
|
static let queueSongCover = NSUserInterfaceItemIdentifier("songCoverCell")
|
|
static let queueSongInfo = NSUserInterfaceItemIdentifier("songInfoCell")
|
|
static let queueSongDuration = NSUserInterfaceItemIdentifier("songDurationCell")
|
|
|
|
static let albumViewItem = NSUserInterfaceItemIdentifier("AlbumViewItem")
|
|
|
|
static let discNumber = NSUserInterfaceItemIdentifier("discNumberCell")
|
|
static let trackNumber = NSUserInterfaceItemIdentifier("trackNumberCell")
|
|
static let songTitle = NSUserInterfaceItemIdentifier("songTitleCell")
|
|
static let songDuration = NSUserInterfaceItemIdentifier("songDurationCell")
|
|
|
|
static let artistListName = NSUserInterfaceItemIdentifier("artistCell")
|
|
}
|