/* NSBox subclass that just fills itself with white Original Source: (See copyright notice at ) */ @interface WhiteBox : NSBox @end @implementation WhiteBox - (void)drawRect:(NSRect)rect { [[NSColor whiteColor] set]; NSRectFill(rect); [super drawRect:rect]; } @end