OSDN Git Service

BuildSystem: darwin
[handbrake-jp/handbrake-jp-git.git] / macosx / HBOutputPanelController.h
index b61fa20..dc76e2a 100644 (file)
  * This class implements a panel that displays all text that is written
  * to stderr. User can easily copy the text to pasteboard from context menu.
  */
-@interface HBOutputPanelController : NSObject
+@interface HBOutputPanelController : NSWindowController
 {
-       /// Panel that displays debug output.
-       IBOutlet NSPanel *outputPanel;
-       
-       /// Textview that displays debug output.
-       IBOutlet NSTextView *textView;
-       
-       /// Text storage for the debug output.
-       NSTextStorage *outputTextStorage;
-    
+    /// Textview that displays debug output.
+    IBOutlet NSTextView *textView;
+
+    /// Text storage for the debug output.
+    NSTextStorage *outputTextStorage;
+
     /// Path to log text file.
     NSString *outputLogFile;
+    /// Path to individual log text file.
+    NSString *outputLogFileForEncode;
+    BOOL encodeLogOn;
 }
 
 - (IBAction)showOutputPanel:(id)sender;
 - (IBAction)clearOutput:(id)sender;
 - (IBAction)copyAllOutputToPasteboard:(id)sender;
 - (IBAction)openActivityLogFile:(id)sender;
+- (IBAction)openEncodeLogDirectory:(id)sender;
+- (IBAction)clearActivityLogFile:(id)sender;
+- (void) startEncodeLog:(NSString *) logPath;
+- (void) endEncodeLog;
 
 @end