OSDN Git Service

MacGui: Debug Window to read libhb output like cli in inspector window
[handbrake-jp/handbrake-jp-git.git] / macosx / Controller.h
index 0e846bd..89755bd 100644 (file)
@@ -15,6 +15,8 @@
 #include "PictureController.h"
 #include "QueueController.h"
 
+@class HBOutputPanelController;
+
 @interface HBController : NSObject <GrowlApplicationBridgeDelegate>
 
 {
     /* integer to set to determine the previous state
        of encode 0==idle, 1==encoding, 2==cancelled*/
     int                            fEncodeState;
+       
+       HBOutputPanelController *outputPanel;
 }
 
 - (void)     TranslateStrings;
 // Growl methods
 - (NSDictionary *) registrationDictionaryForGrowl;
 -(IBAction)showGrowlDoneNotification:(id)sender;
+- (IBAction)showDebugOutputPanel:(id)sender;
 
 @end