2009-02-22 22:28:09 +00:00
|
|
|
//
|
|
|
|
// MiniWindow.h
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 2/22/09.
|
|
|
|
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2018-09-27 03:30:02 +00:00
|
|
|
#import "PlaybackController.h"
|
2022-01-25 05:30:36 +00:00
|
|
|
#import "PlaylistController.h"
|
2022-02-07 05:49:27 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
2009-02-22 22:28:09 +00:00
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
@interface MiniWindow : NSWindow <NSDraggingDestination> {
|
|
|
|
IBOutlet PlaybackController *playbackController;
|
|
|
|
IBOutlet PlaylistController *playlistController;
|
|
|
|
IBOutlet NSToolbar *miniToolbar;
|
|
|
|
NSImage *hdcdLogo;
|
2009-02-22 22:28:09 +00:00
|
|
|
}
|
|
|
|
|
2022-01-21 07:53:45 +00:00
|
|
|
- (void)showHDCDLogo:(BOOL)show;
|
|
|
|
|
2009-02-22 22:28:09 +00:00
|
|
|
@end
|