Catakig/Source/Misc/MU-View.m

14 lines
409 B
Mathematica
Raw Normal View History

2006-10-17 22:05:05 +00:00
#import "MyUtils.h"
@implementation NSView (MyUtils)
//---------------------------------------------------------------------------
//+ (void)FillCurrentViewWithColor:(NSColor*)color
// { [color set]; [NSBezierPath fillRect:[self bounds]]; }
- (BOOL)MakeFirstResponder
{ return [[self window] makeFirstResponder:self]; }
//---------------------------------------------------------------------------
@end