Home | History | Annotate | Download | only in Plugins

Lines Matching full:where

51     GetGlobalMouse(&carbonEvent->where);
52 carbonEvent->where.h = static_cast<short>(carbonEvent->where.h * HIGetScaleFactor());
53 carbonEvent->where.v = static_cast<short>(carbonEvent->where.v * HIGetScaleFactor());
91 carbonEvent->where.h = static_cast<short>(carbonEvent->where.h * HIGetScaleFactor());
92 carbonEvent->where.v = static_cast<short>(carbonEvent->where.v * HIGetScaleFactor());
96 NSPoint where = [[cocoaEvent window] convertBaseToScreen:[cocoaEvent locationInWindow]];
101 carbonEvent->where.h = (short)where.x;
102 carbonEvent->where.v = (short)(NSMaxY([[[NSScreen screens] objectAtIndex:0] frame]) - where.y);
119 event.where.v = -1;
120 event.where.h = -1;
151 LOG(PluginEvents, "NPP_HandleEvent(mouseDown): %d pt.v=%d, pt.h=%d", acceptedEvent, event.where.v, event.where.h);
164 LOG(PluginEvents, "NPP_HandleEvent(mouseUp): %d pt.v=%d, pt.h=%d", acceptedEvent, event.where.v, event.where.h);