2002-02-11 01:22:17 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "HexEditorDelegate.h"
|
2002-03-31 17:02:40 +00:00
|
|
|
#import "HexWindowController.h"
|
2002-02-02 11:48:54 +00:00
|
|
|
|
2008-07-31 20:27:55 +00:00
|
|
|
@interface HexEditorTextView : NSTextView
|
|
|
|
- (IBAction)copyASCII:(id)sender;
|
|
|
|
- (IBAction)copyHex:(id)sender;
|
2002-11-15 15:12:42 +00:00
|
|
|
- (IBAction)pasteAsASCII:(id)sender;
|
|
|
|
- (IBAction)pasteAsHex:(id)sender;
|
|
|
|
- (IBAction)pasteAsUnicode:(id)sender;
|
2008-07-31 20:27:55 +00:00
|
|
|
- (IBAction)clear:(id)sender;
|
2002-11-13 03:35:54 +00:00
|
|
|
- (void)editData:(NSData *)data replaceBytesInRange:(NSRange)range withData:(NSData *)newData;
|
2002-02-02 11:48:54 +00:00
|
|
|
@end
|
2002-02-23 03:40:24 +00:00
|
|
|
|
2008-07-31 20:27:55 +00:00
|
|
|
@interface HexTextView : HexEditorTextView
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface AsciiTextView : HexEditorTextView
|
|
|
|
@end
|