Commit 8a5d95d0 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

macosx: Use input_ItemHasErrorWhenReading to display a small icon if there was...

macosx: Use input_ItemHasErrorWhenReading to display a small icon if there was an error when reading. This allow us not to display the message panel each time we have an error when reading.

Regarding the new look, feel free to improve.
parent f2b2e37c
...@@ -10,10 +10,7 @@ ...@@ -10,10 +10,7 @@
<integer>5</integer> <integer>5</integer>
<key>IBOpenObjects</key> <key>IBOpenObjects</key>
<array> <array>
<integer>29</integer> <integer>2211</integer>
<integer>21</integer>
<integer>2417</integer>
<integer>915</integer>
</array> </array>
<key>IBSystem Version</key> <key>IBSystem Version</key>
<string>9E17</string> <string>9E17</string>
......
...@@ -86,9 +86,6 @@ ...@@ -86,9 +86,6 @@
NSMutableArray * o_errors; NSMutableArray * o_errors;
NSMutableArray * o_icons; NSMutableArray * o_icons;
NSImage * warnIcon;
NSImage * errorIcon;
BOOL nib_interact_errpanel_loaded; BOOL nib_interact_errpanel_loaded;
} }
- (IBAction)cleanupTable:(id)sender; - (IBAction)cleanupTable:(id)sender;
......
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
#import "intf.h" #import "intf.h"
#import "interaction.h" #import "interaction.h"
#import "misc.h"
/* for the icons in our custom error panel */ /* for the icons in our custom error panel */
#import <ApplicationServices/ApplicationServices.h> #import <ApplicationServices/ApplicationServices.h>
...@@ -403,49 +404,11 @@ ...@@ -403,49 +404,11 @@
o_errors = [[NSMutableArray alloc] init]; o_errors = [[NSMutableArray alloc] init];
o_icons = [[NSMutableArray alloc] init]; o_icons = [[NSMutableArray alloc] init];
/* ugly Carbon stuff following...
* regrettably, you can't get the icons through clean Cocoa */
/* retrieve our error icon */
IconRef ourIconRef;
int returnValue;
returnValue = GetIconRef(kOnSystemDisk, 'macs', 'stop', &ourIconRef);
errorIcon = [[NSImage alloc] initWithSize:NSMakeSize(32,32)];
[errorIcon lockFocus];
CGRect rect = CGRectMake(0,0,32,32);
PlotIconRefInContext((CGContextRef)[[NSGraphicsContext currentContext]
graphicsPort],
&rect,
kAlignNone,
kTransformNone,
NULL /*inLabelColor*/,
kPlotIconRefNormalFlags,
(IconRef)ourIconRef);
[errorIcon unlockFocus];
returnValue = ReleaseIconRef(ourIconRef);
/* retrieve our caution icon */
returnValue = GetIconRef(kOnSystemDisk, 'macs', 'caut', &ourIconRef);
warnIcon = [[NSImage alloc] initWithSize:NSMakeSize(32,32)];
[warnIcon lockFocus];
PlotIconRefInContext((CGContextRef)[[NSGraphicsContext currentContext]
graphicsPort],
&rect,
kAlignNone,
kTransformNone,
NULL /*inLabelColor*/,
kPlotIconRefNormalFlags,
(IconRef)ourIconRef);
[warnIcon unlockFocus];
returnValue = ReleaseIconRef(ourIconRef);
return self; return self;
} }
-(void)dealloc -(void)dealloc
{ {
[errorIcon release];
[warnIcon release];
[o_errors release]; [o_errors release];
[o_icons release]; [o_icons release];
[super dealloc]; [super dealloc];
...@@ -471,10 +434,9 @@ ...@@ -471,10 +434,9 @@
[o_errors addObject: ourError]; [o_errors addObject: ourError];
[ourError release]; [ourError release];
[o_icons addObject: errorIcon]; [o_icons addObject: [NSImage imageWithErrorIcon]];
[o_error_table reloadData]; [o_error_table reloadData];
[self showPanel];
} }
-(void)addWarning: (NSString *)o_warning withMsg:(NSString *)o_msg -(void)addWarning: (NSString *)o_warning withMsg:(NSString *)o_msg
...@@ -492,11 +454,9 @@ ...@@ -492,11 +454,9 @@
[o_errors addObject: ourWarning]; [o_errors addObject: ourWarning];
[ourWarning release]; [ourWarning release];
[o_icons addObject: warnIcon]; [o_icons addObject: [NSImage imageWithWarningIcon]];
[o_error_table reloadData]; [o_error_table reloadData];
[self showPanel];
} }
-(IBAction)cleanupTable:(id)sender -(IBAction)cleanupTable:(id)sender
......
...@@ -24,6 +24,15 @@ ...@@ -24,6 +24,15 @@
#import <Cocoa/Cocoa.h> #import <Cocoa/Cocoa.h>
#import <ApplicationServices/ApplicationServices.h> #import <ApplicationServices/ApplicationServices.h>
/*****************************************************************************
* NSImage (VLCAddition)
*****************************************************************************/
@interface NSImage (VLCAdditions)
+ (id)imageWithWarningIcon;
+ (id)imageWithErrorIcon;
@end
/***************************************************************************** /*****************************************************************************
* NSAnimation (VLCAddition) * NSAnimation (VLCAddition)
*****************************************************************************/ *****************************************************************************/
......
...@@ -30,6 +30,59 @@ ...@@ -30,6 +30,59 @@
#import "playlist.h" #import "playlist.h"
#import "controls.h" #import "controls.h"
/*****************************************************************************
* NSImage (VLCAdditions)
*
* Addition to NSImage
*****************************************************************************/
@implementation NSImage (VLCAdditions)
+ (id)imageWithSystemName:(int)name
{
/* ugly Carbon stuff following...
* regrettably, you can't get the icons through clean Cocoa */
/* retrieve our error icon */
NSImage * icon;
IconRef ourIconRef;
int returnValue;
returnValue = GetIconRef(kOnSystemDisk, 'macs', name, &ourIconRef);
icon = [[[NSImage alloc] initWithSize:NSMakeSize(32,32)] autorelease];
[icon lockFocus];
CGRect rect = CGRectMake(0,0,32,32);
PlotIconRefInContext((CGContextRef)[[NSGraphicsContext currentContext]
graphicsPort],
&rect,
kAlignNone,
kTransformNone,
NULL /*inLabelColor*/,
kPlotIconRefNormalFlags,
(IconRef)ourIconRef);
[icon unlockFocus];
returnValue = ReleaseIconRef(ourIconRef);
return icon;
}
+ (id)imageWithWarningIcon
{
static NSImage * imageWithWarningIcon = nil;
if( !imageWithWarningIcon )
{
imageWithWarningIcon = [[[self class] imageWithSystemName:'caut'] retain];
}
return imageWithWarningIcon;
}
+ (id)imageWithErrorIcon
{
static NSImage * imageWithErrorIcon = nil;
if( !imageWithErrorIcon )
{
imageWithErrorIcon = [[[self class] imageWithSystemName:'stop'] retain];
}
return imageWithErrorIcon;
}
@end
/***************************************************************************** /*****************************************************************************
* NSAnimation (VLCAdditions) * NSAnimation (VLCAdditions)
* *
......
...@@ -258,7 +258,7 @@ ...@@ -258,7 +258,7 @@
attempted_reload = NO; attempted_reload = NO;
if( [[o_tc identifier] isEqualToString:@"1"] ) if( [[o_tc identifier] isEqualToString:@"name"] )
{ {
/* sanity check to prevent the NSString class from crashing */ /* sanity check to prevent the NSString class from crashing */
char *psz_title = input_item_GetTitle( p_item->p_input ); char *psz_title = input_item_GetTitle( p_item->p_input );
...@@ -269,36 +269,37 @@ ...@@ -269,36 +269,37 @@
else else
{ {
char *psz_name = input_item_GetName( p_item->p_input ); char *psz_name = input_item_GetName( p_item->p_input );
if( !EMPTY_STR( psz_name ) ) if( psz_name )
{
o_value = [NSString stringWithUTF8String: psz_name]; o_value = [NSString stringWithUTF8String: psz_name];
}
free( psz_name ); free( psz_name );
} }
free( psz_title ); free( psz_title );
} }
else else if( [[o_tc identifier] isEqualToString:@"artist"] )
{ {
char *psz_artist = input_item_GetArtist( p_item->p_input ); char *psz_artist = input_item_GetArtist( p_item->p_input );
if( [[o_tc identifier] isEqualToString:@"2"] && !EMPTY_STR( psz_artist ) ) if( psz_artist )
{
o_value = [NSString stringWithUTF8String: psz_artist]; o_value = [NSString stringWithUTF8String: psz_artist];
free( psz_artist );
}
else if( [[o_tc identifier] isEqualToString:@"duration"] )
{
char psz_duration[MSTRTIME_MAX_SIZE];
mtime_t dur = input_item_GetDuration( p_item->p_input );
if( dur != -1 )
{
secstotimestr( psz_duration, dur/1000000 );
o_value = [NSString stringWithUTF8String: psz_duration];
} }
else if( [[o_tc identifier] isEqualToString:@"3"] ) else
o_value = @"--:--";
}
else if( [[o_tc identifier] isEqualToString:@"status"] )
{
if( input_ItemHasErrorWhenReading( p_item->p_input ) )
{ {
char psz_duration[MSTRTIME_MAX_SIZE]; o_value = [NSImage imageWithWarningIcon];
mtime_t dur = input_item_GetDuration( p_item->p_input );
if( dur != -1 )
{
secstotimestr( psz_duration, dur/1000000 );
o_value = [NSString stringWithUTF8String: psz_duration];
}
else
{
o_value = @"--:--";
}
} }
free( psz_artist );
} }
return o_value; return o_value;
} }
...@@ -351,6 +352,13 @@ ...@@ -351,6 +352,13 @@
return self; return self;
} }
- (void)dealloc
{
[o_nodes_array release];
[o_items_array release];
[super dealloc];
}
- (void)awakeFromNib - (void)awakeFromNib
{ {
playlist_t * p_playlist = pl_Yield( VLCIntf ); playlist_t * p_playlist = pl_Yield( VLCIntf );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment