1
1
mirror of https://github.com/danbee/persephone synced 2025-03-04 08:39:11 +00:00
persephone/Persephone/Components/Shared/Extensions/NSUserInterfaceItemIdentifier.swift
Daniel Barber a8987029f5
Redesign queue view
* Add cover art for each track
* Stack song title and artist
* Add song duration
* Redesign the dragged image view to match
2020-01-22 22:23:59 -05:00

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")
}