v/thirdparty/sokol/sokol_app2.h

41 lines
569 B
C
Raw Normal View History

2021-01-23 10:25:40 +01:00
@implementation MyView2
int xx = 0;
2021-01-23 10:25:40 +01:00
// Alternative drawRect which calls a frame function with native Cocoa calls
- (void)drawRect:(NSRect)rect {
puts("drawRect()");
if (xx == 0) {
_sapp_call_init();
xx = 1;
}
_sapp_call_frame_native();
2021-01-23 10:25:40 +01:00
}
//- (BOOL)isOpaque {
// return NO;
//}
- (BOOL)canBecomeKeyView {
return YES;
}
- (BOOL)acceptsFirstResponder {
return YES;
}
2021-02-17 06:56:58 +01:00
// - (void)mouseExited:(NSEvent*)event {
// }
2021-01-23 10:25:40 +01:00
2021-02-17 06:56:58 +01:00
// - (void)mouseDown:(NSEvent*)event {
// }
2021-01-23 10:25:40 +01:00
- (BOOL)acceptsFirstMouse:(NSEvent *)event {
return YES;
}
@end