#import <AppKit/AppKit.h>

@class CETextView;

/* This is added on top of CETextView */
@interface CELineNumberView: NSView
{
  NSMutableString *numberString;
  NSDictionary *attributes;
  CETextView *textView; // Not retained 
  NSFont *font;
  NSColor *fontColor;
  NSColor *backgroundColor;
}

- (void) updateLineNumber: (id) sender;
- (void) setTextView: (CETextView *) textView;

@end



syntax highlighted by Code2HTML, v. 0.9.1