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