OSDN Git Service

MacGui: Queue display - fix display of deinterlace modes
[handbrake-jp/handbrake-jp-git.git] / macosx / HBQueueController.mm
1 /* HBQueueController
2
3     This file is part of the HandBrake source code.
4     Homepage: <http://handbrake.fr/>.
5     It may be used under the terms of the GNU General Public License. */
6
7 #import "HBQueueController.h"
8 #import "Controller.h"
9 #import "HBImageAndTextCell.h"
10
11 #define HB_ROW_HEIGHT_TITLE_ONLY           17.0
12 #define HB_ROW_HEIGHT_FULL_DESCRIPTION           200.0
13 // Pasteboard type for or drag operations
14 #define DragDropSimplePboardType        @"MyCustomOutlineViewPboardType"
15
16 //------------------------------------------------------------------------------------
17 #pragma mark -
18 //------------------------------------------------------------------------------------
19
20 //------------------------------------------------------------------------------------
21 // NSMutableAttributedString (HBAdditions)
22 //------------------------------------------------------------------------------------
23
24 @interface NSMutableAttributedString (HBAdditions)
25 - (void) appendString: (NSString*)aString withAttributes: (NSDictionary *)aDictionary;
26 @end
27
28 @implementation NSMutableAttributedString (HBAdditions)
29 - (void) appendString: (NSString*)aString withAttributes: (NSDictionary *)aDictionary
30 {
31     NSAttributedString * s = [[[NSAttributedString alloc]
32         initWithString: aString
33         attributes: aDictionary] autorelease];
34     [self appendAttributedString: s];
35 }
36 @end
37
38
39 @implementation HBQueueOutlineView
40
41 - (void)viewDidEndLiveResize
42 {
43     // Since we disabled calculating row heights during a live resize, force them to
44     // recalculate now.
45     [self noteHeightOfRowsWithIndexesChanged:
46             [NSIndexSet indexSetWithIndexesInRange: NSMakeRange(0, [self numberOfRows])]];
47     [super viewDidEndLiveResize];
48 }
49
50
51
52 /* This should be for dragging, we take this info from the presets right now */
53 - (NSImage *)dragImageForRowsWithIndexes:(NSIndexSet *)dragRows tableColumns:(NSArray *)tableColumns event:(NSEvent*)dragEvent offset:(NSPointPointer)dragImageOffset
54 {
55     fIsDragging = YES;
56
57     // By default, NSTableView only drags an image of the first column. Change this to
58     // drag an image of the queue's icon and desc and action columns.
59     NSArray * cols = [NSArray arrayWithObjects: [self tableColumnWithIdentifier:@"desc"], [self tableColumnWithIdentifier:@"icon"],[self tableColumnWithIdentifier:@"action"], nil];
60     return [super dragImageForRowsWithIndexes:dragRows tableColumns:cols event:dragEvent offset:dragImageOffset];
61 }
62
63
64
65 - (void) mouseDown:(NSEvent *)theEvent
66 {
67     [super mouseDown:theEvent];
68         fIsDragging = NO;
69 }
70
71
72
73 - (BOOL) isDragging;
74 {
75     return fIsDragging;
76 }
77
78
79
80 @end
81
82 #pragma mark Toolbar Identifiers
83 // Toolbar identifiers
84 static NSString*    HBQueueToolbar                            = @"HBQueueToolbar1";
85 static NSString*    HBQueueStartCancelToolbarIdentifier       = @"HBQueueStartCancelToolbarIdentifier";
86 static NSString*    HBQueuePauseResumeToolbarIdentifier       = @"HBQueuePauseResumeToolbarIdentifier";
87
88 #pragma mark -
89
90 @implementation HBQueueController
91
92 //------------------------------------------------------------------------------------
93 // init
94 //------------------------------------------------------------------------------------
95 - (id)init
96 {
97     if (self = [super initWithWindowNibName:@"Queue"])
98     {
99         // NSWindowController likes to lazily load its window nib. Since this
100         // controller tries to touch the outlets before accessing the window, we
101         // need to force it to load immadiately by invoking its accessor.
102         //
103         // If/when we switch to using bindings, this can probably go away.
104         [self window];
105
106         // Our defaults
107         [[NSUserDefaults standardUserDefaults] registerDefaults:[NSDictionary dictionaryWithObjectsAndKeys:
108             @"NO",      @"QueueWindowIsOpen",
109             @"NO",      @"QueueShowsDetail",
110             @"YES",     @"QueueShowsJobsAsGroups",
111             nil]];
112
113         fJobGroups = [[NSMutableArray arrayWithCapacity:0] retain];
114        } 
115         return self;
116 }
117
118 - (void)setQueueArray: (NSMutableArray *)QueueFileArray
119 {
120     [fJobGroups setArray:QueueFileArray];
121  
122     /* First stop any timer working now */
123 [self stopAnimatingCurrentJobGroupInQueue];
124           [fOutlineView reloadData];
125
126
127
128 /* lets get the stats on the status of the queue array */
129
130 fEncodingQueueItem = 0;
131 fPendingCount = 0;
132 fCompletedCount = 0;
133 fCanceledCount = 0;
134 fWorkingCount = 0;
135
136     /* We use a number system to set the encode status of the queue item
137      * in controller.mm
138      * 0 == already encoded
139      * 1 == is being encoded
140      * 2 == is yet to be encoded
141      * 3 == cancelled
142      */
143
144         int i = 0;
145     NSEnumerator *enumerator = [fJobGroups objectEnumerator];
146         id tempObject;
147         while (tempObject = [enumerator nextObject])
148         {
149                 NSDictionary *thisQueueDict = tempObject;
150                 if ([[thisQueueDict objectForKey:@"Status"] intValue] == 0) // Completed
151                 {
152                         fCompletedCount++;      
153                 }
154                 if ([[thisQueueDict objectForKey:@"Status"] intValue] == 1) // being encoded
155                 {
156                         fWorkingCount++;
157             fEncodingQueueItem = i;     
158                 }
159         if ([[thisQueueDict objectForKey:@"Status"] intValue] == 2) // pending          
160         {
161                         fPendingCount++;
162                 }
163         if ([[thisQueueDict objectForKey:@"Status"] intValue] == 3) // cancelled                
164         {
165                         fCanceledCount++;
166                 }
167                 i++;
168         }
169
170 /* We should fire up the encoding timer here based on fWorkingCount */
171
172 if (fWorkingCount > 0)
173 {
174     /* we have an encoding job so, lets start the animation timer */
175     [self startAnimatingCurrentWorkingEncodeInQueue];
176 }
177
178 /* Set the queue status field in the queue window */
179     NSMutableString * string;
180     if (fPendingCount == 1)
181     {
182         string = [NSMutableString stringWithFormat: NSLocalizedString( @"%d encode pending", @"" ), fPendingCount];
183     }
184     else
185     {
186         string = [NSMutableString stringWithFormat: NSLocalizedString( @"%d encode(s) pending", @"" ), fPendingCount];
187     }
188     [fQueueCountField setStringValue:string];
189
190 }
191 /* This method sets the status string in the queue window
192  * and is called from Controller.mm (fHBController)
193  * instead of running another timer here polling libhb
194  * for encoding status
195  */
196 - (void)setQueueStatusString: (NSString *)statusString
197 {
198 [fProgressTextField setStringValue:statusString];
199 }
200
201 //------------------------------------------------------------------------------------
202 // dealloc
203 //------------------------------------------------------------------------------------
204 - (void)dealloc
205 {
206     // clear the delegate so that windowWillClose is not attempted
207     if( [[self window] delegate] == self )
208         [[self window] setDelegate:nil];
209
210     [fJobGroups release];
211
212     [fSavedExpandedItems release];
213     [fSavedSelectedItems release];
214
215     [[NSNotificationCenter defaultCenter] removeObserver:self];
216
217     [super dealloc];
218 }
219
220 //------------------------------------------------------------------------------------
221 // Receive HB handle
222 //------------------------------------------------------------------------------------
223 - (void)setHandle: (hb_handle_t *)handle
224 {
225     fQueueEncodeLibhb = handle;
226 }
227
228 //------------------------------------------------------------------------------------
229 // Receive HBController
230 //------------------------------------------------------------------------------------
231 - (void)setHBController: (HBController *)controller
232 {
233     fHBController = controller;
234 }
235
236 #pragma mark -
237
238 //------------------------------------------------------------------------------------
239 // Displays and brings the queue window to the front
240 //------------------------------------------------------------------------------------
241 - (IBAction) showQueueWindow: (id)sender
242 {
243     [self showWindow:sender];
244     [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"QueueWindowIsOpen"];
245 }
246
247
248
249 //------------------------------------------------------------------------------------
250 // awakeFromNib
251 //------------------------------------------------------------------------------------
252 - (void)awakeFromNib
253 {
254     [self setupToolbar];
255
256     if( ![[self window] setFrameUsingName:@"Queue"] )
257         [[self window] center];
258     [self setWindowFrameAutosaveName:@"Queue"];
259     [[self window] setExcludedFromWindowsMenu:YES];
260
261     /* lets setup our queue list outline view for drag and drop here */
262     [fOutlineView registerForDraggedTypes: [NSArray arrayWithObject:DragDropSimplePboardType] ];
263     [fOutlineView setDraggingSourceOperationMask:NSDragOperationEvery forLocal:YES];
264     [fOutlineView setVerticalMotionCanBeginDrag: YES];
265
266
267     // Don't allow autoresizing of main column, else the "delete" column will get
268     // pushed out of view.
269     [fOutlineView setAutoresizesOutlineColumn: NO];
270
271 #if HB_OUTLINE_METRIC_CONTROLS
272     [fIndentation setHidden: NO];
273     [fSpacing setHidden: NO];
274     [fIndentation setIntegerValue:[fOutlineView indentationPerLevel]];  // debug
275     [fSpacing setIntegerValue:3];       // debug
276 #endif
277
278     // Show/hide UI elements
279     fCurrentJobPaneShown = NO;     // it's shown in the nib
280     //[self showCurrentJobPane:NO];
281
282     //[self updateQueueCountField];
283 }
284
285
286 //------------------------------------------------------------------------------------
287 // windowWillClose
288 //------------------------------------------------------------------------------------
289 - (void)windowWillClose:(NSNotification *)aNotification
290 {
291     [[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"QueueWindowIsOpen"];
292 }
293
294 #pragma mark Toolbar
295
296 //------------------------------------------------------------------------------------
297 // setupToolbar
298 //------------------------------------------------------------------------------------
299 - (void)setupToolbar
300 {
301     // Create a new toolbar instance, and attach it to our window
302     NSToolbar *toolbar = [[[NSToolbar alloc] initWithIdentifier: HBQueueToolbar] autorelease];
303
304     // Set up toolbar properties: Allow customization, give a default display mode, and remember state in user defaults
305     [toolbar setAllowsUserCustomization: YES];
306     [toolbar setAutosavesConfiguration: YES];
307     [toolbar setDisplayMode: NSToolbarDisplayModeIconAndLabel];
308
309     // We are the delegate
310     [toolbar setDelegate: self];
311
312     // Attach the toolbar to our window
313     [[self window] setToolbar:toolbar];
314 }
315
316 //------------------------------------------------------------------------------------
317 // toolbar:itemForItemIdentifier:willBeInsertedIntoToolbar:
318 //------------------------------------------------------------------------------------
319 - (NSToolbarItem *)toolbar:(NSToolbar *)toolbar
320         itemForItemIdentifier:(NSString *)itemIdentifier
321         willBeInsertedIntoToolbar:(BOOL)flag
322 {
323     // Required delegate method: Given an item identifier, this method returns an item.
324     // The toolbar will use this method to obtain toolbar items that can be displayed
325     // in the customization sheet, or in the toolbar itself.
326
327     NSToolbarItem *toolbarItem = nil;
328
329     if ([itemIdentifier isEqual: HBQueueStartCancelToolbarIdentifier])
330     {
331         toolbarItem = [[[NSToolbarItem alloc] initWithItemIdentifier: itemIdentifier] autorelease];
332
333         // Set the text label to be displayed in the toolbar and customization palette
334         [toolbarItem setLabel: @"Start"];
335         [toolbarItem setPaletteLabel: @"Start/Cancel"];
336
337         // Set up a reasonable tooltip, and image
338         [toolbarItem setToolTip: @"Start Encoding"];
339         [toolbarItem setImage: [NSImage imageNamed: @"Play"]];
340
341         // Tell the item what message to send when it is clicked
342         [toolbarItem setTarget: self];
343         [toolbarItem setAction: @selector(toggleStartCancel:)];
344     }
345
346     if ([itemIdentifier isEqual: HBQueuePauseResumeToolbarIdentifier])
347     {
348         toolbarItem = [[[NSToolbarItem alloc] initWithItemIdentifier: itemIdentifier] autorelease];
349
350         // Set the text label to be displayed in the toolbar and customization palette
351         [toolbarItem setLabel: @"Pause"];
352         [toolbarItem setPaletteLabel: @"Pause/Resume"];
353
354         // Set up a reasonable tooltip, and image
355         [toolbarItem setToolTip: @"Pause Encoding"];
356         [toolbarItem setImage: [NSImage imageNamed: @"Pause"]];
357
358         // Tell the item what message to send when it is clicked
359         [toolbarItem setTarget: self];
360         [toolbarItem setAction: @selector(togglePauseResume:)];
361     }
362
363     return toolbarItem;
364 }
365
366 //------------------------------------------------------------------------------------
367 // toolbarDefaultItemIdentifiers:
368 //------------------------------------------------------------------------------------
369 - (NSArray *) toolbarDefaultItemIdentifiers: (NSToolbar *) toolbar
370 {
371     // Required delegate method: Returns the ordered list of items to be shown in the
372     // toolbar by default.
373
374     return [NSArray arrayWithObjects:
375         HBQueueStartCancelToolbarIdentifier,
376         HBQueuePauseResumeToolbarIdentifier,
377         nil];
378 }
379
380 //------------------------------------------------------------------------------------
381 // toolbarAllowedItemIdentifiers:
382 //------------------------------------------------------------------------------------
383 - (NSArray *) toolbarAllowedItemIdentifiers: (NSToolbar *) toolbar
384 {
385     // Required delegate method: Returns the list of all allowed items by identifier.
386     // By default, the toolbar does not assume any items are allowed, even the
387     // separator. So, every allowed item must be explicitly listed.
388
389     return [NSArray arrayWithObjects:
390         HBQueueStartCancelToolbarIdentifier,
391         HBQueuePauseResumeToolbarIdentifier,
392         NSToolbarCustomizeToolbarItemIdentifier,
393         NSToolbarFlexibleSpaceItemIdentifier,
394         NSToolbarSpaceItemIdentifier,
395         NSToolbarSeparatorItemIdentifier,
396         nil];
397 }
398
399 //------------------------------------------------------------------------------------
400 // validateToolbarItem:
401 //------------------------------------------------------------------------------------
402 - (BOOL) validateToolbarItem: (NSToolbarItem *) toolbarItem
403 {
404     // Optional method: This message is sent to us since we are the target of some
405     // toolbar item actions.
406
407     if (!fQueueEncodeLibhb) return NO;
408
409     BOOL enable = NO;
410
411     hb_state_t s;
412     hb_get_state2 (fQueueEncodeLibhb, &s);
413
414     if ([[toolbarItem itemIdentifier] isEqual: HBQueueStartCancelToolbarIdentifier])
415     {
416         if ((s.state == HB_STATE_PAUSED) || (s.state == HB_STATE_WORKING) || (s.state == HB_STATE_MUXING))
417         {
418             enable = YES;
419             [toolbarItem setImage:[NSImage imageNamed: @"Stop"]];
420             [toolbarItem setLabel: @"Stop"];
421             [toolbarItem setToolTip: @"Stop Encoding"];
422         }
423
424         else if (fPendingCount > 0)
425         {
426             enable = YES;
427             [toolbarItem setImage:[NSImage imageNamed: @"Play"]];
428             [toolbarItem setLabel: @"Start"];
429             [toolbarItem setToolTip: @"Start Encoding"];
430         }
431
432         else
433         {
434             enable = NO;
435             [toolbarItem setImage:[NSImage imageNamed: @"Play"]];
436             [toolbarItem setLabel: @"Start"];
437             [toolbarItem setToolTip: @"Start Encoding"];
438         }
439     }
440
441     if ([[toolbarItem itemIdentifier] isEqual: HBQueuePauseResumeToolbarIdentifier])
442     {
443         if (s.state == HB_STATE_PAUSED)
444         {
445             enable = YES;
446             [toolbarItem setImage:[NSImage imageNamed: @"Play"]];
447             [toolbarItem setLabel: @"Resume"];
448             [toolbarItem setToolTip: @"Resume Encoding"];
449        }
450
451         else if ((s.state == HB_STATE_WORKING) || (s.state == HB_STATE_MUXING))
452         {
453             enable = YES;
454             [toolbarItem setImage:[NSImage imageNamed: @"Pause"]];
455             [toolbarItem setLabel: @"Pause"];
456             [toolbarItem setToolTip: @"Pause Encoding"];
457         }
458         else
459         {
460             enable = NO;
461             [toolbarItem setImage:[NSImage imageNamed: @"Pause"]];
462             [toolbarItem setLabel: @"Pause"];
463             [toolbarItem setToolTip: @"Pause Encoding"];
464         }
465     }
466
467     return enable;
468 }
469
470 #pragma mark -
471
472
473 #pragma mark Queue Item Controls
474 //------------------------------------------------------------------------------------
475 // Delete encodes from the queue window and accompanying array
476 // Also handling first cancelling the encode if in fact its currently encoding.
477 //------------------------------------------------------------------------------------
478 - (IBAction)removeSelectedQueueItem: (id)sender
479 {
480     NSIndexSet * selectedRows = [fOutlineView selectedRowIndexes];
481     int row = [selectedRows firstIndex];
482     /* if this is a currently encoding job, we need to be sure to alert the user,
483      * to let them decide to cancel it first, then if they do, we can come back and
484      * remove it */
485     
486     if ([[[fJobGroups objectAtIndex:row] objectForKey:@"Status"] intValue] == 1)
487     {
488        /* We pause the encode here so that it doesn't finish right after and then
489         * screw up the sync while the window is open
490         */
491        [fHBController Pause:NULL];
492          NSString * alertTitle = [NSString stringWithFormat:NSLocalizedString(@"Stop This Encode and Remove It ?", nil)];
493         // Which window to attach the sheet to?
494         NSWindow * docWindow;
495         if ([sender respondsToSelector: @selector(window)])
496             docWindow = [sender window];
497         
498         
499         NSBeginCriticalAlertSheet(
500                                   alertTitle,
501                                   NSLocalizedString(@"Keep Encoding", nil),
502                                   nil,
503                                   NSLocalizedString(@"Stop Encoding and Delete", nil),
504                                   docWindow, self,
505                                   nil, @selector(didDimissCancelCurrentJob:returnCode:contextInfo:), nil,
506                                   NSLocalizedString(@"Your movie will be lost if you don't continue encoding.", nil));
507         
508         // didDimissCancelCurrentJob:returnCode:contextInfo: will be called when the dialog is dismissed
509     }
510     else
511     { 
512     /* since we are not a currently encoding item, we can just be cancelled */
513             [fHBController removeQueueFileItem:row];
514     }
515 }
516
517 - (void) didDimissCancelCurrentJob: (NSWindow *)sheet returnCode: (int)returnCode contextInfo: (void *)contextInfo
518 {
519     /* We resume encoding and perform the appropriate actions 
520      * Note: Pause: is a toggle type method based on hb's current
521      * state, if it paused, it will resume encoding and vice versa.
522      * In this case, we are paused from the calling window, so calling
523      * [fHBController Pause:NULL]; Again will resume encoding
524      */
525        [fHBController Pause:NULL];
526     if (returnCode == NSAlertOtherReturn)
527     {
528     /* We need to save the currently encoding item number first */
529     int encodingItemToRemove = fEncodingQueueItem;
530     /* Since we are encoding, we need to let fHBController Cancel this job
531      * upon which it will move to the next one if there is one
532      */
533     [fHBController doCancelCurrentJob];
534     /* Now, we can go ahead and remove the job we just cancelled since
535      * we have its item number from above
536      */
537     [fHBController removeQueueFileItem:encodingItemToRemove];
538     }
539     
540 }
541
542 //------------------------------------------------------------------------------------
543 // Show the finished encode in the finder
544 //------------------------------------------------------------------------------------
545 - (IBAction)revealSelectedQueueItem: (id)sender
546 {
547     NSIndexSet * selectedRows = [fOutlineView selectedRowIndexes];
548     NSInteger row = [selectedRows firstIndex];
549     if (row != NSNotFound)
550     {
551         while (row != NSNotFound)
552         {
553            NSMutableDictionary *queueItemToOpen = [fOutlineView itemAtRow: row];
554          [[NSWorkspace sharedWorkspace] selectFile:[queueItemToOpen objectForKey:@"DestinationPath"] inFileViewerRootedAtPath:nil];
555
556             row = [selectedRows indexGreaterThanIndex: row];
557         }
558     }
559 }
560
561
562 //------------------------------------------------------------------------------------
563 // Starts or cancels the processing of jobs depending on the current state
564 //------------------------------------------------------------------------------------
565 - (IBAction)toggleStartCancel: (id)sender
566 {
567     if (!fQueueEncodeLibhb) return;
568
569     hb_state_t s;
570     hb_get_state2 (fQueueEncodeLibhb, &s);
571
572     if ((s.state == HB_STATE_PAUSED) || (s.state == HB_STATE_WORKING) || (s.state == HB_STATE_MUXING))
573         [fHBController Cancel: fQueuePane]; // sender == fQueuePane so that warning alert shows up on queue window
574
575     else if (fPendingCount > 0)
576         [fHBController Rip: NULL];
577 }
578
579 //------------------------------------------------------------------------------------
580 // Toggles the pause/resume state of libhb
581 //------------------------------------------------------------------------------------
582 - (IBAction)togglePauseResume: (id)sender
583 {
584     if (!fQueueEncodeLibhb) return;
585
586     hb_state_t s;
587     hb_get_state2 (fQueueEncodeLibhb, &s);
588
589     if (s.state == HB_STATE_PAUSED)
590         hb_resume (fQueueEncodeLibhb);
591     else if ((s.state == HB_STATE_WORKING) || (s.state == HB_STATE_MUXING))
592         hb_pause (fQueueEncodeLibhb);
593 }
594
595 #pragma mark -
596
597
598 #pragma mark Animate Endcoding Item
599
600
601
602
603 //------------------------------------------------------------------------------------
604 // Starts animating the job icon of the currently processing job in the queue outline
605 // view.
606 //------------------------------------------------------------------------------------
607 - (void) startAnimatingCurrentWorkingEncodeInQueue
608 {
609     if (!fAnimationTimer)
610         fAnimationTimer = [[NSTimer scheduledTimerWithTimeInterval:1.0/12.0     // 1/12 because there are 6 images in the animation cycle
611                 target:self
612                 selector:@selector(animateWorkingEncodeInQueue:)
613                 userInfo:nil
614                 repeats:YES] retain];
615 }
616
617 //------------------------------------------------------------------------------------
618 // If a job is currently processing, its job icon in the queue outline view is
619 // animated to its next state.
620 //------------------------------------------------------------------------------------
621 - (void) animateWorkingEncodeInQueue:(NSTimer*)theTimer
622 {
623     if (fWorkingCount > 0)
624     {
625         fAnimationIndex++;
626         fAnimationIndex %= 6;   // there are 6 animation images; see outlineView:objectValueForTableColumn:byItem: below.
627         [self animateWorkingEncodeIconInQueue];
628     }
629 }
630
631
632 - (void) animateWorkingEncodeIconInQueue
633 {
634     NSInteger row = fEncodingQueueItem; /// need to set to fEncodingQueueItem
635     NSInteger col = [fOutlineView columnWithIdentifier: @"icon"];
636     if (row != -1 && col != -1)
637     {
638         NSRect frame = [fOutlineView frameOfCellAtColumn:col row:row];
639         [fOutlineView setNeedsDisplayInRect: frame];
640     }
641 }
642
643 //------------------------------------------------------------------------------------
644 // Stops animating the job icon of the currently processing job in the queue outline
645 // view.
646 //------------------------------------------------------------------------------------
647 - (void) stopAnimatingCurrentJobGroupInQueue
648 {
649     if (fAnimationTimer && [fAnimationTimer isValid])
650     {
651         [fAnimationTimer invalidate];
652         [fAnimationTimer release];
653         fAnimationTimer = nil;
654     }
655 }
656
657
658 #pragma mark -
659
660 - (void)moveObjectsInArray:(NSMutableArray *)array fromIndexes:(NSIndexSet *)indexSet toIndex:(NSUInteger)insertIndex
661 {
662     NSUInteger index = [indexSet lastIndex];
663     NSUInteger aboveInsertIndexCount = 0;
664
665     while (index != NSNotFound)
666     {
667         NSUInteger removeIndex;
668
669         if (index >= insertIndex)
670         {
671             removeIndex = index + aboveInsertIndexCount;
672             aboveInsertIndexCount++;
673         }
674         else
675         {
676             removeIndex = index;
677             insertIndex--;
678         }
679
680         id object = [[array objectAtIndex:removeIndex] retain];
681         [array removeObjectAtIndex:removeIndex];
682         [array insertObject:object atIndex:insertIndex];
683         [object release];
684
685         index = [indexSet indexLessThanIndex:index];
686     }
687 }
688
689
690 #pragma mark -
691 #pragma mark NSOutlineView delegate
692
693
694 - (id)outlineView:(NSOutlineView *)fOutlineView child:(NSInteger)index ofItem:(id)item
695 {
696     if (item == nil)
697         return [fJobGroups objectAtIndex:index];
698
699     // We are only one level deep, so we can't be asked about children
700     NSAssert (NO, @"HBQueueController outlineView:child:ofItem: can't handle nested items.");
701     return nil;
702 }
703
704 - (BOOL)outlineView:(NSOutlineView *)fOutlineView isItemExpandable:(id)item
705 {
706     // Our outline view has no levels, but we can still expand every item. Doing so
707     // just makes the row taller. See heightOfRowByItem below.
708     return YES;
709 }
710
711 - (BOOL)outlineView:(NSOutlineView *)fOutlineView shouldExpandItem:(id)item
712 {
713     // Our outline view has no levels, but we can still expand every item. Doing so
714     // just makes the row taller. See heightOfRowByItem below.
715
716     // Don't autoexpand while dragging, since we can't drop into the items
717  //   return ![(HBQueueOutlineView*)fOutlineView isDragging];
718
719     return YES; //<-- Needs to be YES to allow expanding
720
721 }
722
723 - (NSInteger)outlineView:(NSOutlineView *)fOutlineView numberOfChildrenOfItem:(id)item
724 {
725     // Our outline view has no levels, so number of children will be zero for all
726     // top-level items.
727     if (item == nil)
728         return [fJobGroups count];
729     else
730         return 0;
731 }
732
733 - (void)outlineViewItemDidCollapse:(NSNotification *)notification
734 {
735     id item = [[notification userInfo] objectForKey:@"NSObject"];
736     NSInteger row = [fOutlineView rowForItem:item];
737     [fOutlineView noteHeightOfRowsWithIndexesChanged:[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(row,1)]];
738 }
739
740 - (void)outlineViewItemDidExpand:(NSNotification *)notification
741 {
742     id item = [[notification userInfo] objectForKey:@"NSObject"];
743     NSInteger row = [fOutlineView rowForItem:item];
744     [fOutlineView noteHeightOfRowsWithIndexesChanged:[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(row,1)]];
745 }
746
747 - (CGFloat)outlineView:(NSOutlineView *)outlineView heightOfRowByItem:(id)item
748 {
749     if ([outlineView isItemExpanded: item])
750     {
751         // Short-circuit here if in a live resize primarily to fix a bug but also to
752         // increase resposivness during a resize. There's a bug in NSTableView that
753         // causes row heights to get messed up if you try to change them during a live
754         // resize. So if in a live resize, simply return the previously calculated
755         // height. The row heights will get fixed up after the resize because we have
756         // implemented viewDidEndLiveResize to force all of them to be recalculated.
757         // if ([outlineView inLiveResize] && [item lastDescriptionHeight] > 0)
758          //   return [item lastDescriptionHeight];
759
760         // CGFloat width = [[outlineView tableColumnWithIdentifier: @"desc"] width];
761         // Column width is NOT what is ultimately used. I can't quite figure out what
762         // width to use for calculating text metrics. No matter how I tweak this value,
763         // there are a few conditions in which the drawn text extends below the bounds
764         // of the row cell. In previous versions, which ran under Tiger, I was
765         // reducing width by 47 pixles.
766         // width -= 2;     // (?) for intercell spacing
767
768         // CGFloat height = [item heightOfDescriptionForWidth: width];
769         // return height;
770         
771         return HB_ROW_HEIGHT_FULL_DESCRIPTION;
772     }
773     else
774         return HB_ROW_HEIGHT_TITLE_ONLY;
775 }
776
777 - (CGFloat) heightOfDescriptionForWidth:(CGFloat)width
778 {
779     // Try to return the cached value if no changes have happened since the last time
780     //if ((width == fLastDescriptionWidth) && (fLastDescriptionHeight != 0) && !fNeedsDescription)
781        // return fLastDescriptionHeight;
782
783     //if (fNeedsDescription)
784     //    [self updateDescription];
785
786     // Calculate the height
787     //NSRect bounds = [fDescription boundingRectWithSize:NSMakeSize(width, 10000) options:NSStringDrawingUsesLineFragmentOrigin];
788     //fLastDescriptionHeight = bounds.size.height + 6.0; // add some border to bottom
789     //fLastDescriptionWidth = width;
790     return HB_ROW_HEIGHT_FULL_DESCRIPTION;
791
792 /* supposedly another way to do this, in case boundingRectWithSize isn't working
793     NSTextView* tmpView = [[NSTextView alloc] initWithFrame:NSMakeRect(0, 0, width, 1)];
794     [[tmpView textStorage] setAttributedString:aString];
795     [tmpView setHorizontallyResizable:NO];
796     [tmpView setVerticallyResizable:YES];
797 //    [[tmpView textContainer] setHeightTracksTextView: YES];
798 //    [[tmpView textContainer] setContainerSize: NSMakeSize(width, 10000)];
799     [tmpView sizeToFit];
800     float height = [tmpView frame].size.height;
801     [tmpView release];
802     return height;
803 */
804 }
805
806 - (CGFloat) lastDescriptionHeight
807 {
808     return HB_ROW_HEIGHT_FULL_DESCRIPTION;
809 }
810
811 - (id)outlineView:(NSOutlineView *)fOutlineView objectValueForTableColumn:(NSTableColumn *)tableColumn byItem:(id)item
812 {
813     // nb: The "desc" column is currently an HBImageAndTextCell. However, we are longer
814     // using the image portion of the cell so we could switch back to a regular NSTextFieldCell.
815     
816     if ([[tableColumn identifier] isEqualToString:@"desc"])
817     {
818         /* This should have caused the description we wanted to show*/
819         //return [item objectForKey:@"SourceName"];
820         
821         /* code to build the description as per old queue */
822         //return [self formatEncodeItemDescription:item];
823         
824         /* Below should be put into a separate method but I am way too f'ing lazy right now */
825         NSMutableAttributedString * finalString = [[[NSMutableAttributedString alloc] initWithString: @""] autorelease];
826         // Attributes
827         NSMutableParagraphStyle * ps = [[[NSParagraphStyle defaultParagraphStyle] mutableCopy] retain];
828         [ps setHeadIndent: 40.0];
829         [ps setParagraphSpacing: 1.0];
830         [ps setTabStops:[NSArray array]];    // clear all tabs
831         [ps addTabStop: [[[NSTextTab alloc] initWithType: NSLeftTabStopType location: 20.0] autorelease]];
832         
833         
834         NSDictionary* detailAttr = [NSDictionary dictionaryWithObjectsAndKeys:
835                                     [NSFont systemFontOfSize:10.0], NSFontAttributeName,
836                                     ps, NSParagraphStyleAttributeName,
837                                     nil];
838         
839         NSDictionary* detailBoldAttr = [NSDictionary dictionaryWithObjectsAndKeys:
840                                         [NSFont boldSystemFontOfSize:10.0], NSFontAttributeName,
841                                         ps, NSParagraphStyleAttributeName,
842                                         nil];
843         
844         NSDictionary* titleAttr = [NSDictionary dictionaryWithObjectsAndKeys:
845                                    [NSFont systemFontOfSize:[NSFont systemFontSize]], NSFontAttributeName,
846                                    ps, NSParagraphStyleAttributeName,
847                                    nil];
848         
849         NSDictionary* shortHeightAttr = [NSDictionary dictionaryWithObjectsAndKeys:
850                                          [NSFont systemFontOfSize:2.0], NSFontAttributeName,
851                                          nil];
852         
853         /* First line, we should strip the destination path and just show the file name and add the title num and chapters (if any) */
854         //finalDescription = [finalDescription stringByAppendingString:[NSString stringWithFormat:@"Source: %@ Output: %@\n", [item objectForKey:@"SourceName"],[item objectForKey:@"DestinationPath"]]];
855         NSString * summaryInfo;
856         
857         NSString * titleString = [NSString stringWithFormat:@"Title %d", [[item objectForKey:@"TitleNumber"] intValue]];
858         
859         NSString * chapterString = ([[item objectForKey:@"ChapterStart"] intValue] == [[item objectForKey:@"ChapterEnd"] intValue]) ?
860         [NSString stringWithFormat:@"Chapter %d", [[item objectForKey:@"ChapterStart"] intValue]] :
861         [NSString stringWithFormat:@"Chapters %d through %d", [[item objectForKey:@"ChapterStart"] intValue], [[item objectForKey:@"ChapterEnd"] intValue]];
862         
863         NSString * passesString;
864         if ([[item objectForKey:@"VideoTwoPass"] intValue] == 0)
865         {
866             passesString = [NSString stringWithFormat:@"1 Video Pass"];
867         }
868         else
869         {
870             if ([[item objectForKey:@"VideoTurboTwoPass"] intValue] == 1)
871             {
872                 passesString = [NSString stringWithFormat:@"2 Video Passes Turbo"];
873             }
874             else
875             {
876                 passesString = [NSString stringWithFormat:@"2 Video Passes"];
877             }
878         }
879         
880         [finalString appendString:[NSString stringWithFormat:@"%@", [item objectForKey:@"SourceName"]] withAttributes:titleAttr];
881         
882         /* lets add the output file name to the title string here */
883         NSString * outputFilenameString = [[item objectForKey:@"DestinationPath"] lastPathComponent];
884         
885         summaryInfo = [NSString stringWithFormat: @" (%@, %@, %@) -> %@", titleString, chapterString, passesString, outputFilenameString];
886         
887         [finalString appendString:[NSString stringWithFormat:@"%@\n", summaryInfo] withAttributes:detailAttr];  
888         
889         // Insert a short-in-height line to put some white space after the title
890         [finalString appendString:@"\n" withAttributes:shortHeightAttr];
891         // End of Title Stuff
892         
893         /* Second Line  (Preset Name)*/
894         [finalString appendString: @"Preset: " withAttributes:detailBoldAttr];
895         [finalString appendString:[NSString stringWithFormat:@"%@\n", [item objectForKey:@"PresetName"]] withAttributes:detailAttr];
896         
897         /* Third Line  (Format Summary) */
898         NSString * audioCodecSummary = @"";
899         /* Lets also get our audio track detail since we are going through the logic for use later */
900         NSString * audioDetail1 = @"None";
901         NSString * audioDetail2 = @"None";
902         NSString * audioDetail3 = @"None";
903         NSString * audioDetail4 = @"None";
904         if ([[item objectForKey:@"Audio1Track"] intValue] > 0)
905         {
906             audioCodecSummary = [NSString stringWithFormat:@"%@", [item objectForKey:@"Audio1Encoder"]];
907             audioDetail1 = [NSString stringWithFormat:@"%@ Encoder: %@ Mixdown: %@ SampleRate: %@(khz) Bitrate: %@(kbps)",
908                             [item objectForKey:@"Audio1TrackDescription"] ,
909                             [item objectForKey:@"Audio1Encoder"],
910                             [item objectForKey:@"Audio1Mixdown"] ,
911                             [item objectForKey:@"Audio1Samplerate"],
912                             [item objectForKey:@"Audio1Bitrate"]];
913         }
914         
915         if ([[item objectForKey:@"Audio2Track"] intValue] > 0)
916         {
917             audioCodecSummary = [NSString stringWithFormat:@"%@, %@",audioCodecSummary ,[item objectForKey:@"Audio2Encoder"]];
918             audioDetail2 = [NSString stringWithFormat:@"%@ Encoder: %@ Mixdown: %@ SampleRate: %@(khz) Bitrate: %@(kbps)",
919                             [item objectForKey:@"Audio2TrackDescription"] ,
920                             [item objectForKey:@"Audio2Encoder"],
921                             [item objectForKey:@"Audio2Mixdown"] ,
922                             [item objectForKey:@"Audio2Samplerate"],
923                             [item objectForKey:@"Audio2Bitrate"]];
924         }
925         
926         if ([[item objectForKey:@"Audio3Track"] intValue] > 0)
927         {
928             audioCodecSummary = [NSString stringWithFormat:@"%@, %@",audioCodecSummary ,[item objectForKey:@"Audio3Encoder"]];
929             audioDetail3 = [NSString stringWithFormat:@"%@ Encoder: %@ Mixdown: %@ SampleRate: %@(khz) Bitrate: %@(kbps)",
930                             [item objectForKey:@"Audio3TrackDescription"] ,
931                             [item objectForKey:@"Audio3Encoder"],
932                             [item objectForKey:@"Audio3Mixdown"] ,
933                             [item objectForKey:@"Audio3Samplerate"],
934                             [item objectForKey:@"Audio3Bitrate"]];
935         }
936         if ([[item objectForKey:@"Audio4Track"] intValue] > 0)
937         {
938             audioCodecSummary = [NSString stringWithFormat:@"%@, %@",audioCodecSummary ,[item objectForKey:@"Audio3Encoder"]];
939             audioDetail4 = [NSString stringWithFormat:@"%@ Encoder: %@ Mixdown: %@ SampleRate: %@(khz) Bitrate: %@(kbps)",
940                             [item objectForKey:@"Audio4TrackDescription"] ,
941                             [item objectForKey:@"Audio4Encoder"],
942                             [item objectForKey:@"Audio4Mixdown"] ,
943                             [item objectForKey:@"Audio4Samplerate"],
944                             [item objectForKey:@"Audio4Bitrate"]];
945         }
946         
947         NSString * jobFormatInfo;
948         if ([[item objectForKey:@"ChapterMarkers"] intValue] == 1)
949             jobFormatInfo = [NSString stringWithFormat:@"%@ Container, %@ Video  %@ Audio, Chapter Markers\n", [item objectForKey:@"FileFormat"], [item objectForKey:@"VideoEncoder"], audioCodecSummary];
950         else
951             jobFormatInfo = [NSString stringWithFormat:@"%@ Container, %@ Video  %@ Audio\n", [item objectForKey:@"FileFormat"], [item objectForKey:@"VideoEncoder"], audioCodecSummary];
952         
953         
954         [finalString appendString: @"Format: " withAttributes:detailBoldAttr];
955         [finalString appendString: jobFormatInfo withAttributes:detailAttr];
956         
957         /* Optional String for mp4 options */
958         if ([[item objectForKey:@"FileFormat"] isEqualToString: @"MP4 file"])
959         {
960             NSString * MP4Opts = @"";
961             BOOL mp4OptsPresent = NO;
962             if( [[item objectForKey:@"Mp4LargeFile"] intValue] == 1)
963             {
964                 mp4OptsPresent = YES;
965                 MP4Opts = [MP4Opts stringByAppendingString:@" - 64 Bit"];
966             }
967             if( [[item objectForKey:@"Mp4HttpOptimize"] intValue] == 1)
968             {
969                 mp4OptsPresent = YES;
970                 MP4Opts = [MP4Opts stringByAppendingString:@" - Http Optimized"];
971             }
972             
973             if( [[item objectForKey:@"Mp4iPodCompatible"] intValue] == 1)
974             {
975                 mp4OptsPresent = YES;
976                 MP4Opts = [MP4Opts stringByAppendingString:@" - iPod Atom "];
977             }
978             if (mp4OptsPresent == YES)
979             {
980                 [finalString appendString: @"MP4 Options: " withAttributes:detailBoldAttr];
981                 [finalString appendString: MP4Opts withAttributes:detailAttr];
982                 [finalString appendString:@"\n" withAttributes:detailAttr];
983             }
984         }
985         
986         /* Fourth Line (Destination Path)*/
987         [finalString appendString: @"Destination: " withAttributes:detailBoldAttr];
988         [finalString appendString: [item objectForKey:@"DestinationPath"] withAttributes:detailAttr];
989         [finalString appendString:@"\n" withAttributes:detailAttr];
990         /* Fifth Line Picture Details*/
991         NSString * pictureInfo;
992         pictureInfo = [NSString stringWithFormat:@"%@", [item objectForKey:@"PictureSizingSummary"]];
993         if ([[item objectForKey:@"PictureKeepRatio"] intValue] == 1)
994         {
995             pictureInfo = [pictureInfo stringByAppendingString:@" Keep Aspect Ratio"];
996         }
997         if ([[item objectForKey:@"VideoGrayScale"] intValue] == 1)
998         {
999             pictureInfo = [pictureInfo stringByAppendingString:@", Grayscale"];
1000         }
1001         
1002         [finalString appendString: @"Picture: " withAttributes:detailBoldAttr];
1003         [finalString appendString: pictureInfo withAttributes:detailAttr];
1004         [finalString appendString:@"\n" withAttributes:detailAttr];
1005         
1006         /* Optional String for Picture Filters */
1007         
1008         NSString * pictureFilters = @"";
1009         BOOL pictureFiltersPresent = NO;
1010         if( [[item objectForKey:@"VFR"] intValue] == 1)
1011         {
1012             pictureFiltersPresent = YES;
1013             pictureFilters = [pictureFilters stringByAppendingString:@" - VFR"];
1014         }
1015         if( [[item objectForKey:@"PictureDetelecine"] intValue] == 1 )
1016         {
1017             pictureFiltersPresent = YES;
1018             pictureFilters = [pictureFilters stringByAppendingString:@" - Detelecine"];
1019         }
1020         
1021         if( [[item objectForKey:@"PictureDecomb"] intValue] == 1)
1022         {
1023             pictureFiltersPresent = YES;
1024             pictureFilters = [pictureFilters stringByAppendingString:@" - Decomb "];
1025         }
1026         
1027         if ([[item objectForKey:@"PictureDeinterlace"] intValue] != 0)
1028         {
1029             pictureFiltersPresent = YES;
1030             if ([[item objectForKey:@"PictureDeinterlace"] intValue] == 1)
1031             {
1032                 pictureFilters = [pictureFilters stringByAppendingString:@" - Deinterlace: Fast "];
1033             }
1034             else if ([[item objectForKey:@"PictureDeinterlace"] intValue] == 2)
1035             {
1036                 pictureFilters = [pictureFilters stringByAppendingString:@" - Deinterlace: Slow "];           
1037             }
1038             else if ([[item objectForKey:@"PictureDeinterlace"] intValue] == 3)
1039             {
1040                 pictureFilters = [pictureFilters stringByAppendingString:@" - Deinterlace: Slower "];            
1041             }
1042             
1043         }
1044         if ([[item objectForKey:@"PictureDenoise"] intValue] != 0)
1045         {
1046             pictureFiltersPresent = YES;
1047             if ([[item objectForKey:@"PictureDenoise"] intValue] == 1)
1048             {
1049                 pictureFilters = [pictureFilters stringByAppendingString:@" - Denoise: Weak "];
1050             }
1051             else if ([[item objectForKey:@"PictureDenoise"] intValue] == 2)
1052             {
1053                 pictureFilters = [pictureFilters stringByAppendingString:@" - Denoise: Medium "];           
1054             }
1055             else if ([[item objectForKey:@"PictureDenoise"] intValue] == 3)
1056             {
1057                 pictureFilters = [pictureFilters stringByAppendingString:@" - Denoise: Strong "];            
1058             }
1059             
1060         }
1061         if ([[item objectForKey:@"PictureDeblock"] intValue] != 0)
1062         {
1063             pictureFiltersPresent = YES;
1064             pictureFilters = [pictureFilters stringByAppendingString: [NSString stringWithFormat:@" - Deblock (pp7) (%d) ",[[item objectForKey:@"PictureDeblock"] intValue]]];
1065         }
1066         if (pictureFiltersPresent == YES)
1067         {
1068             [finalString appendString: @"Filters: " withAttributes:detailBoldAttr];
1069             [finalString appendString: pictureFilters withAttributes:detailAttr];
1070             [finalString appendString:@"\n" withAttributes:detailAttr];
1071         }
1072         
1073         /* Sixth Line Video Details*/
1074         NSString * videoInfo;
1075         videoInfo = [NSString stringWithFormat:@"Encoder: %@", [item objectForKey:@"VideoEncoder"]];
1076         
1077         /* for framerate look to see if we are using vfr detelecine */
1078         if ([[item objectForKey:@"JobIndexVideoFramerate"] intValue] == 0)
1079         {
1080             if ([[item objectForKey:@"PictureDetelecine"] intValue] == 1)
1081             {
1082                 /* we are using same as source with vfr detelecine */
1083                 videoInfo = [NSString stringWithFormat:@"%@ Framerate: Same as source (vfr detelecine)", videoInfo];
1084             }
1085             else
1086             {
1087                 /* we are using a variable framerate without dropping frames */
1088                 videoInfo = [NSString stringWithFormat:@"%@ Framerate: Same as source (variable)", videoInfo];
1089             }
1090         }
1091         else
1092         {
1093             /* we have a specified, constant framerate */
1094             videoInfo = [NSString stringWithFormat:@"%@ Framerate: %@ (constant framerate)", videoInfo ,[item objectForKey:@"VideoFramerate"]];
1095         }
1096         
1097         if ([[item objectForKey:@"VideoQualityType"] intValue] == 0)// Target Size MB
1098         {
1099             videoInfo = [NSString stringWithFormat:@"%@ Target Size: %@(MB)", videoInfo ,[item objectForKey:@"VideoTargetSize"]];
1100         }
1101         else if ([[item objectForKey:@"VideoQualityType"] intValue] == 1) // ABR
1102         {
1103             videoInfo = [NSString stringWithFormat:@"%@ Bitrate: %d(kbps)", videoInfo ,[[item objectForKey:@"VideoAvgBitrate"] intValue]];
1104         }
1105         else // CRF
1106         {
1107             videoInfo = [NSString stringWithFormat:@"%@ Constant Quality: %.0f %%", videoInfo ,[[item objectForKey:@"VideoQualitySlider"] floatValue] * 100];
1108         }
1109         
1110         [finalString appendString: @"Video: " withAttributes:detailBoldAttr];
1111         [finalString appendString: videoInfo withAttributes:detailAttr];
1112         [finalString appendString:@"\n" withAttributes:detailAttr];
1113         
1114         if ([[item objectForKey:@"VideoEncoder"] isEqualToString: @"H.264 (x264)"])
1115         {
1116             [finalString appendString: @"x264 Options: " withAttributes:detailBoldAttr];
1117             [finalString appendString: [item objectForKey:@"x264Option"] withAttributes:detailAttr];
1118             [finalString appendString:@"\n" withAttributes:detailAttr];
1119         }
1120         
1121         
1122         /* Seventh Line Audio Details*/
1123         [finalString appendString: @"Audio Track 1: " withAttributes:detailBoldAttr];
1124         [finalString appendString: audioDetail1 withAttributes:detailAttr];
1125         [finalString appendString:@"\n" withAttributes:detailAttr];
1126         
1127         [finalString appendString: @"Audio Track 2: " withAttributes:detailBoldAttr];
1128         [finalString appendString: audioDetail2 withAttributes:detailAttr];
1129         [finalString appendString:@"\n" withAttributes:detailAttr];
1130         
1131         [finalString appendString: @"Audio Track 3: " withAttributes:detailBoldAttr];
1132         [finalString appendString: audioDetail3 withAttributes:detailAttr];
1133         [finalString appendString:@"\n" withAttributes:detailAttr];
1134         
1135         [finalString appendString: @"Audio Track 4: " withAttributes:detailBoldAttr];
1136         [finalString appendString: audioDetail4 withAttributes:detailAttr];
1137         
1138         return finalString;
1139     }
1140     else if ([[tableColumn identifier] isEqualToString:@"icon"])
1141     {
1142         if ([[item objectForKey:@"Status"] intValue] == 0)
1143         {
1144             return [NSImage imageNamed:@"EncodeComplete"];
1145         }
1146         else if ([[item objectForKey:@"Status"] intValue] == 1)
1147         {
1148             return [NSImage imageNamed: [NSString stringWithFormat: @"EncodeWorking%d", fAnimationIndex]];
1149         }
1150         else if ([[item objectForKey:@"Status"] intValue] == 3)
1151         {
1152             return [NSImage imageNamed:@"EncodeCanceled"];
1153         }
1154         else
1155         {
1156             return [NSImage imageNamed:@"JobSmall"];
1157         }
1158         
1159     }
1160     else
1161     {
1162         return @"";
1163     }
1164 }
1165
1166 - (void)outlineView:(NSOutlineView *)outlineView willDisplayCell:(id)cell forTableColumn:(NSTableColumn *)tableColumn item:(id)item
1167 {
1168     if ([[tableColumn identifier] isEqualToString:@"desc"])
1169     {
1170
1171
1172         // nb: The "desc" column is currently an HBImageAndTextCell. However, we are longer
1173         // using the image portion of the cell so we could switch back to a regular NSTextFieldCell.
1174
1175         // Set the image here since the value returned from outlineView:objectValueForTableColumn: didn't specify the image part
1176         [cell setImage:nil];
1177     }
1178     else if ([[tableColumn identifier] isEqualToString:@"action"])
1179     {
1180         [cell setEnabled: YES];
1181         BOOL highlighted = [outlineView isRowSelected:[outlineView rowForItem: item]] && [[outlineView window] isKeyWindow] && ([[outlineView window] firstResponder] == outlineView);
1182         if ([[item objectForKey:@"Status"] intValue] == 0)
1183         {
1184             [cell setAction: @selector(revealSelectedQueueItem:)];
1185             if (highlighted)
1186             {
1187                 [cell setImage:[NSImage imageNamed:@"RevealHighlight"]];
1188                 [cell setAlternateImage:[NSImage imageNamed:@"RevealHighlightPressed"]];
1189             }
1190             else
1191                 [cell setImage:[NSImage imageNamed:@"Reveal"]];
1192         }
1193         else
1194         {
1195             [cell setAction: @selector(removeSelectedQueueItem:)];
1196             if (highlighted)
1197             {
1198                 [cell setImage:[NSImage imageNamed:@"DeleteHighlight"]];
1199                 [cell setAlternateImage:[NSImage imageNamed:@"DeleteHighlightPressed"]];
1200             }
1201             else
1202                 [cell setImage:[NSImage imageNamed:@"Delete"]];
1203         }
1204     }
1205 }
1206
1207 - (void)outlineView:(NSOutlineView *)outlineView willDisplayOutlineCell:(id)cell forTableColumn:(NSTableColumn *)tableColumn item:(id)item
1208 {
1209     // By default, the discolsure image gets centered vertically in the cell. We want
1210     // always at the top.
1211     if ([outlineView isItemExpanded: item])
1212         [cell setImagePosition: NSImageAbove];
1213     else
1214         [cell setImagePosition: NSImageOnly];
1215 }
1216
1217 #pragma mark -
1218 #pragma mark NSOutlineView delegate (dragging related)
1219
1220 //------------------------------------------------------------------------------------
1221 // NSTableView delegate
1222 //------------------------------------------------------------------------------------
1223
1224
1225 - (BOOL)outlineView:(NSOutlineView *)outlineView writeItems:(NSArray *)items toPasteboard:(NSPasteboard *)pboard
1226 {
1227     // Dragging is only allowed of the pending items.
1228     if ([[[fJobGroups objectAtIndex:[outlineView selectedRow]] objectForKey:@"Status"] intValue] != 2) // 2 is pending
1229     {
1230         return NO;
1231     }
1232     
1233     // Don't retain since this is just holding temporaral drag information, and it is
1234     //only used during a drag!  We could put this in the pboard actually.
1235     fDraggedNodes = items;
1236     
1237     // Provide data for our custom type, and simple NSStrings.
1238     [pboard declareTypes:[NSArray arrayWithObjects: DragDropSimplePboardType, nil] owner:self];
1239     
1240     // the actual data doesn't matter since DragDropSimplePboardType drags aren't recognized by anyone but us!.
1241     [pboard setData:[NSData data] forType:DragDropSimplePboardType];
1242     
1243     return YES;
1244 }
1245
1246
1247 /* This method is used to validate the drops. */
1248 - (NSDragOperation)outlineView:(NSOutlineView *)outlineView validateDrop:(id <NSDraggingInfo>)info proposedItem:(id)item proposedChildIndex:(NSInteger)index
1249 {
1250     // Don't allow dropping ONTO an item since they can't really contain any children.
1251     BOOL isOnDropTypeProposal = index == NSOutlineViewDropOnItemIndex;
1252     if (isOnDropTypeProposal)
1253         return NSDragOperationNone;
1254
1255     // Don't allow dropping INTO an item since they can't really contain any children.
1256     if (item != nil)
1257     {
1258         index = [fOutlineView rowForItem: item] + 1;
1259         item = nil;
1260     }
1261
1262     // NOTE: Should we allow dropping a pending job *above* the
1263     // finished or already encoded jobs ?
1264     // We do not let the user drop a pending job before or *above*
1265     // already finished or currently encoding jobs.
1266     if (index <= fEncodingQueueItem)
1267     {
1268         return NSDragOperationNone;
1269         index = MAX (index, fEncodingQueueItem);
1270         }
1271     
1272     
1273     [outlineView setDropItem:item dropChildIndex:index];
1274     return NSDragOperationGeneric;
1275 }
1276
1277
1278
1279 - (BOOL)outlineView:(NSOutlineView *)outlineView acceptDrop:(id <NSDraggingInfo>)info item:(id)item childIndex:(NSInteger)index
1280 {
1281         NSMutableIndexSet *moveItems = [NSMutableIndexSet indexSet];
1282     
1283     id obj;
1284     NSEnumerator *enumerator = [fDraggedNodes objectEnumerator];
1285     while (obj = [enumerator nextObject])
1286     {
1287         [moveItems addIndex:[fJobGroups indexOfObject:obj]];
1288     }
1289
1290     // Successful drop, we use moveObjectsInQueueArray:... in fHBController
1291     // to properly rearrange the queue array, save it to plist and then send it back here.
1292     // since Controller.mm is handling all queue array manipulation.
1293     // We *could do this here, but I think we are better served keeping that code together.
1294     [fHBController moveObjectsInQueueArray:fJobGroups fromIndexes:moveItems toIndex: index];    
1295     return YES;
1296 }
1297 - (void)moveObjectsInQueueArray:(NSMutableArray *)array fromIndexes:(NSIndexSet *)indexSet toIndex:(unsigned)insertIndex
1298 {
1299     unsigned index = [indexSet lastIndex];
1300     unsigned aboveInsertIndexCount = 0;
1301     
1302     while (index != NSNotFound)
1303     {
1304         unsigned removeIndex;
1305         
1306         if (index >= insertIndex)
1307         {
1308             removeIndex = index + aboveInsertIndexCount;
1309             aboveInsertIndexCount++;
1310         }
1311         else
1312         {
1313             removeIndex = index;
1314             insertIndex--;
1315         }
1316         
1317         id object = [[array objectAtIndex:removeIndex] retain];
1318         [array removeObjectAtIndex:removeIndex];
1319         [array insertObject:object atIndex:insertIndex];
1320         [object release];
1321         
1322         index = [indexSet indexLessThanIndex:index];
1323     }
1324 }
1325
1326
1327
1328 @end