/***************************************************************************** * controls.m: MacOS X interface plugin ***************************************************************************** * Copyright (C) 2002-2003 VideoLAN * $Id: controls.m,v 1.59 2003/12/15 19:25:56 bigben Exp $ * * Authors: Jon Lech Johansen * Christophe Massiot * Derk-Jan Hartman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. *****************************************************************************/ /***************************************************************************** * Preamble *****************************************************************************/ #include /* malloc(), free() */ #include /* for MAXPATHLEN */ #include #include "intf.h" #include "vout.h" #include "open.h" #include "controls.h" #include /***************************************************************************** * VLCControls implementation *****************************************************************************/ @implementation VLCControls - (IBAction)play:(id)sender { vlc_value_t val; playlist_t * p_playlist; intf_thread_t * p_intf = [NSApp getIntf]; input_thread_t * p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT, FIND_ANYWHERE ); val.i_int = PLAYING_S; if( p_input ) { var_Get( p_input, "state", &val ); } if( p_input && val.i_int != PAUSE_S ) { vout_OSDMessage( VLC_OBJECT(p_intf), _( "Pause" ) ); val.i_int = PAUSE_S; var_Set( p_input, "state", val ); } else { p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE ); if( p_playlist ) { vlc_mutex_lock( &p_playlist->object_lock ); if( p_playlist->i_size ) { vlc_mutex_unlock( &p_playlist->object_lock ); vout_OSDMessage( VLC_OBJECT(p_intf), _( "Play" ) ); playlist_Play( p_playlist ); vlc_object_release( p_playlist ); } else { vlc_mutex_unlock( &p_playlist->object_lock ); vlc_object_release( p_playlist ); [o_open openFileGeneric: nil]; } } } if( p_input ) vlc_object_release( p_input ); } - (IBAction)stop:(id)sender { intf_thread_t * p_intf = [NSApp getIntf]; playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE ); if( p_playlist != NULL ) { vout_OSDMessage( (vlc_object_t *)p_intf, _( "Stop" ) ); playlist_Stop( p_playlist ); vlc_object_release( p_playlist ); } } - (IBAction)faster:(id)sender { intf_thread_t * p_intf = [NSApp getIntf]; input_thread_t * p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT, FIND_ANYWHERE ); if( p_input != NULL ) { vlc_value_t val; val.b_bool = VLC_TRUE; var_Set( p_input, "rate-faster", val ); vout_OSDMessage( (vlc_object_t *)p_intf, _( "Faster" ) ); vlc_object_release( p_input ); } } - (IBAction)slower:(id)sender { intf_thread_t * p_intf = [NSApp getIntf]; input_thread_t * p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT, FIND_ANYWHERE ); if( p_input != NULL ) { vlc_value_t val; val.b_bool = VLC_TRUE; var_Set( p_input, "rate-slower", val ); vout_OSDMessage( (vlc_object_t *)p_intf, _( "Slower" ) ); vlc_object_release( p_input ); } } - (IBAction)prev:(id)sender { intf_thread_t * p_intf = [NSApp getIntf]; playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE ); if( p_playlist ) { playlist_Prev( p_playlist ); vlc_object_release( p_playlist ); vout_OSDMessage( (vlc_object_t *)p_intf, _( "Previous" ) ); } } - (IBAction)next:(id)sender { intf_thread_t * p_intf = [NSApp getIntf]; playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE ); if( p_playlist ) { playlist_Next( p_playlist ); vlc_object_release( p_playlist ); vout_OSDMessage( (vlc_object_t *)p_intf, _( "Next" ) ); } } - (IBAction)random:(id)sender { intf_thread_t * p_intf = [NSApp getIntf]; vlc_value_t val; playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE ); if( p_playlist == NULL ) { return; } var_Get( p_playlist, "random", &val ); val.b_bool = !val.b_bool; var_Set( p_playlist, "random", val ); if( val.b_bool ) { vout_OSDMessage( (vlc_object_t *)p_intf, _( "Shuffle On" ) ); } else { vout_OSDMessage( (vlc_object_t *)p_intf, _( "Shuffle Off" ) ); } p_intf->p_sys->b_playlist_update = VLC_TRUE; p_intf->p_sys->b_intf_update = VLC_TRUE; vlc_object_release( p_playlist ); } - (IBAction)repeat:(id)sender { intf_thread_t * p_intf = [NSApp getIntf]; vlc_value_t val; playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE ); if( p_playlist == NULL ) { return; } var_Get( p_playlist, "repeat", &val ); val.b_bool = !val.b_bool; var_Set( p_playlist, "repeat", val ); if( val.b_bool ) { vout_OSDMessage( (vlc_object_t *)p_intf, _( "Repeat On" ) ); } else { vout_OSDMessage( (vlc_object_t *)p_intf, _( "Repeat Off" ) ); } p_intf->p_sys->b_playlist_update = VLC_TRUE; p_intf->p_sys->b_intf_update = VLC_TRUE; vlc_object_release( p_playlist ); } - (IBAction)loop:(id)sender { intf_thread_t * p_intf = [NSApp getIntf]; vlc_value_t val; playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE ); if( p_playlist == NULL ) { return; } var_Get( p_playlist, "loop", &val ); val.b_bool = !val.b_bool; var_Set( p_playlist, "loop", val ); if( val.b_bool ) { vout_OSDMessage( (vlc_object_t *)p_intf, _( "Loop On" ) ); } else { vout_OSDMessage( (vlc_object_t *)p_intf, _( "Loop Off" ) ); } p_intf->p_sys->b_playlist_update = VLC_TRUE; p_intf->p_sys->b_intf_update = VLC_TRUE; vlc_object_release( p_playlist ); } - (IBAction)forward:(id)sender { intf_thread_t * p_intf = [NSApp getIntf]; input_thread_t * p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT, FIND_ANYWHERE ); if( p_input != NULL ) { vlc_value_t time; time.i_time = 10 * 1000000; var_Set( p_input, "time-offset", time ); vlc_object_release( p_input ); } } - (IBAction)backward:(id)sender { intf_thread_t * p_intf = [NSApp getIntf]; input_thread_t * p_input = vlc_object_find( p_intf, VLC_OBJECT_INPUT, FIND_ANYWHERE ); if( p_input != NULL ) { vlc_value_t time; time.i_time = -10 * 1000000; var_Set( p_input, "time-offset", time ); vlc_object_release( p_input ); } } - (IBAction)volumeUp:(id)sender { intf_thread_t * p_intf = [NSApp getIntf]; if( p_intf->p_sys->b_mute ) { [self mute: nil]; } aout_VolumeUp( p_intf, 1, NULL ); [self updateVolumeSlider]; } - (IBAction)volumeDown:(id)sender { intf_thread_t * p_intf = [NSApp getIntf]; if( p_intf->p_sys->b_mute ) { [self mute: nil]; } aout_VolumeDown( p_intf, 1, NULL ); [self updateVolumeSlider]; } - (IBAction)mute:(id)sender { intf_thread_t * p_intf = [NSApp getIntf]; audio_volume_t i_volume; aout_VolumeMute( p_intf, &i_volume ); p_intf->p_sys->b_mute = ( i_volume == 0 ); [self updateVolumeSlider]; } - (IBAction)volumeSliderUpdated:(id)sender { intf_thread_t * p_intf = [NSApp getIntf]; audio_volume_t i_volume = (audio_volume_t)[sender intValue]; aout_VolumeSet( p_intf, i_volume * AOUT_VOLUME_STEP ); } - (void)updateVolumeSlider { intf_thread_t * p_intf = [NSApp getIntf]; audio_volume_t i_volume; char string[9]; aout_VolumeGet( p_intf, &i_volume ); [o_volumeslider setFloatValue: (float)(i_volume / AOUT_VOLUME_STEP)]; sprintf( string, "Vol %d%%", i_volume*100/AOUT_VOLUME_MAX ); vout_OSDMessage( (vlc_object_t *)p_intf, string ); } - (IBAction)windowAction:(id)sender { id o_window = [NSApp keyWindow]; NSString *o_title = [sender title]; NSArray *o_windows = [NSApp orderedWindows]; NSEnumerator *o_enumerator = [o_windows objectEnumerator]; vout_thread_t *p_vout = vlc_object_find( [NSApp getIntf], VLC_OBJECT_VOUT, FIND_ANYWHERE ); if( p_vout != NULL ) { while ((o_window = [o_enumerator nextObject])) { if( [[o_window className] isEqualToString: @"VLCWindow"] ) { if( [o_title isEqualToString: _NS("Half Size") ] ) [o_window scaleWindowWithFactor: 0.5]; else if( [o_title isEqualToString: _NS("Normal Size") ] ) [o_window scaleWindowWithFactor: 1.0]; else if( [o_title isEqualToString: _NS("Double Size") ] ) [o_window scaleWindowWithFactor: 2.0]; else if( [o_title isEqualToString: _NS("Float On Top") ] ) [o_window toggleFloatOnTop]; else if( [o_title isEqualToString: _NS("Fit To Screen") ] ) { if( ![o_window isZoomed] ) [o_window performZoom:self]; } else { [o_window toggleFullscreen]; } break; } } vlc_object_release( (vlc_object_t *)p_vout ); } } - (void)setupVarMenuItem:(NSMenuItem *)o_mi target:(vlc_object_t *)p_object var:(const char *)psz_variable selector:(SEL)pf_callback { vlc_value_t val, text; int i_type = var_Type( p_object, psz_variable ); switch( i_type & VLC_VAR_TYPE ) { case VLC_VAR_VOID: case VLC_VAR_BOOL: case VLC_VAR_VARIABLE: case VLC_VAR_STRING: case VLC_VAR_INTEGER: break; default: /* Variable doesn't exist or isn't handled */ return; } /* Make sure we want to display the variable */ if( i_type & VLC_VAR_HASCHOICE ) { var_Change( p_object, psz_variable, VLC_VAR_CHOICESCOUNT, &val, NULL ); if( val.i_int == 0 ) return; if( (i_type & VLC_VAR_TYPE) != VLC_VAR_VARIABLE && val.i_int == 1 ) return; } /* Get the descriptive name of the variable */ var_Change( p_object, psz_variable, VLC_VAR_GETTEXT, &text, NULL ); [o_mi setTitle: [NSApp localizedString: text.psz_string ? text.psz_string : strdup( psz_variable ) ]]; var_Get( p_object, psz_variable, &val ); if( i_type & VLC_VAR_HASCHOICE ) { NSMenu *o_menu = [o_mi submenu]; [self setupVarMenu: o_menu forMenuItem: o_mi target:p_object var:psz_variable selector:pf_callback]; if( text.psz_string ) free( text.psz_string ); return; } VLCMenuExt *o_data; switch( i_type & VLC_VAR_TYPE ) { case VLC_VAR_VOID: o_data = [[VLCMenuExt alloc] initWithVar: psz_variable Object: p_object->i_object_id Value: val ofType: i_type]; [o_mi setRepresentedObject: [NSValue valueWithPointer:[o_data retain]]]; break; case VLC_VAR_BOOL: o_data = [[VLCMenuExt alloc] initWithVar: psz_variable Object: p_object->i_object_id Value: val ofType: i_type]; [o_mi setRepresentedObject: [NSValue valueWithPointer:[o_data retain]]]; [o_mi setState: val.b_bool ? TRUE : FALSE ]; break; default: if( text.psz_string ) free( text.psz_string ); return; } if( (i_type & VLC_VAR_TYPE) == VLC_VAR_STRING ) free( val.psz_string ); if( text.psz_string ) free( text.psz_string ); } - (void)setupVarMenu:(NSMenu *)o_menu forMenuItem: (NSMenuItem *)o_parent target:(vlc_object_t *)p_object var:(const char *)psz_variable selector:(SEL)pf_callback { vlc_value_t val, val_list, text_list; int i_type, i, i_nb_items; /* remove previous items */ i_nb_items = [o_menu numberOfItems]; for( i = 0; i < i_nb_items; i++ ) { [o_menu removeItemAtIndex: 0]; } /* Check the type of the object variable */ i_type = var_Type( p_object, psz_variable ); /* Make sure we want to display the variable */ if( i_type & VLC_VAR_HASCHOICE ) { var_Change( p_object, psz_variable, VLC_VAR_CHOICESCOUNT, &val, NULL ); if( val.i_int == 0 ) return; if( (i_type & VLC_VAR_TYPE) != VLC_VAR_VARIABLE && val.i_int == 1 ) return; } else { return; } switch( i_type & VLC_VAR_TYPE ) { case VLC_VAR_VOID: case VLC_VAR_BOOL: case VLC_VAR_VARIABLE: case VLC_VAR_STRING: case VLC_VAR_INTEGER: break; default: /* Variable doesn't exist or isn't handled */ return; } if( var_Get( p_object, psz_variable, &val ) < 0 ) { return; } if( var_Change( p_object, psz_variable, VLC_VAR_GETLIST, &val_list, &text_list ) < 0 ) { if( (i_type & VLC_VAR_TYPE) == VLC_VAR_STRING ) free( val.psz_string ); return; } /* make (un)sensitive */ [o_parent setEnabled: ( val_list.p_list->i_count > 1 )]; for( i = 0; i < val_list.p_list->i_count; i++ ) { vlc_value_t another_val; NSMenuItem * o_lmi; NSString *o_title = @""; VLCMenuExt *o_data; switch( i_type & VLC_VAR_TYPE ) { case VLC_VAR_VARIABLE: /* This is causing crashes for the moment. o_title = [NSApp localizedString: text_list.p_list->p_values[i].psz_string ? text_list.p_list->p_values[i].psz_string : val_list.p_list->p_values[i].psz_string ]; o_data = [[VLCMenuExt alloc] initWithVar: strdup(psz_variable) Object: p_object->i_object_id Value: val ofType: i_type]; [o_lmi setRepresentedObject: [NSValue valueWithPointer:[o_data retain]]]; // Create a submenu NSMenu *o_menu = [o_lmi submenu]; [self setupVarMenu: o_menu forMenuItem: o_lmi target:p_object var:psz_variable selector:pf_callback]; */ return; case VLC_VAR_STRING: another_val.psz_string = strdup(val_list.p_list->p_values[i].psz_string); o_title = [NSApp localizedString: text_list.p_list->p_values[i].psz_string ? text_list.p_list->p_values[i].psz_string : val_list.p_list->p_values[i].psz_string ]; o_lmi = [o_menu addItemWithTitle: o_title action: pf_callback keyEquivalent: @""]; o_data = [[VLCMenuExt alloc] initWithVar: strdup(psz_variable) Object: p_object->i_object_id Value: another_val ofType: i_type]; [o_lmi setRepresentedObject: [NSValue valueWithPointer:[o_data retain]]]; [o_lmi setTarget: self]; if( !strcmp( val.psz_string, val_list.p_list->p_values[i].psz_string ) ) [o_lmi setState: TRUE ]; break; case VLC_VAR_INTEGER: o_title = text_list.p_list->p_values[i].psz_string ? [NSApp localizedString: strdup( text_list.p_list->p_values[i].psz_string )] : [NSString stringWithFormat: @"%d", val_list.p_list->p_values[i].i_int]; o_lmi = [[o_menu addItemWithTitle: o_title action: pf_callback keyEquivalent: @""] retain ]; o_data = [[VLCMenuExt alloc] initWithVar: strdup(psz_variable) Object: p_object->i_object_id Value: val_list.p_list->p_values[i] ofType: i_type]; [o_lmi setRepresentedObject: [NSValue valueWithPointer:[ o_data retain]]]; [o_lmi setTarget: self]; if( val_list.p_list->p_values[i].i_int == val.i_int ) [o_lmi setState: TRUE ]; break; default: break; } } /* clean up everything */ if( (i_type & VLC_VAR_TYPE) == VLC_VAR_STRING ) free( val.psz_string ); var_Change( p_object, psz_variable, VLC_VAR_FREELIST, &val_list, &text_list ); } - (IBAction)toggleVar:(id)sender { NSMenuItem *o_mi = (NSMenuItem *)sender; VLCMenuExt *o_data = [[o_mi representedObject] pointerValue]; [NSThread detachNewThreadSelector: @selector(toggleVarThread:) toTarget: self withObject: o_data]; return; } - (int)toggleVarThread: (id)_o_data { vlc_object_t *p_object; NSAutoreleasePool * o_pool = [[NSAutoreleasePool alloc] init]; VLCMenuExt *o_data = (VLCMenuExt *)_o_data; vlc_thread_set_priority( [NSApp getIntf] , VLC_THREAD_PRIORITY_LOW ); p_object = (vlc_object_t *)vlc_object_get( [NSApp getIntf], [o_data objectID] ); if( p_object != NULL ) { var_Set( p_object, strdup([o_data name]), [o_data value] ); vlc_object_release( p_object ); [o_pool release]; return VLC_TRUE; } [o_pool release]; return VLC_EGENERIC; } @end @implementation VLCControls (NSMenuValidation) - (BOOL)validateMenuItem:(NSMenuItem *)o_mi { BOOL bEnabled = TRUE; vlc_value_t val; intf_thread_t * p_intf = [NSApp getIntf]; playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE ); if( p_playlist != NULL ) { vlc_mutex_lock( &p_playlist->object_lock ); } #define p_input p_playlist->p_input if( [[o_mi title] isEqualToString: _NS("Faster")] || [[o_mi title] isEqualToString: _NS("Slower")] ) { if( p_playlist != NULL && p_input != NULL ) { vlc_mutex_lock( &p_input->stream.stream_lock ); bEnabled = p_input->stream.b_pace_control; vlc_mutex_unlock( &p_input->stream.stream_lock ); } else { bEnabled = FALSE; } } else if( [[o_mi title] isEqualToString: _NS("Stop")] ) { if( p_playlist == NULL || p_input == NULL ) { bEnabled = FALSE; } } else if( [[o_mi title] isEqualToString: _NS("Previous")] || [[o_mi title] isEqualToString: _NS("Next")] ) { if( p_playlist == NULL ) { bEnabled = FALSE; } else { bEnabled = p_playlist->i_size > 1; if( p_input != NULL ) { vlc_mutex_lock( &p_input->stream.stream_lock ); bEnabled |= p_input->stream.i_area_nb > 1; vlc_mutex_unlock( &p_input->stream.stream_lock ); } } } else if( [[o_mi title] isEqualToString: _NS("Shuffle")] ) { int i_state; var_Get( p_playlist, "random", &val ); i_state = val.b_bool ? NSOnState : NSOffState; [o_mi setState: i_state]; } else if( [[o_mi title] isEqualToString: _NS("Repeat Item")] ) { int i_state; var_Get( p_playlist, "repeat", &val ); i_state = val.b_bool ? NSOnState : NSOffState; [o_mi setState: i_state]; } else if( [[o_mi title] isEqualToString: _NS("Repeat Playlist")] ) { int i_state; var_Get( p_playlist, "loop", &val ); i_state = val.b_bool ? NSOnState : NSOffState; [o_mi setState: i_state]; } else if( [[o_mi title] isEqualToString: _NS("Step Forward")] || [[o_mi title] isEqualToString: _NS("Step Backward")] ) { if( p_playlist != NULL && p_input != NULL ) { vlc_mutex_lock( &p_input->stream.stream_lock ); bEnabled = p_input->stream.b_seekable; vlc_mutex_unlock( &p_input->stream.stream_lock ); } else { bEnabled = FALSE; } } else if( [[o_mi title] isEqualToString: _NS("Mute")] ) { [o_mi setState: p_intf->p_sys->b_mute ? NSOnState : NSOffState]; } else if( [[o_mi title] isEqualToString: _NS("Fullscreen")] || [[o_mi title] isEqualToString: _NS("Half Size")] || [[o_mi title] isEqualToString: _NS("Normal Size")] || [[o_mi title] isEqualToString: _NS("Double Size")] || [[o_mi title] isEqualToString: _NS("Fit To Screen")] || [[o_mi title] isEqualToString: _NS("Float On Top")] ) { id o_window; NSArray *o_windows = [NSApp orderedWindows]; NSEnumerator *o_enumerator = [o_windows objectEnumerator]; bEnabled = FALSE; if ( [[o_mi title] isEqualToString: _NS("Float On Top")] ) { int i_state = config_GetInt( p_playlist, "video-on-top" ) ? NSOnState : NSOffState; [o_mi setState: i_state]; } vout_thread_t *p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT, FIND_ANYWHERE ); if( p_vout != NULL ) { while ((o_window = [o_enumerator nextObject])) { if( [[o_window className] isEqualToString: @"VLCWindow"] ) { bEnabled = TRUE; break; } } vlc_object_release( (vlc_object_t *)p_vout ); } } if( p_playlist != NULL ) { vlc_mutex_unlock( &p_playlist->object_lock ); vlc_object_release( p_playlist ); } return( bEnabled ); } @end /***************************************************************************** * VLCMenuExt implementation ***************************************************************************** * Object connected to a playlistitem which remembers the data belonging to * the variable of the autogenerated menu *****************************************************************************/ @implementation VLCMenuExt - (id)initWithVar: (const char *)_psz_name Object: (int)i_id Value: (vlc_value_t)val ofType: (int)_i_type { self = [super init]; if( self != nil ) { psz_name = strdup( _psz_name ); i_object_id = i_id; value = val; i_type = _i_type; } return( self ); } - (void)dealloc { free( psz_name ); } - (char *)name { return psz_name; } - (int)objectID { return i_object_id; } - (vlc_value_t)value { return value; } - (int)type { return i_type; } @end