2009-02-22 16:56:28 -03:00
|
|
|
//
|
|
|
|
// MainWindow.h
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 2/22/09.
|
|
|
|
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2013-10-11 16:02:05 -03:00
|
|
|
@interface MainWindow : NSWindow {
|
2013-10-13 01:09:54 -03:00
|
|
|
IBOutlet NSView *playlistView;
|
2022-01-21 04:53:45 -03:00
|
|
|
IBOutlet NSToolbar *mainToolbar;
|
|
|
|
|
|
|
|
NSImage *hdcdLogo;
|
2009-02-22 16:56:28 -03:00
|
|
|
}
|
|
|
|
|
2022-01-21 04:53:45 -03:00
|
|
|
- (void)showHDCDLogo:(BOOL)show;
|
|
|
|
|
2009-02-22 16:56:28 -03:00
|
|
|
@end
|