This is STWindowCategory.m in view mode; [Download] [Up]
#import "STWindowCategory.h"
@implementation Window(enable_disable)
- disableDisplayFlush
{
[self disableFlushWindow];
[self disableDisplay];
return self;
}
- enableAndDisplayFlush
{ [self reenableDisplay];
[self display];
[self reenableFlushWindow];
[self flushWindow];
return self;
}
@end
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.