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.
|
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.
|
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.
|
Changed info panel to a drawer.
|
||||||
|
Misc UI fixes.
|
||||||
TODO: have button images change, play to pause...shuffle and repeat
|
|
||||||
|
|
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