2009-02-22 19:56:28 +00: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 19:02:05 +00:00
|
|
|
@interface MainWindow : NSWindow {
|
2022-02-07 05:49:27 +00:00
|
|
|
IBOutlet NSView *playlistView;
|
|
|
|
IBOutlet NSToolbar *mainToolbar;
|
|
|
|
|
|
|
|
NSImage *hdcdLogo;
|
2009-02-22 19:56:28 +00:00
|
|
|
}
|
|
|
|
|
2022-01-21 07:53:45 +00:00
|
|
|
- (void)showHDCDLogo:(BOOL)show;
|
|
|
|
|
2009-02-22 19:56:28 +00:00
|
|
|
@end
|