CVS fixup added/removed files
parent
b56b17ba0a
commit
4adcc751a6
|
@ -6,5 +6,4 @@ Fixed 10.3 bug where files would not be removed from the playlist.
|
|||
Added tooltips and control menu.
|
||||
Fixed play button so it now plays the currently selected song if no song is playing. Otherwise, it does pause/resume.
|
||||
Changed info panel to a drawer.
|
||||
|
||||
TODO: have button images change, play to pause...shuffle and repeat
|
||||
Misc UI fixes.
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,8 @@
|
|||
/* InfoView */
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
|
||||
@interface InfoView : NSView
|
||||
{
|
||||
}
|
||||
@end
|
|
@ -0,0 +1,21 @@
|
|||
#import "InfoView.h"
|
||||
|
||||
@implementation InfoView
|
||||
/*
|
||||
- (id)initWithFrame:(NSRect)frameRect
|
||||
{
|
||||
if ((self = [super initWithFrame:frameRect]) != nil) {
|
||||
// Add initialization code here
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
- (void)drawRect:(NSRect)rect
|
||||
{
|
||||
}
|
||||
*/
|
||||
- (BOOL)isFlipped
|
||||
{
|
||||
return YES;
|
||||
}
|
||||
@end
|
Loading…
Reference in New Issue