2019-08-11 09:07:20 +02:00
|
|
|
/* HBOutputPanelController.h
|
|
|
|
|
|
|
|
This file is part of the HandBrake source code.
|
|
|
|
Homepage: <http://handbrake.fr/>.
|
|
|
|
It may be used under the terms of the GNU General Public License. */
|
2007-05-21 16:50:21 +00:00
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2008-05-13 11:24:27 +00:00
|
|
|
@interface HBOutputPanelController : NSWindowController
|
2007-05-21 16:50:21 +00:00
|
|
|
|
|
|
|
- (IBAction)clearOutput:(id)sender;
|
|
|
|
- (IBAction)copyAllOutputToPasteboard:(id)sender;
|
2007-11-14 16:37:34 +00:00
|
|
|
- (IBAction)openActivityLogFile:(id)sender;
|
2008-10-30 18:11:58 +00:00
|
|
|
- (IBAction)openEncodeLogDirectory:(id)sender;
|
2007-11-16 13:17:00 +00:00
|
|
|
- (IBAction)clearActivityLogFile:(id)sender;
|
2007-05-21 16:50:21 +00:00
|
|
|
|
|
|
|
@end
|