]> git.sesse.net Git - vlc/blob - modules/gui/macosx/playlist.m
76b9e7f2357af55e4fcfc7f2be0da40a2773a9d5
[vlc] / modules / gui / macosx / playlist.m
1 /*****************************************************************************
2  * playlist.m: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2002-2004 VideoLAN
5  * $Id$
6  *
7  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
8  *          Derk-Jan Hartman <hartman at videolan dot org>
9  *          Benjamin Pracht <bigben at videolab dot org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /* TODO
27  * connect delegates, actions and outlets in IB
28  * implement delete by backspace
29  * implement playlist item rightclick menu
30  * implement sorting
31  * add 'icons' for different types of nodes? (http://www.cocoadev.com/index.pl?IconAndTextInTableCell)
32  * create a new 'playlist toggle' that hides the playlist and in effect give you the old controller
33  * create a new search field build with pictures from the 'regular' search field, so it can be emulated on 10.2
34  * create toggle buttons for the shuffle, repeat one, repeat all functions.
35  * implement drag and drop and item reordering.
36  * reimplement enable/disable item
37  * create a new 'tool' button (see the gear button in the Finder window) for 'actions'
38    (adding service discovery, other views, new node/playlist, save node/playlist) stuff like that
39  */
40
41
42
43 /*****************************************************************************
44  * Preamble
45  *****************************************************************************/
46 #include <stdlib.h>                                      /* malloc(), free() */
47 #include <sys/param.h>                                    /* for MAXPATHLEN */
48 #include <string.h>
49 #include <math.h>
50 #include <sys/mount.h>
51 #include <vlc_keys.h>
52
53 #include "intf.h"
54 #include "playlist.h"
55 #include "controls.h"
56 #include <OSD.h>
57
58 /*****************************************************************************
59  * VLCPlaylistView implementation 
60  *****************************************************************************/
61 @implementation VLCPlaylistView
62
63 - (NSMenu *)menuForEvent:(NSEvent *)o_event
64 {
65     return( [[self delegate] menuForEvent: o_event] );
66 }
67
68 - (void)keyDown:(NSEvent *)o_event
69 {
70     unichar key = 0;
71     int i, c, i_row;
72     NSMutableArray *o_to_delete;
73     NSNumber *o_number;
74
75     playlist_t * p_playlist;
76     intf_thread_t * p_intf = VLCIntf;
77 msg_Dbg( p_intf, "KEYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY");
78     if( [[o_event characters] length] )
79     {
80         key = [[o_event characters] characterAtIndex: 0];
81     }
82
83     p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
84                                           FIND_ANYWHERE );
85
86     if ( p_playlist == NULL )
87     {
88         return;
89     }
90
91     switch( key )
92     {
93         case NSDeleteCharacter:
94         case NSDeleteFunctionKey:
95         case NSDeleteCharFunctionKey:
96         case NSBackspaceCharacter:
97             o_to_delete = [NSMutableArray arrayWithArray:[[self selectedRowEnumerator] allObjects]];
98             c = [o_to_delete count];
99
100             for( i = 0; i < c; i++ ) {
101                 o_number = [o_to_delete lastObject];
102                 i_row = [o_number intValue];
103
104                 if( p_playlist->status.p_item == [[self itemAtRow: i_row] pointerValue] && p_playlist->status.i_status )
105                 {
106                     playlist_Stop( p_playlist );
107                 }
108                 [o_to_delete removeObject: o_number];
109                 [self deselectRow: i_row];
110                 playlist_ItemDelete( [[self itemAtRow: i_row] pointerValue] );
111             }
112             break;
113
114         default:
115             [super keyDown: o_event];
116             break;
117     }
118
119     if( p_playlist != NULL )
120     {
121         vlc_object_release( p_playlist );
122     }
123 }
124
125
126 @end
127
128 /*****************************************************************************
129  * VLCPlaylist implementation 
130  *****************************************************************************/
131 @implementation VLCPlaylist
132
133 - (id)init
134 {
135     self = [super init];
136     if ( self !=nil )
137     {
138         //i_moveRow = -1;
139     }
140     return self;
141 }
142
143 - (void)awakeFromNib
144 {
145     [o_outline_view setTarget: self];
146     [o_outline_view setDelegate: self];
147     [o_outline_view setDataSource: self];
148
149     [o_outline_view setDoubleAction: @selector(playItem:)];
150
151     [o_outline_view registerForDraggedTypes: 
152         [NSArray arrayWithObjects: NSFilenamesPboardType, nil]];
153     [o_outline_view setIntercellSpacing: NSMakeSize (0.0, 1.0)];
154
155 /* We need to check whether _defaultTableHeaderSortImage exists, since it 
156 belongs to an Apple hidden private API, and then can "disapear" at any time*/
157
158     if( [[NSOutlineView class] respondsToSelector:@selector(_defaultTableHeaderSortImage)] )
159     {
160         o_ascendingSortingImage = [[NSOutlineView class] _defaultTableHeaderSortImage];
161     }
162     else
163     {
164         o_ascendingSortingImage = nil;
165     }
166
167     if( [[NSOutlineView class] respondsToSelector:@selector(_defaultTableHeaderReverseSortImage)] )
168     {
169         o_descendingSortingImage = [[NSOutlineView class] _defaultTableHeaderReverseSortImage];
170     }
171     else
172     {
173         o_descendingSortingImage = nil;
174     }
175
176     [self initStrings];
177     //[self playlistUpdated];
178 }
179
180 - (void)initStrings
181 {
182 #if 0
183     [o_mi_save_playlist setTitle: _NS("Save Playlist...")];
184     [o_mi_play setTitle: _NS("Play")];
185     [o_mi_delete setTitle: _NS("Delete")];
186     [o_mi_selectall setTitle: _NS("Select All")];
187     [o_mi_toggleItemsEnabled setTitle: _NS("Item Enabled")];
188     [o_mi_enableGroup setTitle: _NS("Enable all group items")];
189     [o_mi_disableGroup setTitle: _NS("Disable all group items")];
190     [o_mi_info setTitle: _NS("Properties")];
191 #endif
192     [[o_tc_name headerCell] setStringValue:_NS("Name")];
193     [[o_tc_author headerCell] setStringValue:_NS("Author")];
194     [[o_tc_duration headerCell] setStringValue:_NS("Duration")];
195 #if 0
196     [o_random_ckb setTitle: _NS("Random")];
197     [o_search_button setTitle: _NS("Search")];
198 #endif
199     [o_btn_playlist setToolTip: _NS("Playlist")];
200 #if 0    
201     [[o_loop_popup itemAtIndex:0] setTitle: _NS("Standard Play")];
202     [[o_loop_popup itemAtIndex:1] setTitle: _NS("Repeat One")];
203     [[o_loop_popup itemAtIndex:2] setTitle: _NS("Repeat All")];
204 #endif
205 }
206
207 - (void)playlistUpdated
208 {
209     [o_outline_view reloadData];
210 }
211
212 - (IBAction)playItem:(id)sender
213 {
214     intf_thread_t * p_intf = VLCIntf;
215     playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
216                                                        FIND_ANYWHERE );
217
218     if( p_playlist != NULL )
219     {
220         playlist_item_t *p_item;
221         playlist_view_t *p_view;
222         p_view = playlist_ViewFind( p_playlist, VIEW_SIMPLE );
223         p_item = [[o_outline_view itemAtRow:[o_outline_view selectedRow]] pointerValue];
224         
225         if( p_item )
226             playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, VIEW_SIMPLE, p_view ? p_view->p_root : NULL, p_item );
227         vlc_object_release( p_playlist );
228     }
229 }
230
231 - (void)appendArray:(NSArray*)o_array atPos:(int)i_position enqueue:(BOOL)b_enqueue
232 {
233     int i_item;
234     intf_thread_t * p_intf = VLCIntf;
235     playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
236                                                        FIND_ANYWHERE );
237
238     if( p_playlist == NULL )
239     {
240         return;
241     }
242
243     for ( i_item = 0; i_item < (int)[o_array count]; i_item++ )
244     {
245         /* One item */
246         NSDictionary *o_one_item;
247         int j, i_total_options = 0, i_new_id = -1;
248         int i_mode = PLAYLIST_INSERT;
249         BOOL b_rem = FALSE, b_dir = FALSE;
250         NSString *o_uri, *o_name;
251         NSArray *o_options;
252         NSURL *o_true_file;
253         char **ppsz_options = NULL;
254
255         /* Get the item */
256         o_one_item = [o_array objectAtIndex: i_item];
257         o_uri = (NSString *)[o_one_item objectForKey: @"ITEM_URL"];
258         o_name = (NSString *)[o_one_item objectForKey: @"ITEM_NAME"];
259         o_options = (NSArray *)[o_one_item objectForKey: @"ITEM_OPTIONS"];
260
261         /* If no name, then make a guess */
262         if( !o_name) o_name = [[NSFileManager defaultManager] displayNameAtPath: o_uri];
263
264         if( [[NSFileManager defaultManager] fileExistsAtPath:o_uri isDirectory:&b_dir] && b_dir &&
265             [[NSWorkspace sharedWorkspace] getFileSystemInfoForPath: o_uri isRemovable: &b_rem
266                     isWritable:NULL isUnmountable:NULL description:NULL type:NULL] && b_rem   )
267         {
268             /* All of this is to make sure CD's play when you D&D them on VLC */
269             /* Converts mountpoint to a /dev file */
270             struct statfs *buf;
271             char *psz_dev;
272             buf = (struct statfs *) malloc (sizeof(struct statfs));
273             statfs( [o_uri fileSystemRepresentation], buf );
274             psz_dev = strdup(buf->f_mntfromname);
275             o_uri = [NSString stringWithCString: psz_dev ];
276         }
277
278         if( o_options && [o_options count] > 0 )
279         {
280             /* Count the input options */
281             i_total_options = [o_options count];
282
283             /* Allocate ppsz_options */
284             for( j = 0; j < i_total_options; j++ )
285             {
286                 if( !ppsz_options )
287                     ppsz_options = (char **)malloc( sizeof(char *) * i_total_options );
288
289                 ppsz_options[j] = strdup([[o_options objectAtIndex:j] UTF8String]);
290             }
291         }
292
293         /* Add the item */
294         i_new_id = playlist_AddExt( p_playlist, [o_uri fileSystemRepresentation],
295                       [o_name UTF8String], i_mode,
296                       i_position == -1 ? PLAYLIST_END : i_position + i_item,
297                       0, (ppsz_options != NULL ) ? (const char **)ppsz_options : 0, i_total_options );
298
299         /* clean up
300         for( j = 0; j < i_total_options; j++ )
301             free( ppsz_options[j] );
302         if( ppsz_options ) free( ppsz_options ); */
303
304         /* Recent documents menu */
305         o_true_file = [NSURL fileURLWithPath: o_uri];
306         if( o_true_file != nil )
307         {
308             [[NSDocumentController sharedDocumentController]
309                 noteNewRecentDocumentURL: o_true_file];
310         }
311
312         if( i_item == 0 && !b_enqueue )
313         {
314             playlist_Goto( p_playlist, playlist_GetPositionById( p_playlist, i_new_id ) );
315             playlist_Play( p_playlist );
316         }
317     }
318
319     vlc_object_release( p_playlist );
320 }
321
322 @end
323
324 @implementation VLCPlaylist (NSOutlineViewDataSource)
325
326 /* return the number of children for Obj-C pointer item */ /* DONE */
327 - (int)outlineView:(NSOutlineView *)outlineView numberOfChildrenOfItem:(id)item
328 {
329     int i_return = 0;
330     playlist_t * p_playlist = vlc_object_find( VLCIntf, VLC_OBJECT_PLAYLIST,
331                                                        FIND_ANYWHERE );
332     if( p_playlist == NULL )
333         return 0;
334
335     if( item == nil )
336     {
337         /* root object */
338         playlist_view_t *p_view;
339         p_view = playlist_ViewFind( p_playlist, VIEW_SIMPLE );
340         if( p_view && p_view->p_root )
341             i_return = p_view->p_root->i_children;
342     }
343     else
344     {
345         playlist_item_t *p_item = (playlist_item_t *)[item pointerValue];
346         if( p_item )
347             i_return = p_item->i_children;
348     }
349     vlc_object_release( p_playlist );
350     if( i_return == -1 ) i_return = 0;
351     msg_Dbg( p_playlist, "I have %d children", i_return );
352     return i_return;
353 }
354
355 /* return the child at index for the Obj-C pointer item */ /* DONE */
356 - (id)outlineView:(NSOutlineView *)outlineView child:(int)index ofItem:(id)item
357 {
358     playlist_item_t *p_return = NULL;
359     playlist_t * p_playlist = vlc_object_find( VLCIntf, VLC_OBJECT_PLAYLIST,
360                                                        FIND_ANYWHERE );
361     if( p_playlist == NULL )
362         return nil;
363
364     if( item == nil )
365     {
366         /* root object */
367         playlist_view_t *p_view;
368         p_view = playlist_ViewFind( p_playlist, VIEW_SIMPLE );
369         if( p_view && index < p_view->p_root->i_children )
370             p_return = p_view->p_root->pp_children[index];
371     }
372     else
373     {
374         playlist_item_t *p_item = (playlist_item_t *)[item pointerValue];
375         if( p_item && index < p_item->i_children )
376         {
377             p_return = p_item->pp_children[index];
378         }
379     }
380
381     vlc_object_release( p_playlist );
382     msg_Dbg( p_playlist, "childitem with index %d", index );
383     return [[NSValue valueWithPointer: p_return] retain];
384 }
385
386 /* is the item expandable */
387 - (BOOL)outlineView:(NSOutlineView *)outlineView isItemExpandable:(id)item
388 {
389     int i_return = 0;
390     playlist_t * p_playlist = vlc_object_find( VLCIntf, VLC_OBJECT_PLAYLIST,
391                                                        FIND_ANYWHERE );
392     if( p_playlist == NULL )
393         return NO;
394
395     if( item == nil )
396     {
397         /* root object */
398         playlist_view_t *p_view;
399         p_view = playlist_ViewFind( p_playlist, VIEW_SIMPLE );
400         if( p_view && p_view->p_root )
401             i_return = p_view->p_root->i_children;
402     }
403     else
404     {
405         playlist_item_t *p_item = (playlist_item_t *)[item pointerValue];
406         if( p_item )
407             i_return = p_item->i_children;
408     }
409     vlc_object_release( p_playlist );
410
411     if( i_return == -1 || i_return == 0 )
412         return NO;
413     else
414         return YES;
415 }
416
417 /* retrieve the string values for the cells */
418 - (id)outlineView:(NSOutlineView *)outlineView objectValueForTableColumn:(NSTableColumn *)o_tc byItem:(id)item
419 {
420     id o_value = nil;
421     intf_thread_t * p_intf = VLCIntf;
422     playlist_t * p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
423                                                FIND_ANYWHERE );
424     playlist_item_t *p_item = (playlist_item_t *)[item pointerValue];
425
426     if( p_playlist == NULL || p_item == NULL )
427     {
428         return( @"error" );
429     }
430
431     if( [[o_tc identifier] isEqualToString:@"1"] )
432     {
433         o_value = [NSString stringWithUTF8String:
434             p_item->input.psz_name];
435         if( o_value == NULL )
436             o_value = [NSString stringWithCString:
437                 p_item->input.psz_name];
438     }
439     else if( [[o_tc identifier] isEqualToString:@"2"] )
440     {
441         char *psz_temp;
442         psz_temp = playlist_ItemGetInfo( p_item ,_("Meta-information"),_("Artist") );
443
444         if( psz_temp == NULL )
445             o_value = @"";
446         else
447         {
448             o_value = [NSString stringWithUTF8String: psz_temp];
449             if( o_value == NULL )
450             {
451                 o_value = [NSString stringWithCString: psz_temp];
452             }
453             free( psz_temp );
454         }
455     }
456     else if( [[o_tc identifier] isEqualToString:@"3"] )
457     {
458         char psz_duration[MSTRTIME_MAX_SIZE];
459         mtime_t dur = p_item->input.i_duration;
460         if( dur != -1 )
461         {
462             secstotimestr( psz_duration, dur/1000000 );
463             o_value = [NSString stringWithUTF8String: psz_duration];
464         }
465         else
466         {
467             o_value = @"-:--:--";
468         }
469     }
470
471     vlc_object_release( p_playlist );
472
473     return( o_value );
474 }
475
476 /* Required for drag & drop and reordering */
477 - (BOOL)outlineView:(NSOutlineView *)outlineView writeItems:(NSArray *)items toPasteboard:(NSPasteboard *)pboard
478 {
479     return NO;
480 }
481
482 - (NSDragOperation)outlineView:(NSOutlineView *)outlineView validateDrop:(id <NSDraggingInfo>)info proposedItem:(id)item proposedChildIndex:(int)index
483 {
484     return NSDragOperationNone;
485 }
486
487 /* Delegate method of NSWindow */
488 - (void)windowWillClose:(NSNotification *)aNotification
489 {
490     [o_btn_playlist setState: NSOffState];
491 }
492
493 @end
494
495