2009-03-05 14:04:16 -03:00
|
|
|
//
|
|
|
|
// PlaybackEventController.h
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 3/5/09.
|
|
|
|
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
2020-03-21 05:51:35 -03:00
|
|
|
#import <UserNotifications/UserNotifications.h>
|
2009-03-05 14:04:16 -03:00
|
|
|
|
2014-12-04 02:36:55 -03:00
|
|
|
#import "PlaybackController.h"
|
|
|
|
|
2009-03-05 14:04:16 -03:00
|
|
|
@class AudioScrobbler;
|
2021-02-26 17:01:48 -03:00
|
|
|
|
|
|
|
@interface PlaybackEventController
|
2022-02-07 02:49:27 -03:00
|
|
|
: NSObject <NSUserNotificationCenterDelegate, UNUserNotificationCenterDelegate> {
|
|
|
|
IBOutlet PlaybackController *playbackController;
|
2021-02-26 17:01:48 -03:00
|
|
|
|
2022-02-07 02:49:27 -03:00
|
|
|
IBOutlet NSWindow *mainWindow;
|
|
|
|
IBOutlet NSWindow *miniWindow;
|
2009-03-05 14:04:16 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|