summaryrefslogtreecommitdiffstats
path: root/macosx/Controller.h
diff options
context:
space:
mode:
authordynaflash <[email protected]>2007-05-21 16:50:21 +0000
committerdynaflash <[email protected]>2007-05-21 16:50:21 +0000
commit7f232a9f43d6cdb3094485a5ac73ff9033c1880a (patch)
tree6d3ca68609c344c648dfdc833d3b27700e755795 /macosx/Controller.h
parentd7154d2184454ca5cd115830ed15dd8d1dbfe426 (diff)
MacGui: Debug Window to read libhb output like cli in inspector window
- Thank You Cleaner!! - Adds Debug Output to Window menu - Adds Verbose pref to preferences menu - MacGui now reads output from libhb like cli - May add pref to open Debug Output window upon launch - All credit goes to Cleaner, Thank You! git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@592 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.h')
-rw-r--r--macosx/Controller.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/macosx/Controller.h b/macosx/Controller.h
index 0e846bd94..89755bdb2 100644
--- a/macosx/Controller.h
+++ b/macosx/Controller.h
@@ -15,6 +15,8 @@
#include "PictureController.h"
#include "QueueController.h"
+@class HBOutputPanelController;
+
@interface HBController : NSObject <GrowlApplicationBridgeDelegate>
{
@@ -194,6 +196,8 @@
/* integer to set to determine the previous state
of encode 0==idle, 1==encoding, 2==cancelled*/
int fEncodeState;
+
+ HBOutputPanelController *outputPanel;
}
- (void) TranslateStrings;
@@ -295,6 +299,7 @@
// Growl methods
- (NSDictionary *) registrationDictionaryForGrowl;
-(IBAction)showGrowlDoneNotification:(id)sender;
+- (IBAction)showDebugOutputPanel:(id)sender;
@end