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