WinGui: Fix another instance of the Caliburn vs Json.net sillyness where objects...
[HandBrake.git] / macosx / HBOutputPanelController.h
blob32907b02b1b72abcef83a2c7bc19096241392d89
1 /**
2 * @file
3 * @date 18.5.2007
5 * Interface of class HBOutputPanelController.
6 */
8 #import <Cocoa/Cocoa.h>
10 /**
11 * This class implements a panel that displays all text that is written
12 * to stderr. User can easily copy the text to pasteboard from context menu.
14 @interface HBOutputPanelController : NSWindowController
16 - (IBAction)clearOutput:(id)sender;
17 - (IBAction)copyAllOutputToPasteboard:(id)sender;
18 - (IBAction)openActivityLogFile:(id)sender;
19 - (IBAction)openEncodeLogDirectory:(id)sender;
20 - (IBAction)clearActivityLogFile:(id)sender;
22 @end