23 lines
824 B
Swift
Executable File
23 lines
824 B
Swift
Executable File
//
|
|
// iTunes.swift
|
|
// Harmony
|
|
//
|
|
// Created by Kim Wittenburg on 14.04.15.
|
|
// Copyright (c) 2015 Das Code Kollektiv. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import SearchAPI
|
|
|
|
/// The Cocoa Scripting Bridge interface of iTunes.
|
|
public let iTunes = iTunesApplication(bundleIdentifier: "com.apple.iTunes")!
|
|
|
|
/// A pasteboard type for `TagTunesTrack` objects. This type is used for dragging
|
|
/// tracks in TagTunes. It's data should be a single encoded `TagTunesTrack`
|
|
/// object.
|
|
public let TrackPboardType = "public.item.tagtunestrack"
|
|
|
|
/// A pasteboard type for `Int`s. The specific use of this type is not specified.
|
|
/// This pasteboard type should only be used for private purposes (for example to
|
|
/// *remember* the original indexes of dragged items in a table view).
|
|
public let IndexPboardType = "public.item.index" |