OSDN Git Service

fix: cannot preview with QT
[handbrake-jp/handbrake-jp.git] / macosx / PictureController.m
1 /* $Id: PictureController.mm,v 1.11 2005/08/01 15:10:44 titer Exp $
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 "PictureController.h"
8 #import "Controller.h"
9 #import "HBPreviewController.h"
10
11
12
13 @implementation PictureController
14
15 - (id)init
16 {
17         if (self = [super initWithWindowNibName:@"PictureSettings"])
18         {
19         // NSWindowController likes to lazily load its window. However since
20         // this controller tries to set all sorts of outlets before the window
21         // is displayed, we need it to load immediately. The correct way to do
22         // this, according to the documentation, is simply to invoke the window
23         // getter once.
24         //
25         // If/when we switch a lot of this stuff to bindings, this can probably
26         // go away.
27         [self window];
28         
29         fPreviewController = [[PreviewController alloc] init];
30     }
31         return self;
32 }
33
34 //------------------------------------------------------------------------------------
35 // Displays and brings the picture window to the front
36 //------------------------------------------------------------------------------------
37 - (IBAction) showPictureWindow: (id)sender
38 {
39     if ([fPreviewController fullScreen] == YES)
40     {
41         [self showWindow:sender];
42         [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"PictureSizeWindowIsOpen"];
43         [self setToFullScreenMode];
44     }
45     else
46     {
47         if ([[self window] isVisible])
48         {
49             [[self window] close];
50         }
51         else
52         {
53             [self showWindow:sender];
54             [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"PictureSizeWindowIsOpen"];
55             [self setToWindowedMode];
56         }
57     }
58     [self adjustFilterDisplay:nil];
59     [self adjustSizingDisplay:nil];
60 }
61
62 - (BOOL) previewFullScreenMode
63 {
64     return [fPreviewController fullScreen];
65 }
66
67 /* this method is used to detect clicking on a tab in fSizeFilterView */
68 - (void)tabView:(NSTabView *)tabView didSelectTabViewItem:(NSTabViewItem *)tabViewItem
69 {
70
71 [self resizeInspectorForTab:nil];
72
73 }
74
75 #pragma mark -
76
77 /* resizeInspectorForTab is called at launch, and each time either the 
78  * Size or Filters tab is clicked. Size gives a horizontally oriented
79  * inspector and Filters is a vertically aligned inspector.
80  */
81 - (IBAction) resizeInspectorForTab: (id)sender
82 {
83     NSRect frame = [[self window] frame];
84     NSPoint windowOrigin = [[self window] frame].origin;
85     NSSize screenSize = [[[self window] screen] frame].size;
86     NSPoint screenOrigin = [[[self window] screen] frame].origin;
87     
88     /* We base our inspector size/layout on which tab is active for fSizeFilterView */
89     /* we are 1 which is Filters*/
90     if ([fSizeFilterView indexOfTabViewItem: [fSizeFilterView selectedTabViewItem]] == 1)
91     {
92         frame.size.width = 314;
93         /* we glean the height from the size of the boxes plus the extra window space
94          * needed for non boxed display
95          */
96         frame.size.height = 110.0 + [fDetelecineBox frame].size.height + [fDecombDeinterlaceBox frame].size.height + [fDenoiseBox frame].size.height + [fDeblockBox frame].size.height;
97         /* Hide the size readout at the bottom as the vertical inspector is not wide enough */
98         [fSizeInfoField setHidden:YES];
99     }
100     else // we are Tab index 0 which is size
101     {
102         frame.size.width = 50.0 + [fPictureSizeBox frame].size.width + [fPictureCropBox frame].size.width;
103         frame.size.height = [fPictureSizeBox frame].size.height + 85;
104         /* hide the size summary field at the bottom */
105         [fSizeInfoField setHidden:NO];      
106     }
107     /* get delta's for the change in window size */
108     CGFloat deltaX = frame.size.width - [[self window] frame].size.width;
109     CGFloat deltaY = frame.size.height - [[self window] frame].size.height;
110     
111     /* Check to see if we have changed the height from current */
112     //if (frame.size.height != [[self window] frame].size.height)
113     //{
114         /* change the inspector origin via the deltaY */
115         frame.origin.y -= deltaY;
116         /* keep the inspector centered so the tabs stay in place */
117         frame.origin.x -= deltaX / 2.0;
118     //}
119     
120      /* we make sure we are not horizontally off of our screen.
121      * this would be the case if we are on the vertical filter tab
122      * and we hit the size tab and the inspector grows horizontally
123      * off the screen to the right
124     */
125     if ((frame.origin.x + frame.size.width) > (screenOrigin.x + screenSize.width))
126     {
127         /* the right side of the preview is off the screen, so shift to the left */
128         frame.origin.x = (screenOrigin.x + screenSize.width) - frame.size.width;
129     }
130     
131     [[self window] setFrame:frame display:YES animate:YES];
132 }
133
134 - (IBAction) adjustSizingDisplay: (id) sender
135 {
136     NSSize pictureSizingBoxSize = [fPictureSizeBox frame].size;
137     
138     NSPoint fPictureSizeBoxOrigin = [fPictureSizeBox frame].origin;
139     NSSize pictureCropBoxSize = [fPictureCropBox frame].size;
140     NSPoint fPictureCropBoxOrigin = [fPictureCropBox frame].origin;
141     
142     if ([fAnamorphicPopUp indexOfSelectedItem] == 3) // custom / power user jamboree
143     {
144         pictureSizingBoxSize.width = 530;
145         
146         /* Set visibility of capuj widgets */
147         [fParWidthField setHidden: NO];
148         [fParHeightField setHidden: NO];
149         [fParWidthLabel setHidden: NO];
150         [fParHeightLabel setHidden: NO];
151         [fDisplayWidthField setHidden: NO];
152         [fDisplayWidthLabel setHidden: NO];
153         [fModulusLabel setHidden: NO];
154         [fModulusPopUp setHidden: NO];
155         /* adjust/move keep ar checkbox */
156         [fRatioLabel setHidden: YES];
157         [fRatioLabel2 setHidden: NO];
158         
159         /* Optionally swith the Storage and Display width positions*/
160          /*
161          NSPoint fWidthLabelOrigin = [fWidthLabel frame].origin;
162          NSPoint fWidthFieldOrigin = [fWidthField frame].origin;
163          NSPoint fWidthStepperOrigin = [fWidthStepper frame].origin;
164          fWidthFieldOrigin.x = [fRatioLabel2 frame].origin.x + [fRatioLabel2 frame].size.width + 4;
165          [fWidthField setFrameOrigin:fWidthFieldOrigin];
166
167          fWidthStepperOrigin.x = [fWidthField frame].origin.x + [fWidthField frame].size.width + 4;
168          [fWidthStepper setFrameOrigin:fWidthStepperOrigin];
169          
170          fWidthLabelOrigin.x = [fWidthField frame].origin.x - [fWidthLabel frame].size.width - 4;
171          [fWidthLabel setFrameOrigin:fWidthLabelOrigin];
172          [fWidthLabel setStringValue:@"Storage Width:"];
173          */
174         
175         /* set the origin for fRatioCheck so origin.y == fRatioLabel2
176          * and origin.x == fDisplayWidthField
177          */
178          NSPoint fRatioCheckOrigin = [fRatioCheck frame].origin;
179          fRatioCheckOrigin.y = [fRatioLabel2 frame].origin.y - 2;
180          fRatioCheckOrigin.x = [fRatioLabel2 frame].origin.x + [fRatioLabel2 frame].size.width + 4;
181          [fRatioCheck setFrameOrigin:fRatioCheckOrigin];
182          
183     }
184     else
185     {
186         pictureSizingBoxSize.width = 200;
187         
188         /* Set visibility of capuj widgets */
189         [fParWidthField setHidden: YES];
190         [fParHeightField setHidden: YES];
191         [fParWidthLabel setHidden: YES];
192         [fParHeightLabel setHidden: YES];
193         [fDisplayWidthField setHidden: YES];
194         [fDisplayWidthLabel setHidden: YES];
195         [fModulusLabel setHidden: YES];
196         [fModulusPopUp setHidden: YES];
197         /* adjust/move keep ar checkbox */
198         [fRatioLabel setHidden: NO];
199         [fRatioLabel2 setHidden: YES];
200         
201          /* Optionally swith the Storage and Display width positions*/
202          
203          /*
204          NSPoint fWidthLabelOrigin = [fWidthLabel frame].origin;
205          NSPoint fWidthFieldOrigin = [fWidthField frame].origin;
206          NSPoint fWidthStepperOrigin = [fWidthStepper frame].origin;
207          
208          fWidthFieldOrigin.x = [fHeightField frame].origin.x;
209          [fWidthField setFrameOrigin:fWidthFieldOrigin];
210          
211          fWidthStepperOrigin.x = [fHeightStepper frame].origin.x;
212          [fWidthStepper setFrameOrigin:fWidthStepperOrigin];
213          
214          fWidthLabelOrigin.x = [fWidthField frame].origin.x - [fWidthLabel frame].size.width -4;
215          [fWidthLabel setFrameOrigin:fWidthLabelOrigin];
216          [fWidthLabel setStringValue:@"Width:"];
217          */
218         
219         
220         /* set the origin for fRatioCheck so origin.y == fRatioLabel
221          * and origin.x == fWidthStepper
222          */
223          NSPoint fRatioCheckOrigin = [fRatioCheck frame].origin;
224          fRatioCheckOrigin.y = [fRatioLabel frame].origin.y - 2;
225          fRatioCheckOrigin.x = [fWidthStepper frame].origin.x - 2;
226          [fRatioCheck setFrameOrigin:fRatioCheckOrigin];
227         
228     }
229     
230     /* Check to see if we have changed the size from current */
231     if (pictureSizingBoxSize.height != [fPictureSizeBox frame].size.height || pictureSizingBoxSize.width != [fPictureSizeBox frame].size.width)
232     {
233         /* Get our delta for the change in picture size box height */
234         CGFloat deltaYSizeBoxShift = pictureSizingBoxSize.height - [fPictureSizeBox frame].size.height;
235         fPictureSizeBoxOrigin.y -= deltaYSizeBoxShift;
236         /* Get our delta for the change in picture size box width */
237         CGFloat deltaXSizeBoxShift = pictureSizingBoxSize.width - [fPictureSizeBox frame].size.width;
238         //fPictureSizeBoxOrigin.x += deltaXSizeBoxShift;
239         /* set our new Picture size box size */
240         [fPictureSizeBox setFrameSize:pictureSizingBoxSize];
241         [fPictureSizeBox setFrameOrigin:fPictureSizeBoxOrigin];
242         
243         pictureCropBoxSize.height += deltaYSizeBoxShift;
244         fPictureCropBoxOrigin.y -= deltaYSizeBoxShift;
245         fPictureCropBoxOrigin.x += deltaXSizeBoxShift;
246         
247         [fPictureCropBox setFrameSize:pictureCropBoxSize];
248         [[fPictureCropBox animator] setFrameOrigin:fPictureCropBoxOrigin];
249     }
250
251     
252     /* now we call to resize the entire inspector window */
253    [self resizeInspectorForTab:nil];
254 }
255
256 - (IBAction) adjustFilterDisplay: (id) sender
257 {
258     
259     NSBox * filterBox = nil;
260     NSTextField * filterField;
261     if (sender == fDetelecinePopUp)
262     {
263         filterBox = fDetelecineBox;
264         filterField = fDetelecineField;
265     }
266     
267     if (sender == fDecombDeinterlaceSlider)
268     {
269         if ([fDecombDeinterlaceSlider floatValue] == 0.0)
270         {
271             filterBox = fDecombBox;
272             filterField = fDecombField;
273         }
274         else
275         {
276             filterBox = fDeinterlaceBox;
277             filterField = fDeinterlaceField;
278         }
279     }
280     
281     if (sender == fDecombPopUp)
282     {
283         filterBox = fDecombBox;
284         filterField = fDecombField;
285     }
286     if (sender == fDeinterlacePopUp)
287     {
288         filterBox = fDeinterlaceBox;
289         filterField = fDeinterlaceField;
290     }
291     
292     if (sender == fDenoisePopUp)
293     {
294         filterBox = fDenoiseBox;
295         filterField = fDenoiseField;
296     }
297     
298     NSSize currentSize = [filterBox frame].size;
299     NSRect boxFrame = [filterBox frame];
300     
301     if ([sender titleOfSelectedItem] == @"Custom")
302     {
303         
304         currentSize.height = 60;
305         
306     }
307     else
308     {
309         currentSize.height = 30;
310         
311     }
312     /* Check to see if we have changed the size from current */
313     if (currentSize.height != [filterBox frame].size.height)
314     {
315         /* We are changing the size of the box, so recalc the origin */
316         NSPoint boxOrigin = [filterBox frame].origin;
317         /* We get the deltaY here for how much we are expanding/contracting the box vertically */
318         CGFloat deltaYBoxShift = currentSize.height - [filterBox frame].size.height;
319         boxOrigin.y -= deltaYBoxShift;
320         
321         boxFrame.size.height = currentSize.height;
322         boxFrame.origin.y = boxOrigin.y;
323         [filterBox setFrame:boxFrame];
324         
325         /* go ahead and resize the box */
326         //[[filterBox animator] setFrameSize:currentSize];
327         //[[filterBox animator] setFrameOrigin:origin];
328  
329     
330         if (filterBox == fDecombBox || filterBox == fDeinterlaceBox)
331         {
332             /* fDecombDeinterlaceBox*/
333             NSSize decombDeinterlaceBoxSize = [fDecombDeinterlaceBox frame].size;
334             NSPoint decombDeinterlaceBoxOrigin = [fDecombDeinterlaceBox frame].origin;
335             
336             //decombDeinterlaceBoxSize.height = [filterBox frame].size.height + 50;
337             if (sender == fDecombDeinterlaceSlider)
338             {
339                 [fHBController writeToActivityLog: "Sender is deinterlace decomb slider"];
340             }
341             
342             if ([fDeinterlaceBox isHidden] == YES)
343             {
344                 decombDeinterlaceBoxSize.height = [fDecombBox frame].size.height + 50;
345                 [fHBController writeToActivityLog: "Resize by Decomb box"];
346             }
347             else
348             {
349                 decombDeinterlaceBoxSize.height = [fDeinterlaceBox frame].size.height + 50;
350                 [fHBController writeToActivityLog: "Resize by Deinterlace box"];
351             }
352             /* get delta's for the change in window size */
353             
354             CGFloat deltaYdecombDeinterlace = decombDeinterlaceBoxSize.height - [fDecombDeinterlaceBox frame].size.height;
355             
356             deltaYBoxShift = deltaYdecombDeinterlace;
357             
358             decombDeinterlaceBoxOrigin.y -= deltaYdecombDeinterlace;
359             
360             [fDecombDeinterlaceBox setFrameSize:decombDeinterlaceBoxSize];
361             [fDecombDeinterlaceBox setFrameOrigin:decombDeinterlaceBoxOrigin];
362         }
363
364         /* now we must reset the origin of each box below the adjusted box*/
365         NSPoint decombDeintOrigin = [fDecombDeinterlaceBox frame].origin;
366         NSPoint denoiseOrigin = [fDenoiseBox frame].origin;
367         NSPoint deblockOrigin = [fDeblockBox frame].origin;
368         if (sender == fDetelecinePopUp)
369         {
370             decombDeintOrigin.y -= deltaYBoxShift;
371             [fDecombDeinterlaceBox setFrameOrigin:decombDeintOrigin];
372             
373             denoiseOrigin.y -= deltaYBoxShift;
374             [fDenoiseBox setFrameOrigin:denoiseOrigin];
375             
376             deblockOrigin.y -= deltaYBoxShift;
377             [fDeblockBox setFrameOrigin:deblockOrigin];
378         }
379         if (sender == fDecombPopUp || sender == fDeinterlacePopUp)
380         {
381             denoiseOrigin.y -= deltaYBoxShift;
382             [fDenoiseBox setFrameOrigin:denoiseOrigin];
383             
384             deblockOrigin.y -= deltaYBoxShift;
385             [fDeblockBox setFrameOrigin:deblockOrigin];
386         }
387         
388         if (sender == fDenoisePopUp)
389         {
390             deblockOrigin.y -= deltaYBoxShift;
391             [fDeblockBox setFrameOrigin:deblockOrigin];
392         }
393         
394         /* now we call to resize the entire inspector window */
395         [self resizeInspectorForTab:nil];
396     }
397     
398 }
399
400
401 #pragma mark -
402
403 - (IBAction) previewGoWindowed: (id)sender
404 {
405     [fPreviewController goWindowedScreen:self];
406 }
407
408 - (IBAction) showPreviewWindow: (id)sender
409 {
410     [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"PreviewWindowIsOpen"];
411     [fPreviewController showWindow:sender];
412 }
413
414
415
416
417 - (void) setToFullScreenMode
418 {
419     int32_t shieldLevel = CGShieldingWindowLevel(); 
420     
421     [fPictureWindow setLevel:shieldLevel + 1]; 
422     // Show the window. 
423     [fPictureWindow makeKeyAndOrderFront:self];
424 }
425
426 - (void) setToWindowedMode
427 {
428     /* Set the window back to Floating Window mode 
429      * This will put the window always on top, but
430      * since we have Hide on Deactivate set in our
431      * xib, if other apps are put in focus we will
432      * hide properly to stay out of the way
433      */
434     [[self window] setLevel:NSFloatingWindowLevel];
435 }
436
437 - (void)setHBController: (HBController *)controller
438 {
439     fHBController = controller;
440     [fPreviewController   setHBController: controller];
441     
442 }
443
444 - (void)awakeFromNib
445 {
446     [fPictureWindow setDelegate:self];
447     if( ![[self window] setFrameUsingName:@"PictureSizing"] )
448         [[self window] center];
449     [self setWindowFrameAutosaveName:@"PictureSizing"];
450     [[self window] setExcludedFromWindowsMenu:YES];
451     
452     [self setInitialPictureFilters];
453     
454     /* Setup our layers for core animation */
455     [fSizeFilterView setWantsLayer:YES];
456     [fPictureSizeBox setWantsLayer:YES];
457     [fPictureCropBox setWantsLayer:YES];
458     
459 }
460
461
462 - (void)windowWillClose:(NSNotification *)aNotification
463 {
464 [[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"PictureSizeWindowIsOpen"];
465 }
466
467 - (BOOL)windowShouldClose:(id)fPictureWindow
468 {
469     return YES;
470 }
471
472 - (void) dealloc
473 {
474     [fPreviewController release];
475     [super dealloc];
476 }
477
478 - (void) SetHandle: (hb_handle_t *) handle
479 {
480     fHandle = handle;
481     
482     [fPreviewController SetHandle: fHandle];
483 }
484
485 - (void) SetTitle: (hb_title_t *) title
486 {
487     hb_job_t * job = title->job;
488
489     fTitle = title;
490
491     [fWidthStepper  setValueWraps: NO];
492     [fWidthStepper  setIncrement: 16];
493     [fWidthStepper  setMinValue: 64];
494     [fHeightStepper setValueWraps: NO];
495     [fHeightStepper setIncrement: 16];
496     [fHeightStepper setMinValue: 64];
497     
498     [fCropTopStepper    setIncrement: 2];
499     [fCropTopStepper    setMinValue:  0];
500     [fCropBottomStepper setIncrement: 2];
501     [fCropBottomStepper setMinValue:  0];
502     [fCropLeftStepper   setIncrement: 2];
503     [fCropLeftStepper   setMinValue:  0];
504     [fCropRightStepper  setIncrement: 2];
505     [fCropRightStepper  setMinValue:  0];
506     
507     [fWidthStepper      setMaxValue: title->width];
508     [fWidthStepper      setIntValue: job->width];
509     [fWidthField        setIntValue: job->width];
510     [fHeightStepper     setMaxValue: title->height];
511     [fHeightStepper     setIntValue: job->height];
512     [fHeightField       setIntValue: job->height];
513     [fRatioCheck        setState:    job->keep_ratio ? NSOnState : NSOffState];
514     [fCropTopStepper    setMaxValue: title->height/2-2];
515     [fCropBottomStepper setMaxValue: title->height/2-2];
516     [fCropLeftStepper   setMaxValue: title->width/2-2];
517     [fCropRightStepper  setMaxValue: title->width/2-2];
518
519     /* Populate the Anamorphic NSPopUp button here */
520     [fAnamorphicPopUp removeAllItems];
521     [fAnamorphicPopUp addItemWithTitle: @"None"];
522     [fAnamorphicPopUp addItemWithTitle: @"Strict"];
523     [fAnamorphicPopUp addItemWithTitle: @"Loose"];
524     [fAnamorphicPopUp addItemWithTitle: @"Custom"];
525     [fAnamorphicPopUp selectItemAtIndex: job->anamorphic.mode];
526     
527     //[self adjustSizingDisplay:nil];
528     
529     /* populate the modulus popup here */
530     [fModulusPopUp removeAllItems];
531     [fModulusPopUp addItemWithTitle: @"16"];
532     [fModulusPopUp addItemWithTitle: @"8"];
533     [fModulusPopUp addItemWithTitle: @"4"];
534     [fModulusPopUp addItemWithTitle: @"2"];
535     if (job->anamorphic.mode == 3)
536     {
537         [fModulusPopUp selectItemWithTitle: [NSString stringWithFormat:@"%d",job->anamorphic.modulus]];
538     }
539     else
540     {
541         [fModulusPopUp selectItemWithTitle: @"16"];
542     }
543     
544     /* We initially set the previous state of keep ar to on */
545     keepAspectRatioPreviousState = 1;
546         if (!autoCrop)
547         {
548         [fCropMatrix  selectCellAtRow: 1 column:0];
549         /* If auto, lets set the crop steppers according to current job->crop values */
550         [fCropTopStepper    setIntValue: job->crop[0]];
551         [fCropTopField      setIntValue: job->crop[0]];
552         [fCropBottomStepper setIntValue: job->crop[1]];
553         [fCropBottomField   setIntValue: job->crop[1]];
554         [fCropLeftStepper   setIntValue: job->crop[2]];
555         [fCropLeftField     setIntValue: job->crop[2]];
556         [fCropRightStepper  setIntValue: job->crop[3]];
557         [fCropRightField    setIntValue: job->crop[3]];
558         }
559         else
560         {
561         [fCropMatrix  selectCellAtRow: 0 column:0];
562         }
563         
564     /* Set filters widgets according to the filters struct */
565     [fDetelecinePopUp selectItemAtIndex:fPictureFilterSettings.detelecine];
566     [fDecombPopUp selectItemAtIndex:fPictureFilterSettings.decomb];
567     [fDeinterlacePopUp selectItemAtIndex: fPictureFilterSettings.deinterlace];
568     [fDenoisePopUp selectItemAtIndex: fPictureFilterSettings.denoise];
569     [fDeblockSlider setFloatValue:fPictureFilterSettings.deblock];
570     [fGrayscaleCheck setState:fPictureFilterSettings.grayscale];
571     
572     [self deblockSliderChanged: nil];
573     
574     fPicture = 0;
575     MaxOutputWidth = title->width - job->crop[2] - job->crop[3];
576     MaxOutputHeight = title->height - job->crop[0] - job->crop[1];
577     
578     titleDarWidth = job->anamorphic.dar_width;
579     titleDarHeight = job->anamorphic.dar_height;
580     
581     titleParWidth = job->anamorphic.par_width;
582     titleParHeight = job->anamorphic.par_height;
583     
584     [self SettingsChanged: nil];
585 }
586
587 - (IBAction) storageLinkChanged: (id) sender
588 {
589     /* since we have a tickless slider, make sure we are at 0.0 or 1.0 */
590     if ([fStorageLinkSlider floatValue] < 0.50)
591     {
592         [fStorageLinkSlider setFloatValue:0.0];
593         /* set slider labels to reflect choice */
594         [fStorageLinkParLabel setEnabled:YES];
595         [fStorageLinkDisplayLabel setEnabled:NO];
596
597     }
598     else
599     {
600         [fStorageLinkSlider setFloatValue:1.0];
601         /* set slider labels to reflect choice */
602         [fStorageLinkParLabel setEnabled:NO];
603         [fStorageLinkDisplayLabel setEnabled:YES];
604     }
605     
606 }
607
608 - (IBAction) parLinkChanged: (id) sender
609 {
610     /* since we have a tickless slider, make sure we are at 0.0 or 1.0 */
611     if ([fParLinkSlider floatValue] < 0.50)
612     {
613         [fParLinkSlider setFloatValue:0.0];
614         /* set slider labels to reflect choice */
615         [fParLinkStorageLabel setEnabled:YES];
616         [fParLinkDisplayLabel setEnabled:NO];
617     }
618     else
619     {
620         [fParLinkSlider setFloatValue:1.0];
621         /* set slider labels to reflect choice */
622         [fParLinkStorageLabel setEnabled:NO];
623         [fParLinkDisplayLabel setEnabled:YES];
624     }
625     
626 }
627
628 - (IBAction) displayLinkChanged: (id) sender
629 {
630     /* since we have a tickless slider, make sure we are at 0.0 or 1.0 */
631     if ([fDisplayLinkSlider floatValue] < 0.50)
632     {
633         [fDisplayLinkSlider setFloatValue:0.0];
634         /* set slider labels to reflect choice */
635         [fDisplayLinkStorageLabel setEnabled:YES];
636         [fDisplayLinkParLabel setEnabled:NO];
637     }
638     else
639     {
640         [fDisplayLinkSlider setFloatValue:1.0];
641         /* set slider labels to reflect choice */
642         [fDisplayLinkStorageLabel setEnabled:NO];
643         [fDisplayLinkParLabel setEnabled:YES];
644     }
645     
646 }    
647
648 - (IBAction) SettingsChanged: (id) sender
649 {
650     hb_job_t * job = fTitle->job;
651     [fModulusPopUp setEnabled:NO];
652     job->anamorphic.modulus = 16;
653
654     /* Since custom anamorphic allows for a height setting > fTitle->height
655      * check to make sure it is returned to fTitle->height for all other modes
656      */
657      [fHeightStepper setMaxValue: fTitle->height];
658     
659     autoCrop = ( [fCropMatrix selectedRow] == 0 );
660     [fCropTopStepper    setEnabled: !autoCrop];
661     [fCropBottomStepper setEnabled: !autoCrop];
662     [fCropLeftStepper   setEnabled: !autoCrop];
663     [fCropRightStepper  setEnabled: !autoCrop];
664     
665     if( autoCrop )
666     {
667         memcpy( job->crop, fTitle->crop, 4 * sizeof( int ) );
668     }
669     else
670     {
671         job->crop[0] = [fCropTopStepper    intValue];
672         job->crop[1] = [fCropBottomStepper intValue];
673         job->crop[2] = [fCropLeftStepper   intValue];
674         job->crop[3] = [fCropRightStepper  intValue];
675     }
676     
677     [fRatioCheck setEnabled: YES];
678
679     
680     [fParWidthField setEnabled: NO];
681     [fParHeightField setEnabled: NO];
682     [fDisplayWidthField setEnabled: NO];
683     
684     /* If we are not custom anamorphic, make sure we retain the orginal par */
685     if( [fAnamorphicPopUp indexOfSelectedItem] != 3 )
686     {
687         job->anamorphic.par_width = titleParWidth;
688         job->anamorphic.par_height = titleParHeight;
689         [fRatioLabel setHidden: NO];
690         
691         [fWidthStepper  setIncrement: 16];
692         [fHeightStepper setIncrement: 16];
693     }
694     else
695     {
696         [fWidthStepper  setIncrement: [[fModulusPopUp titleOfSelectedItem] intValue]];
697         [fHeightStepper setIncrement: [[fModulusPopUp titleOfSelectedItem] intValue]];
698     }
699     
700         if( [fAnamorphicPopUp indexOfSelectedItem] > 0 )
701         {
702         if ([fAnamorphicPopUp indexOfSelectedItem] == 1) // strict
703         {
704             [fWidthStepper      setIntValue: fTitle->width-fTitle->job->crop[2]-fTitle->job->crop[3]];
705             [fWidthField        setIntValue: fTitle->width-fTitle->job->crop[2]-fTitle->job->crop[3]];
706             
707             /* This will show correct anamorphic height values, but
708              show distorted preview picture ratio */
709             [fHeightStepper      setIntValue: fTitle->height-fTitle->job->crop[0]-fTitle->job->crop[1]];
710             [fHeightField        setIntValue: fTitle->height-fTitle->job->crop[0]-fTitle->job->crop[1]];
711             job->width       = [fWidthStepper  intValue];
712             job->height      = [fHeightStepper intValue];
713             
714             job->anamorphic.mode = 1;
715             [fWidthStepper setEnabled: NO];
716             [fWidthField setEnabled: NO];
717             [fHeightStepper setEnabled: NO];
718             [fHeightField setEnabled: NO];
719             [fRatioCheck setEnabled: NO];
720         }
721         else if ([fAnamorphicPopUp indexOfSelectedItem] == 2) // Loose anamorphic
722         {
723             job->anamorphic.mode = 2;
724             [fWidthStepper setEnabled: YES];
725             [fWidthField setEnabled: YES];
726             [fRatioCheck setEnabled: NO];
727             [fHeightStepper setEnabled: NO];
728             [fHeightField setEnabled: NO];
729             /* We set job->width and call hb_set_anamorphic_size in libhb to do a "dry run" to get
730              * the values to be used by libhb for loose anamorphic
731              */
732             /* if the sender is the anamorphic popup, then we know that loose anamorphic has just
733              * been turned on, so snap the width to full width for the source.
734              */
735             if (sender == fAnamorphicPopUp)
736             {
737                 [fWidthStepper      setIntValue: fTitle->width-fTitle->job->crop[2]-fTitle->job->crop[3]];
738                 [fWidthField        setIntValue: fTitle->width-fTitle->job->crop[2]-fTitle->job->crop[3]];
739             }
740             job->width       = [fWidthStepper  intValue];
741             hb_set_anamorphic_size(job, &output_width, &output_height, &output_par_width, &output_par_height);
742             [fHeightStepper      setIntValue: output_height];
743             [fHeightField        setIntValue: output_height];
744             job->height      = [fHeightStepper intValue];
745             
746         }
747         else if ([fAnamorphicPopUp indexOfSelectedItem] == 3) // custom / power user jamboree
748         {
749
750 #pragma mark - STARTCapuj
751
752             job->anamorphic.mode = 3;
753             
754             /* Set the status of our custom ana only widgets accordingly */
755             /* for mod 3 we can use modulus other than 16 */
756             [fModulusPopUp setEnabled:YES];
757             job->anamorphic.modulus = [[fModulusPopUp titleOfSelectedItem] intValue];
758             
759             [fWidthStepper setEnabled: YES];
760             [fWidthField setEnabled: YES];
761             
762             [fHeightStepper setEnabled: YES];
763             /* for capuj the storage field is immaterial */
764             [fHeightField setEnabled: YES];
765             
766             [fRatioCheck setEnabled: YES];
767             if (sender == fRatioCheck)
768             {
769                 if ([fRatioCheck  state] == NSOnState)
770                 {
771                     [fParWidthField setEnabled: NO];
772                     [fParHeightField setEnabled: NO];   
773                 }
774                 else
775                 {
776                     [fParWidthField setEnabled: YES];
777                     [fParHeightField setEnabled: YES];
778                 }
779             }
780             
781             [fParWidthField setEnabled: YES];
782             [fParHeightField setEnabled: YES];
783             
784             [fDisplayWidthField setEnabled: YES];
785             
786             
787             /* If we are coming into custom anamorphic we reset the par to original
788              * which gives us a way back if things get hosed up.
789              */
790              
791             if (sender == fAnamorphicPopUp)
792             {
793                 /* When entering custom anamorphic, we start with keep ar on */
794                 [fRatioCheck  setState: NSOnState];
795                 /*
796                  KEEPING ASPECT RATIO
797                  Disable editing: PIXEL WIDTH, PIXEL HEIGHT
798                  */
799                 [fParWidthField setEnabled: NO];
800                 [fParHeightField setEnabled: NO];
801                 
802                 job->width = [fWidthStepper intValue];
803                 job->height = [fHeightStepper intValue];
804
805                 /* make sure our par is set back to original */
806                 job->anamorphic.par_width = titleParWidth;
807                 job->anamorphic.par_height = titleParHeight;
808                 
809                 [fParWidthField   setIntValue: titleParWidth];
810                 [fParHeightField   setIntValue: titleParHeight];
811                 
812                 /* modify our par dims from our storage dims */
813                 hb_set_anamorphic_size(job, &output_width, &output_height, &output_par_width, &output_par_height);
814                 float par_display_width = (float)output_width * (float)output_par_width / (float)output_par_height;
815                 
816                 /* go ahead and mod the display dims */
817                 [fDisplayWidthField   setStringValue: [NSString stringWithFormat:@"%.2f", par_display_width]];
818                 
819                 job->anamorphic.dar_width = [fDisplayWidthField floatValue];
820                 job->anamorphic.dar_height = (float)[fHeightStepper intValue];
821                 
822                 /* Set our dar here assuming we are just coming into capuj mode */
823                 dar = [fDisplayWidthField floatValue] / (float)[fHeightField intValue];
824                 
825             }
826
827             /* For capuj we disable these fields if we are keeping the dispay aspect */
828             if ([fRatioCheck  state] == NSOnState)
829             {
830                 /*
831                  KEEPING ASPECT RATIO
832                  DAR = DISPLAY WIDTH / DISPLAY HEIGHT (cache after every modification) */
833                  /*Disable editing: PIXEL WIDTH, PIXEL HEIGHT */
834                 
835                 [fParWidthField setEnabled: NO];
836                 [fParHeightField setEnabled: NO];
837                 
838                 /* Changing DISPLAY WIDTH: */
839                 if (sender == fDisplayWidthField)
840                 {
841                     job->anamorphic.dar_width = [fDisplayWidthField floatValue];
842                     /* Changes HEIGHT to keep DAR */
843                      /* calculate the height to retain the dar  */
844                     int raw_calulated_height = (int)((int)[fDisplayWidthField floatValue] / dar);
845                     /*  now use the modulus to go lower if there is a remainder  */
846                     /* Note to me, raw_calulated_height % [[fModulusPopUp titleOfSelectedItem] intValue]
847                      * gives me the remainder we are not mod (whatever our modulus is) subtract that from
848                      * the actual calculated value derived from the dar to round down to the nearest mod value.
849                      * This should be desireable over rounding up to the next mod value
850                      */
851                     int modulus_height = raw_calulated_height - (raw_calulated_height % [[fModulusPopUp titleOfSelectedItem] intValue]);
852                     if (modulus_height > fTitle->height)
853                     {
854                         [fHeightStepper setMaxValue: modulus_height];
855                     }
856                     [fHeightStepper setIntValue: modulus_height];
857                     job->anamorphic.dar_height = (float)[fHeightStepper intValue];
858                     job->height = [fHeightStepper intValue];
859                     
860                     /* Changes PIXEL WIDTH to new DISPLAY WIDTH */
861                     [fParWidthField setIntValue: [fDisplayWidthField intValue]];
862                     job->anamorphic.par_width = [fParWidthField intValue];
863                     /* Changes PIXEL HEIGHT to STORAGE WIDTH */
864                     [fParHeightField  setIntValue: [fWidthField intValue]];
865                     job->anamorphic.par_height = [fParHeightField intValue];
866                     
867                 }
868                 /* Changing HEIGHT: */
869                 if (sender == fHeightStepper)
870                 {
871                    job->anamorphic.dar_height = (float)[fHeightStepper intValue];
872                    job->height = [fHeightStepper intValue];
873                    
874                     /* Changes DISPLAY WIDTH to keep DAR*/
875                     [fDisplayWidthField setStringValue: [NSString stringWithFormat: @"%.2f",[fHeightStepper intValue] * dar]];
876                     job->anamorphic.dar_width = [fDisplayWidthField floatValue];
877                     /* Changes PIXEL WIDTH to new DISPLAY WIDTH */
878                     [fParWidthField setIntValue: [fDisplayWidthField intValue]];
879                     job->anamorphic.par_width = [fParWidthField intValue];
880                     /* Changes PIXEL HEIGHT to STORAGE WIDTH */
881                     [fParHeightField  setIntValue: [fWidthField intValue]];
882                     job->anamorphic.par_height = [fParHeightField intValue];
883                 }
884                 /* Changing STORAGE_WIDTH: */
885                 if (sender == fWidthStepper)
886                 {
887                     job->width = [fWidthStepper intValue];
888                     
889                     job->anamorphic.dar_width = [fDisplayWidthField floatValue];
890                     job->anamorphic.dar_height = [fHeightStepper floatValue];
891                      
892                     /* Changes PIXEL WIDTH to DISPLAY WIDTH */
893                     [fParWidthField setIntValue: [fDisplayWidthField intValue]];
894                     job->anamorphic.par_width = [fParWidthField intValue];
895                     /* Changes PIXEL HEIGHT to new STORAGE WIDTH */
896                     [fParHeightField  setIntValue: [fWidthStepper intValue]];
897                     job->anamorphic.par_height = [fParHeightField intValue];
898                 }
899             }
900             else if ([fRatioCheck  state] == NSOffState)
901             {
902                 /* Changing STORAGE_WIDTH: */
903                 if (sender == fWidthStepper)
904                 {
905                     job->width = [fWidthStepper intValue];
906                     /* changes DISPLAY WIDTH to STORAGE WIDTH * PIXEL WIDTH / PIXEL HEIGHT */
907                     [fDisplayWidthField setStringValue: [NSString stringWithFormat: @"%.2f",(float)[fWidthStepper intValue] * [fParWidthField intValue] / [fParHeightField intValue]]];
908                     job->anamorphic.dar_width = [fDisplayWidthField floatValue];
909                 }
910                 /* Changing PIXEL dimensions */
911                 if (sender == fParWidthField || sender == fParHeightField)
912                 {
913                     job->anamorphic.par_width = [fParWidthField intValue];
914                     job->anamorphic.par_height = [fParHeightField intValue];
915                     /* changes DISPLAY WIDTH to STORAGE WIDTH * PIXEL WIDTH / PIXEL HEIGHT */
916                     [fDisplayWidthField setStringValue: [NSString stringWithFormat: @"%.2f",(float)[fWidthStepper intValue] * [fParWidthField intValue] / [fParHeightField intValue]]];
917                     job->anamorphic.dar_width = [fDisplayWidthField floatValue];
918                 }
919                 /* Changing DISPLAY WIDTH: */
920                 if (sender == fDisplayWidthField)
921                 {
922                     job->anamorphic.dar_width = [fDisplayWidthField floatValue];
923                     job->anamorphic.dar_height = (float)[fHeightStepper intValue];
924                     /* changes PIXEL WIDTH to DISPLAY WIDTH and PIXEL HEIGHT to STORAGE WIDTH */
925                     [fParWidthField setIntValue: [fDisplayWidthField intValue]];
926                     job->anamorphic.par_width = [fParWidthField intValue];
927                     
928                     [fParHeightField  setIntValue: [fWidthField intValue]];
929                     job->anamorphic.par_height = [fParHeightField intValue];
930                     hb_set_anamorphic_size(job, &output_width, &output_height, &output_par_width, &output_par_height);
931                 }
932                 /* Changing HEIGHT: */
933                 if (sender == fHeightStepper)
934                 {
935                     /* just....changes the height.*/
936                     job->anamorphic.dar_height = [fHeightStepper intValue];
937                     job->height = [fHeightStepper intValue];
938                 }
939                 
940             }
941             
942 #pragma mark - END Capuj                       
943         }
944         
945         /* if the sender is the Anamorphic checkbox, record the state
946          of KeepAspect Ratio so it can be reset if Anamorphic is unchecked again */
947         if (sender == fAnamorphicPopUp)
948         {
949             keepAspectRatioPreviousState = [fRatioCheck state];
950         }
951         if ([fAnamorphicPopUp indexOfSelectedItem] != 3)
952         {
953             [fRatioCheck setState:NSOffState];
954         }
955         
956     }
957     else
958         {
959         job->width       = [fWidthStepper  intValue];
960         job->height      = [fHeightStepper intValue];
961         job->anamorphic.mode = 0;
962         [fWidthStepper setEnabled: YES];
963         [fWidthField setEnabled: YES];
964         [fHeightStepper setEnabled: YES];
965         [fHeightField setEnabled: YES];
966         [fRatioCheck setEnabled: YES];
967         /* if the sender is the Anamorphic checkbox, we return the
968          keep AR checkbox to its previous state */
969         if (sender == fAnamorphicPopUp)
970         {
971             [fRatioCheck setState:keepAspectRatioPreviousState];
972         }
973         
974         }
975         
976     //job->keep_ratio  = ( [fRatioCheck state] == NSOnState );
977     
978     if ([fAnamorphicPopUp indexOfSelectedItem] != 3)
979     {
980     job->keep_ratio  = ( [fRatioCheck state] == NSOnState );
981             if( job->keep_ratio )
982         {
983             if( sender == fWidthStepper || sender == fRatioCheck ||
984                sender == fCropTopStepper || sender == fCropBottomStepper )
985             {
986                 hb_fix_aspect( job, HB_KEEP_WIDTH );
987                 if( job->height > fTitle->height )
988                 {
989                     job->height = fTitle->height;
990                     hb_fix_aspect( job, HB_KEEP_HEIGHT );
991                 }
992             }
993             else
994             {
995                 hb_fix_aspect( job, HB_KEEP_HEIGHT );
996                 if( job->width > fTitle->width )
997                 {
998                     job->width = fTitle->width;
999                     hb_fix_aspect( job, HB_KEEP_WIDTH );
1000                 }
1001             }
1002             
1003         }
1004     }
1005     
1006     // hb_get_preview can't handle sizes that are larger than the original title
1007     if ([fAnamorphicPopUp indexOfSelectedItem] != 3)
1008     {
1009         // dimensions
1010         if( job->width > fTitle->width )
1011         {
1012             job->width = fTitle->width;
1013         }
1014         
1015         if( job->height > fTitle->height )
1016         {
1017             job->height = fTitle->height;
1018         }
1019     }
1020     
1021     [fWidthStepper      setIntValue: job->width];
1022     [fWidthField        setIntValue: job->width];
1023     if( [fAnamorphicPopUp indexOfSelectedItem] != 2) // if we are not loose or custom
1024     {
1025         [fHeightStepper     setIntValue: job->height];
1026         [fHeightField       setIntValue: job->height];
1027     }
1028     
1029     [fCropTopStepper    setIntValue: job->crop[0]];
1030     [fCropTopField      setIntValue: job->crop[0]];
1031     [fCropBottomStepper setIntValue: job->crop[1]];
1032     [fCropBottomField   setIntValue: job->crop[1]];
1033     [fCropLeftStepper   setIntValue: job->crop[2]];
1034     [fCropLeftField     setIntValue: job->crop[2]];
1035     [fCropRightStepper  setIntValue: job->crop[3]];
1036     [fCropRightField    setIntValue: job->crop[3]];
1037     
1038     //[fPreviewController SetTitle:fTitle];
1039     
1040     /* Sanity Check Here for < 16 px preview to avoid
1041      crashing hb_get_preview. In fact, just for kicks
1042      lets getting previews at a min limit of 32, since
1043      no human can see any meaningful detail below that */
1044     if (job->width >= 64 && job->height >= 64)
1045     {
1046         [self reloadStillPreview];
1047     }
1048     
1049     /* we get the sizing info to display from fPreviewController */
1050     [fSizeInfoField setStringValue: [fPreviewController pictureSizeInfoString]];
1051     
1052     if (sender != nil)
1053     {
1054         [fHBController pictureSettingsDidChange];
1055     }   
1056     
1057     if ([[self window] isVisible])
1058     { 
1059         [self adjustSizingDisplay:nil];
1060     }
1061     
1062 }
1063
1064 - (NSString*) getPictureSizeInfoString
1065 {
1066     return [fSizeInfoField stringValue];
1067 }
1068
1069 - (void)reloadStillPreview
1070
1071    hb_job_t * job = fTitle->job; 
1072    
1073    [fPreviewController SetTitle:fTitle];
1074     /* Sanity Check Here for < 16 px preview to avoid
1075      crashing hb_get_preview. In fact, just for kicks
1076      lets getting previews at a min limit of 32, since
1077      no human can see any meaningful detail below that */
1078     if (job->width >= 64 && job->height >= 64)
1079     {
1080        
1081          // Purge the existing picture previews so they get recreated the next time
1082         // they are needed.
1083       //  [fPreviewController purgeImageCache];
1084         /* We actually call displayPreview now from pictureSliderChanged which keeps
1085          * our picture preview slider in sync with the previews being shown
1086          */
1087
1088     //[fPreviewController pictureSliderChanged:nil];
1089     }
1090     
1091 }
1092
1093
1094 #pragma mark -
1095
1096 - (BOOL) autoCrop
1097 {
1098     return autoCrop;
1099 }
1100 - (void) setAutoCrop: (BOOL) setting
1101 {
1102     autoCrop = setting;
1103 }
1104
1105 - (IBAction)showPreviewPanel: (id)sender forTitle: (hb_title_t *)title
1106 {
1107     //[self SetTitle:title];
1108     [self showWindow:sender];
1109     //[self adjustSizingDisplay:nil];
1110     //[self adjustFilterDisplay:nil];
1111
1112 }
1113
1114
1115 #pragma mark -
1116 /* we use this to setup the initial picture filters upon first launch, after that their states
1117 are maintained across different sources */
1118 - (void) setInitialPictureFilters
1119 {
1120         /* we use a popup to show the detelecine settings */
1121         [fDetelecinePopUp removeAllItems];
1122     [fDetelecinePopUp addItemWithTitle: @"Off"];
1123     [fDetelecinePopUp addItemWithTitle: @"Custom"];
1124     [fDetelecinePopUp addItemWithTitle: @"Default"];
1125     [fDetelecinePopUp selectItemAtIndex: fPictureFilterSettings.detelecine];
1126     
1127     [self modeDecombDeinterlaceSliderChanged:nil];
1128     /* we use a popup to show the decomb settings */
1129         [fDecombPopUp removeAllItems];
1130     [fDecombPopUp addItemWithTitle: @"Off"];
1131     [fDecombPopUp addItemWithTitle: @"Custom"];
1132     [fDecombPopUp addItemWithTitle: @"Default"];
1133     
1134     [fDecombPopUp selectItemAtIndex: fPictureFilterSettings.decomb];
1135     
1136     /* we use a popup to show the deinterlace settings */
1137         [fDeinterlacePopUp removeAllItems];
1138     [fDeinterlacePopUp addItemWithTitle: @"Off"];
1139     [fDeinterlacePopUp addItemWithTitle: @"Custom"];
1140     [fDeinterlacePopUp addItemWithTitle: @"Fast"];
1141     [fDeinterlacePopUp addItemWithTitle: @"Slow"];
1142         [fDeinterlacePopUp addItemWithTitle: @"Slower"];
1143     
1144         /* Set deinterlaces level according to the integer in the main window */
1145         [fDeinterlacePopUp selectItemAtIndex: fPictureFilterSettings.deinterlace];
1146
1147         /* we use a popup to show the denoise settings */
1148         [fDenoisePopUp removeAllItems];
1149     [fDenoisePopUp addItemWithTitle: @"Off"];
1150     [fDenoisePopUp addItemWithTitle: @"Custom"];
1151     [fDenoisePopUp addItemWithTitle: @"Weak"];
1152         [fDenoisePopUp addItemWithTitle: @"Medium"];
1153     [fDenoisePopUp addItemWithTitle: @"Strong"];
1154         /* Set denoises level according to the integer in the main window */
1155         [fDenoisePopUp selectItemAtIndex: fPictureFilterSettings.denoise];
1156     
1157
1158 }
1159
1160
1161
1162
1163 - (IBAction) modeDecombDeinterlaceSliderChanged: (id) sender
1164 {
1165     
1166     /* since its a tickless slider, we have to  make sure we are on or off */
1167     if ([fDecombDeinterlaceSlider floatValue] < 0.50)
1168     {
1169         [fDecombDeinterlaceSlider setFloatValue:0.0];
1170     }
1171     else
1172     {
1173         [fDecombDeinterlaceSlider setFloatValue:1.0];
1174     }
1175     
1176     
1177     /* Decomb selected*/
1178     if ([fDecombDeinterlaceSlider floatValue] == 0.0)
1179     {
1180         [fDecombBox setHidden:NO];
1181         [fDeinterlaceBox setHidden:YES];
1182         fPictureFilterSettings.decomb = [fDecombPopUp indexOfSelectedItem];
1183         fPictureFilterSettings.usedecomb = 1;
1184         fPictureFilterSettings.deinterlace = 0;
1185         [fDecombPopUp selectItemAtIndex:fPictureFilterSettings.decomb];
1186         [self adjustFilterDisplay:fDecombPopUp];
1187     }
1188     else
1189     {
1190         [fDecombBox setHidden:YES];
1191         [fDeinterlaceBox setHidden:NO];
1192         fPictureFilterSettings.usedecomb = 0;
1193         fPictureFilterSettings.decomb = 0;
1194         [fDeinterlacePopUp selectItemAtIndex: fPictureFilterSettings.deinterlace];
1195         [self adjustFilterDisplay:fDeinterlacePopUp];
1196     }
1197     [self FilterSettingsChanged: fDecombDeinterlaceSlider];
1198 }
1199
1200
1201 - (IBAction) FilterSettingsChanged: (id) sender
1202 {
1203     
1204     fPictureFilterSettings.detelecine  = [fDetelecinePopUp indexOfSelectedItem];
1205     [self adjustFilterDisplay:fDetelecinePopUp];
1206     
1207     fPictureFilterSettings.decomb = [fDecombPopUp indexOfSelectedItem];
1208     [self adjustFilterDisplay:fDecombPopUp];
1209     
1210     fPictureFilterSettings.deinterlace = [fDeinterlacePopUp indexOfSelectedItem];
1211     [self adjustFilterDisplay:fDeinterlacePopUp];
1212     
1213     fPictureFilterSettings.denoise = [fDenoisePopUp indexOfSelectedItem];
1214     [self adjustFilterDisplay:fDenoisePopUp];
1215     
1216     if ([fDeblockField stringValue] == @"Off")
1217     {
1218         fPictureFilterSettings.deblock  = 0;
1219     }
1220     else
1221     {
1222         fPictureFilterSettings.deblock  = [fDeblockField intValue];
1223     }
1224     
1225     fPictureFilterSettings.grayscale = [fGrayscaleCheck state];
1226     
1227     if (sender != nil)
1228     {
1229         [fHBController pictureSettingsDidChange];
1230         
1231     }   
1232
1233 }
1234
1235
1236 #pragma mark -
1237
1238 - (IBAction) deblockSliderChanged: (id) sender
1239 {
1240     if ([fDeblockSlider floatValue] == 4.0)
1241     {
1242     [fDeblockField setStringValue: [NSString stringWithFormat: @"Off"]];
1243     }
1244     else
1245     {
1246     [fDeblockField setStringValue: [NSString stringWithFormat: @"%.0f", [fDeblockSlider floatValue]]];
1247     }
1248         [self FilterSettingsChanged: sender];
1249 }
1250
1251
1252 - (int) detelecine
1253 {
1254     return fPictureFilterSettings.detelecine;
1255 }
1256
1257 - (NSString*) detelecineCustomString
1258 {
1259     return [fDetelecineField stringValue];
1260 }
1261
1262 - (void) setDetelecine: (int) setting
1263 {
1264     fPictureFilterSettings.detelecine = setting;
1265 }
1266
1267 - (void) setDetelecineCustomString: (NSString*) string 
1268 {
1269     [fDetelecineField setStringValue:string];
1270 }
1271
1272 - (int) deinterlace
1273 {
1274     return fPictureFilterSettings.deinterlace;
1275 }
1276 - (NSString*) deinterlaceCustomString
1277 {
1278     return [fDeinterlaceField stringValue];
1279 }
1280
1281 - (void) setDeinterlaceCustomString: (NSString*) string 
1282 {
1283     [fDeinterlaceField setStringValue:string];
1284 }
1285
1286 - (void) setDeinterlace: (int) setting 
1287 {
1288     fPictureFilterSettings.deinterlace = setting;
1289 }
1290 - (int) decomb
1291 {
1292     return fPictureFilterSettings.decomb;
1293 }
1294
1295 - (NSString*) decombCustomString
1296 {
1297     return [fDecombField stringValue];
1298 }
1299
1300 - (int) useDecomb
1301 {
1302     return fPictureFilterSettings.usedecomb;
1303 }
1304
1305 - (void) setUseDecomb: (int) setting
1306 {
1307     fPictureFilterSettings.usedecomb = setting;
1308     if (fPictureFilterSettings.usedecomb == 1)
1309     {
1310         [fDecombDeinterlaceSlider setFloatValue:0.0];
1311     }
1312     else
1313     {
1314         [fDecombDeinterlaceSlider setFloatValue:1.0];
1315     }
1316     [self modeDecombDeinterlaceSliderChanged:nil];
1317 }
1318
1319 - (void) setDecomb: (int) setting {
1320     fPictureFilterSettings.decomb = setting;
1321 }
1322
1323 - (void) setDecombCustomString: (NSString*) string 
1324 {
1325     [fDecombField setStringValue:string];
1326 }
1327
1328 - (int) denoise
1329 {
1330     return fPictureFilterSettings.denoise;
1331 }
1332
1333 - (NSString*) denoiseCustomString
1334 {
1335     return [fDenoiseField stringValue];
1336 }
1337
1338 - (void) setDenoiseCustomString: (NSString*) string 
1339 {
1340     [fDenoiseField setStringValue:string];
1341 }
1342
1343 - (void) setDenoise: (int) setting
1344 {
1345     fPictureFilterSettings.denoise = setting;
1346 }
1347
1348 - (int) deblock
1349 {
1350     return fPictureFilterSettings.deblock;
1351 }
1352
1353 - (void) setDeblock: (int) setting
1354 {
1355     fPictureFilterSettings.deblock = setting;
1356 }
1357
1358 - (int) grayscale
1359 {
1360     return fPictureFilterSettings.grayscale;
1361 }
1362
1363 - (void) setGrayscale: (int) setting
1364 {
1365     fPictureFilterSettings.grayscale = setting;
1366 }
1367
1368
1369
1370 @end
1371