27 lines
481 B
Objective-C
27 lines
481 B
Objective-C
//
|
|
// DockIconController.h
|
|
// Cog
|
|
//
|
|
// Created by Vincent Spader on 2/28/09.
|
|
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class PlaybackController;
|
|
|
|
@interface DockIconController : NSObject {
|
|
NSImage *dockImage;
|
|
|
|
IBOutlet PlaybackController *playbackController;
|
|
|
|
NSInteger lastPlaybackStatus;
|
|
NSInteger lastColorfulStatus;
|
|
NSNumber *lastProgressStatus;
|
|
|
|
NSImageView *imageView;
|
|
NSProgressIndicator *progressIndicator;
|
|
}
|
|
|
|
@end
|