Cog/Window/PlaybackButtons.h
Christopher Snowhill 421eb8ed82 Replace playback buttons with SF Symbols on 11.0+
On macOS Big Sur and newer, replace the playback buttons with system
symbols.

Should fix #96

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2022-02-10 01:18:34 -08:00

26 lines
457 B
Objective-C

//
// PlaybackButtons.h
// Cog
//
// Created by Vincent Spader on 2/28/09.
// Copyright 2009 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class PlaybackController;
@interface PlaybackButtons : NSSegmentedControl {
IBOutlet PlaybackController *playbackController;
NSImage *playImage;
NSImage *pauseImage;
NSImage *stopImage;
NSImage *prevImage;
NSImage *nextImage;
}
- (void)startObserving;
- (void)stopObserving;
@end