X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=macosx%2FPictureController.h;h=f8742f8f3652ef9d07006635812a8ee38543f834;hb=07cc0ebf6a7141a76fd9b6e2da6cf510def1ebc7;hp=a418ba40c66fb940eef715e1f9ba1768e23ee74c;hpb=fdaa6d5fc1f71fd25fcea3b37798d0195f729504;p=handbrake-jp%2Fhandbrake-jp-git.git diff --git a/macosx/PictureController.h b/macosx/PictureController.h index a418ba40..f8742f8f 100644 --- a/macosx/PictureController.h +++ b/macosx/PictureController.h @@ -1,30 +1,25 @@ /* $Id: PictureController.h,v 1.6 2005/04/14 20:40:05 titer Exp $ This file is part of the HandBrake source code. - Homepage: . + Homepage: . It may be used under the terms of the GNU General Public License. */ -#include +#import #include "hb.h" -#include "PictureGLView.h" -@interface PictureController : NSObject +#define HB_NUM_HBLIB_PICTURES 10 // hbilb generates 10 preview pictures + +@interface PictureController : NSWindowController { hb_handle_t * fHandle; hb_title_t * fTitle; - bool fHasQE; - uint8_t * fBuffer; - int fBufferSize; - uint8_t * fTexBuf[2]; - int fTexBufSize; + NSMutableDictionary * fPicturePreviews; // NSImages, one for each preview libhb creates, created lazily int fPicture; - IBOutlet NSPanel * fPicturePanel; - - IBOutlet HBPictureGLView * fPictureGLView; - IBOutlet NSBox * fPictureGLViewArea; + IBOutlet NSImageView * fPictureView; + IBOutlet NSBox * fPictureViewArea; IBOutlet NSTextField * fWidthField; IBOutlet NSStepper * fWidthStepper; IBOutlet NSTextField * fHeightField; @@ -40,12 +35,12 @@ IBOutlet NSTextField * fCropRightField; IBOutlet NSStepper * fCropRightStepper; IBOutlet NSPopUpButton * fDeinterlacePopUp; + IBOutlet NSPopUpButton * fDecombPopUp; IBOutlet NSButton * fDetelecineCheck; IBOutlet NSButton * fVFRCheck; IBOutlet NSButton * fDeblockCheck; IBOutlet NSPopUpButton * fDenoisePopUp; IBOutlet NSPopUpButton * fAnamorphicPopUp; - IBOutlet NSButton * fEffectsCheck; IBOutlet NSButton * fPrevButton; IBOutlet NSButton * fNextButton; IBOutlet NSTextField * fInfoField; @@ -66,6 +61,7 @@ int detelecine; int vfr; int deinterlace; + int decomb; int denoise; int deblock; } fPictureFilterSettings; @@ -77,7 +73,7 @@ - (void) SetHandle: (hb_handle_t *) handle; - (void) SetTitle: (hb_title_t *) title; - (void) setInitialPictureFilters; -- (void) Display: (int) anim; +- (void) displayPreview; - (IBAction) SettingsChanged: (id) sender; - (IBAction) PreviousPicture: (id) sender; @@ -96,13 +92,21 @@ - (void) setVFR: (int) setting; - (int) deinterlace; - (void) setDeinterlace: (int) setting; +- (int) decomb; +- (void) setDecomb: (int) setting; - (int) denoise; - (void) setDenoise: (int) setting; - (int) deblock; - (void) setDeblock: (int) setting; - (void)showPanelInWindow: (NSWindow *)fWindow forTitle: (hb_title_t *)title; -- (BOOL) loadMyNibFile; + ++ (NSImage *) makeImageForPicture: (int)pictureIndex + libhb:(hb_handle_t*)handle + title:(hb_title_t*)title + removeBorders:(BOOL)removeBorders; +- (NSImage *) imageForPicture: (int) pictureIndex; +- (void) purgeImageCache; @end @interface NSObject (PictureControllertDelegateMethod)