mirror of
https://github.com/nickshanks/ResKnife.git
synced 2025-01-09 13:31:13 +00:00
17 lines
437 B
Objective-C
17 lines
437 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
#import "HexEditorDelegate.h"
|
|
#import "HexWindowController.h"
|
|
|
|
@interface HexTextView : NSTextView
|
|
{
|
|
}
|
|
- (IBAction)clear:(id)sender;
|
|
- (IBAction)pasteAsASCII:(id)sender;
|
|
- (IBAction)pasteAsHex:(id)sender;
|
|
- (IBAction)pasteAsUnicode:(id)sender;
|
|
- (void)editData:(NSData *)data replaceBytesInRange:(NSRange)range withData:(NSData *)newData;
|
|
@end
|
|
|
|
@interface NSTextView (HexTextView)
|
|
- (void)swapForHexTextView;
|
|
@end |