summaryrefslogtreecommitdiffstats
path: root/macosx/PictureController.h
diff options
context:
space:
mode:
authorritsuka <[email protected]>2007-09-09 14:17:03 +0000
committerritsuka <[email protected]>2007-09-09 14:17:03 +0000
commita2a0fb470bf50e75937c68b02f0e97a9f6cc6873 (patch)
tree09a2073cb55a51305ae4642f3f47b669b21a9475 /macosx/PictureController.h
parent09a6c03875d3e89fd2d86663334842c8d7605028 (diff)
MacGui: Fixed main window not showing updated filters settings after closing the picture window.
HandBrake gui is updated even when the user is pressing a button or a menu. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@940 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/PictureController.h')
-rw-r--r--macosx/PictureController.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/macosx/PictureController.h b/macosx/PictureController.h
index 9feae1e25..81aff8517 100644
--- a/macosx/PictureController.h
+++ b/macosx/PictureController.h
@@ -57,7 +57,9 @@
int denoise;
} fPictureFilterSettings;
+ id delegate;
}
+- (id)initWithDelegate:(id)del;
- (void) SetHandle: (hb_handle_t *) handle;
- (void) SetTitle: (hb_title_t *) title;
@@ -80,5 +82,8 @@
- (void) showPanelInWindow: (NSWindow *) fWindow forTitle:(hb_title_t *)title;
- (BOOL) loadMyNibFile;
+@end
+@interface NSObject (PictureControllertDelegateMethod)
+- (void)pictureSettingsDidChange;
@end