1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
//
// MShellTextView.h
// MySQL GRT
//
// Created by Alfredo Kojima on 05/7/13.
// Copyright 2005 MySQL AB. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <MySQLGRT/MGRT.h>
#import "myx_grt_public_interface.h"
@interface MShellTextView : NSTextView
{
MGRT *_grt;
NSMutableArray *_history;
int _historyIndex;
NSString *_currentString;
NSRange _promptRange;
BOOL _promptShown;
}
- (void)setGRTEnvironment:(MGRT*)grt;
- (void)makeReady;
- (void)appendText:(NSString*)text;
@end
|