mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
e893421dba
The previous view might be nil, which would result in the new view not getting a context.
20 lines
308 B
Objective-C
20 lines
308 B
Objective-C
#ifndef __qwaq_proxyview_h
|
|
#define __qwaq_proxyview_h
|
|
|
|
#include "qwaq-view.h"
|
|
|
|
@class Group;
|
|
|
|
@interface ProxyView : Object
|
|
{
|
|
View *view;
|
|
Group *owner;
|
|
}
|
|
-initWithView:(View *) view;
|
|
-setView: (View *) view;
|
|
@end
|
|
|
|
@interface ProxyView (View) <View, TextContext>
|
|
@end
|
|
|
|
#endif//__qwaq_proxyview_h
|