diff options
author | dynaflash <[email protected]> | 2009-01-26 21:34:59 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2009-01-26 21:34:59 +0000 |
commit | f1c3b0a71ede4b578481a980c1e69bf27ab0a2f4 (patch) | |
tree | af79ba12b3c3cb664e6fc2e332d09433273395b4 /macosx/Controller.h | |
parent | a1beb04d523c26c851e820572507cbff8b27e637 (diff) |
MacGui: Picture Filters separate hud inspector initial implementation
- Separates the filters out from the picture settings inspector into their own inspector in preparation for more advanced filters
- Gingerbread is shaky but wanted to get the functionality into the svn due the the number of files modified or added.
- Adds a toggle action to Picture Settings, Picture Filters and the activity window
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2099 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.h')
-rw-r--r-- | macosx/Controller.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/macosx/Controller.h b/macosx/Controller.h index 6ca336a36..453c54eba 100644 --- a/macosx/Controller.h +++ b/macosx/Controller.h @@ -11,6 +11,7 @@ #import "ChapterTitles.h" #import "PictureController.h" +#import "HBFilterController.h" #import "HBPreviewController.h" #import "HBQueueController.h" #import "HBAdvancedController.h" @@ -18,6 +19,7 @@ #import "HBPresets.h" @class HBOutputPanelController; +@class PictureFilterController; /* We subclass NSView so that our drags show both the icon as well as PresetName columns */ @interface HBPresetsOutlineView : NSOutlineView @@ -45,6 +47,8 @@ BOOL fIsDragging; /* Picture Settings */ PictureController * fPictureController; + /* Picture Filters */ + PictureFilterController * fPictureFilterController; /* Picture Preview */ PreviewController * fPreviewController; @@ -305,7 +309,7 @@ BOOL fIsDragging; - (IBAction) showPicturePanel: (id) sender; - (void) picturePanelFullScreen; - (void) picturePanelWindowed; - +- (IBAction) showFiltersPanel: (id) sender; - (IBAction) showPreviewWindow: (id) sender; - (void)pictureSettingsDidChange; - (IBAction) calculatePictureSizing: (id) sender; |