1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-16 22:28:57 +00:00
CLK/OSBindings/Mac/Clock Signal/Documents/ZX8081OptionsPanel.swift

21 lines
460 B
Swift
Raw Normal View History

//
// ZX8081OptionsPanel.swift
// Clock Signal
//
// Created by Thomas Harte on 08/07/2017.
// Copyright © 2017 Thomas Harte. All rights reserved.
//
import Cocoa
class ZX8081OptionsPanel: MachinePanel {
@IBOutlet var tapeControlButton: NSButton!
@IBAction func setAutomaticTapeConrol(_ sender: NSButton!) {
Swift.print("tape control \(tapeControlButton)")
}
@IBAction func playOrPauseTape(_ sender: NSButton!) {
Swift.print("play/pause")
}
}