cog/Application/PlaybackEventController.h

33 lines
676 B
C
Raw Normal View History

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>
#import <UserNotifications/UserNotifications.h>
2009-03-05 17:04:16 +00:00
2014-12-04 05:36:55 +00:00
#import "PlaybackController.h"
#import "PlaylistEntry.h"
2014-12-04 05:36:55 +00:00
2009-03-05 17:04:16 +00:00
@class AudioScrobbler;
@interface PlaybackEventController : NSObject <NSUserNotificationCenterDelegate, UNUserNotificationCenterDelegate> {
2009-03-05 17:04:16 +00:00
NSOperationQueue *queue;
PlaylistEntry *entry;
2009-03-05 17:04:16 +00:00
AudioScrobbler *scrobbler;
2014-12-04 05:36:55 +00:00
IBOutlet PlaybackController *playbackController;
IBOutlet NSWindow *mainWindow;
IBOutlet NSWindow *miniWindow;
Boolean didGainUN;
2009-03-05 17:04:16 +00:00
}
@end