quakeforge/tools/Forge/Bundles/MapEdit/TextureView.h
Bill Currie fb65cd2b44 Cache needed fonts.
Obtaining a font has become rather expensive in recent gnustep, so cache
fonts, obtaining new ones only when needed rather than every redraw. Makes
things snappy again :)
2011-04-16 12:17:23 +09:00

17 lines
242 B
Objective-C

#ifndef TextureView_h
#define TextureView_h
#include <AppKit/AppKit.h>
@interface TextureView: NSView
{
NSFont *font;
id parent_i;
int deselectIndex;
}
- (id) setParent: (id)from;
- (id) deselect;
@end
#endif // TextureView_h