Fixed keyboard events not working on OS X.
This commit is contained in:
parent
2a80888cb8
commit
dec34670bb
|
@ -5,6 +5,13 @@ static BOOL canQuit = NO;
|
||||||
|
|
||||||
@implementation applicationClass
|
@implementation applicationClass
|
||||||
|
|
||||||
|
- (void)sendEvent:(NSEvent *)e
|
||||||
|
{
|
||||||
|
if (sendAreaEvents(e) != 0)
|
||||||
|
return;
|
||||||
|
[super sendEvent:e];
|
||||||
|
}
|
||||||
|
|
||||||
// hey look! we're overriding terminate:!
|
// hey look! we're overriding terminate:!
|
||||||
// we're going to make sure we can go back to main() whether Cocoa likes it or not!
|
// we're going to make sure we can go back to main() whether Cocoa likes it or not!
|
||||||
// and just how are we going to do that, hm?
|
// and just how are we going to do that, hm?
|
||||||
|
|
|
@ -19,7 +19,7 @@ static void handlerDraw(uiAreaHandler *a, uiArea *area, uiAreaDrawParams *p)
|
||||||
|
|
||||||
static void handlerMouseEvent(uiAreaHandler *a, uiArea *area, uiAreaMouseEvent *e)
|
static void handlerMouseEvent(uiAreaHandler *a, uiArea *area, uiAreaMouseEvent *e)
|
||||||
{
|
{
|
||||||
printf("mouse (%g,%g):(%g,%g) down:%d up:%d count:%d mods:%x held:%" PRIu64 "x\n",
|
printf("mouse (%g,%g):(%g,%g) down:%d up:%d count:%d mods:%x held:0x%" PRIX64 "\n",
|
||||||
e->X,
|
e->X,
|
||||||
e->Y,
|
e->Y,
|
||||||
e->AreaWidth,
|
e->AreaWidth,
|
||||||
|
|
Loading…
Reference in New Issue