gscheme/SCMTextView.h

39 lines
563 B
C
Raw Normal View History

2022-08-05 05:28:40 -04:00
#import <Foundation/Foundation.h>
#import <AppKit/AppKit.h>
#import "VScheme.h"
2022-08-05 05:28:41 -04:00
@interface NSTextView (Misc)
- placeCursorAtEnd;
- selectLineAtPos:(int)pos;
@end
2022-08-05 05:28:40 -04:00
@interface SCMTextView : NSTextView
- (void)insertText:(id)aString;
@end
@interface SCMInteractive : SCMTextView
{
int lastRetrieved;
}
- (id)initWithFrame:(NSRect)frameRect;
- (void)insertText:(id)aString;
2022-08-05 05:28:41 -04:00
- (void)paste:(id)sender;
2022-08-05 05:28:40 -04:00
- (NSString *)getSuffix;
- (void)setString:(NSString *)aString;
- (void)appendString:(NSString *)aString;
- (void)keyDown:(NSEvent *)theEvent;
@end