Revision: 54573
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at January 4, 2012 00:56 by tilakapash
Initial Code
- (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView; { // other stuff might happen here if ([self showsFirstResponder]) { // showsFirstResponder is set for us by the NSControl that is drawing us. NSRect focusRingFrame = cellFrame; focusRingFrame.size.height -= 2.0f; [NSGraphicsContextsaveGraphicsState]; NSSetFocusRingStyle(NSFocusRingOnly); [[NSBezierPath bezierPathWithRect: NSInsetRect(focusRingFrame, 4.0f, 4.0f)] fill]; [NSGraphicsContext restoreGraphicsState]; } // other stuff might happen here }
Initial URL
Initial Description
Initial Title
Drawing a standard focus ring inside of a cell's bounds
Initial Tags
Initial Language
Objective C