OSDN Git Service

A line went missing from Controller.mm in the reorg of that file, you
[handbrake-jp/handbrake-jp-git.git] / macosx / HBOutputPanelController.h
1 /**
2  * @file
3  * @date 18.5.2007
4  *
5  * Interface of class HBOutputPanelController.
6  */
7
8 #import <Cocoa/Cocoa.h>
9
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.
13  */
14 @interface HBOutputPanelController : NSObject
15 {
16         /// Panel that displays debug output.
17         IBOutlet NSPanel *outputPanel;
18         
19         /// Textview that displays debug output.
20         IBOutlet NSTextView *textView;
21         
22         /// Text storage for the debug output.
23         NSTextStorage *outputTextStorage;
24 }
25
26 - (IBAction)showOutputPanel:(id)sender;
27 - (IBAction)clearOutput:(id)sender;
28 - (IBAction)copyAllOutputToPasteboard:(id)sender;
29
30 @end