21 - (id)initWithFrame:(NSRect)frame {
22 self = [
super initWithFrame:frame];
34 - (void)drawRect:(NSRect)dirtyRect {
35 NSRect bounds = [
self bounds];
36 [[NSColor grayColor] set];
37 NSBezierPath *line = [NSBezierPath bezierPath];
38 CGFloat y = bounds.origin.y+bounds.size.height/2.0;
39 [line moveToPoint:NSMakePoint(bounds.origin.x, y)];
40 [line lineToPoint:NSMakePoint(bounds.origin.x + bounds.size.width, y)];
44 #pragma mark Protocoll Methods
47 return NSMakeSize(3.0, 3.0);