CVS fixup added/removed files

CQTexperiment
vspader 2005-06-07 21:06:04 +00:00
parent b56b17ba0a
commit 4adcc751a6
7 changed files with 30 additions and 2 deletions

View File

@ -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.

8
InfoView.h Normal file
View File

@ -0,0 +1,8 @@
/* InfoView */
#import <Cocoa/Cocoa.h>
@interface InfoView : NSView
{
}
@end

21
InfoView.m Normal file
View File

@ -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