Catakig/Source/Misc/MU-View.m

14 lines
409 B
Objective-C

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