2009-03-05 17:04:16 +00: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 08:51:35 +00:00
|
|
|
#import <UserNotifications/UserNotifications.h>
|
2009-03-05 17:04:16 +00:00
|
|
|
|
2014-12-04 05:36:55 +00:00
|
|
|
#import "PlaybackController.h"
|
|
|
|
|
2021-02-26 20:01:48 +00:00
|
|
|
@interface PlaybackEventController
|
2022-02-07 05:49:27 +00:00
|
|
|
: NSObject <NSUserNotificationCenterDelegate, UNUserNotificationCenterDelegate> {
|
|
|
|
IBOutlet PlaybackController *playbackController;
|
2021-02-26 20:01:48 +00:00
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
IBOutlet NSWindow *mainWindow;
|
|
|
|
IBOutlet NSWindow *miniWindow;
|
2009-03-05 17:04:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|