mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
dbb3802740
This fixes the broken source window on file change.
42 lines
657 B
R
42 lines
657 B
R
#include "qwaq-proxyview.h"
|
|
|
|
@implementation ProxyView
|
|
- (void) forward: (SEL) sel : (@va_list) args
|
|
{
|
|
if (!view) {
|
|
return;
|
|
}
|
|
obj_msg_sendv (view, sel, args);
|
|
}
|
|
|
|
-initWithView:(View *) view
|
|
{
|
|
if (!(self = [super init])) {
|
|
return nil;
|
|
}
|
|
self.view = view;
|
|
return self;
|
|
}
|
|
|
|
-setView:(View *) view
|
|
{
|
|
int state = [self.view state];
|
|
id<TextContext> context = [self.view context];
|
|
|
|
if (state & sfInFocus) {
|
|
[self.view loseFocus];
|
|
}
|
|
[self.view hide];
|
|
[self.view setContext:nil];
|
|
|
|
self.view = view;
|
|
[view setContext:context];
|
|
if (state & sfDrawn) {
|
|
[view draw];
|
|
}
|
|
if (state & sfInFocus) {
|
|
[view takeFocus];
|
|
}
|
|
return self;
|
|
}
|
|
@end
|