#import <Cocoa/Cocoa.h>
@class CLIPSTextView;
@interface CLIPSTextDocument : NSDocument
{
NSString *string;
IBOutlet CLIPSTextView *textView;
IBOutlet NSButton *popupActivator;
NSDictionary *hiliteColor;
}
- (void) balanceIt: (NSString *) theText
leftMiddle: (NSUInteger) leftMiddle
rightMiddle: (NSUInteger) rightMiddle
leftCount: (int) leftCount
rightCount: (int) rightCount
textLength: (NSUInteger) textLength;
- (IBAction) loadSelection: (id) sender;
- (IBAction) batchSelection: (id) sender;
- (IBAction) loadBuffer: (id) sender;
- (IBAction) balance: (id) sender;
- (IBAction) comment: (id) sender;
- (IBAction) uncomment: (id) sender;
@end