summaryrefslogtreecommitdiffstats
path: root/macosx/PictureController.h
diff options
context:
space:
mode:
authordynaflash <[email protected]>2008-09-23 17:33:40 +0000
committerdynaflash <[email protected]>2008-09-23 17:33:40 +0000
commitd94f2d4248d1a69ef3219cbb6e14b74507558cf8 (patch)
tree7d15b96a3f8c2b76bd0468af775a06bc6210cabc /macosx/PictureController.h
parentc971f5957209b6be5816b73c9fa65b322440d3d1 (diff)
MacGui: implement a slider for deblock.
- Slider goes from "Off" and then ranges from 5-15. - Update preset code to handle the old bool for deblock where we convert "yes" to a value of 5. - Note: though the deblock filter actually has a setting of 0, for the macgui we use an integer of 0, which shows up in the interface as "Off" to indicate not to load the filter at all. Made presets etc, easier to modify. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1750 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/PictureController.h')
-rw-r--r--macosx/PictureController.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/macosx/PictureController.h b/macosx/PictureController.h
index f8742f8f3..7a3ba5929 100644
--- a/macosx/PictureController.h
+++ b/macosx/PictureController.h
@@ -39,6 +39,8 @@
IBOutlet NSButton * fDetelecineCheck;
IBOutlet NSButton * fVFRCheck;
IBOutlet NSButton * fDeblockCheck;
+ IBOutlet NSTextField * fDeblockField;
+ IBOutlet NSSlider * fDeblockSlider;
IBOutlet NSPopUpButton * fDenoisePopUp;
IBOutlet NSPopUpButton * fAnamorphicPopUp;
IBOutlet NSButton * fPrevButton;
@@ -85,7 +87,7 @@
- (BOOL) allowLooseAnamorphic;
- (void) setAllowLooseAnamorphic: (BOOL) setting;
-
+- (IBAction) deblockSliderChanged: (id) sender;
- (int) detelecine;
- (void) setDetelecine: (int) setting;
- (int) vfr;