Home | History | Annotate | Download | only in ports

Lines Matching refs:inEvent

104 static void getparam(EventRef inEvent, OSType name, OSType type, UInt32 size, void* data)
110 status = GetEventParameter(inEvent, name, type, &actualType, size, &actualSize, data);
191 pascal OSStatus SkOSWindow::EventHandler( EventHandlerCallRef inHandler, EventRef inEvent, void* userData )
195 UInt32 wClass = GetEventClass(inEvent);
196 UInt32 wKind = GetEventKind(inEvent);
203 getparam(inEvent, kEventParamMouseLocation, typeQDPoint, sizeof(pt), &pt);
225 getparam(inEvent, kEventParamKeyCode, typeUInt32, sizeof(raw), &raw);
231 getparam(inEvent, kEventParamKeyCode, typeUInt32, sizeof(raw), &raw);
240 getparam(inEvent, kEventParamTextInputSendText, typeUnicodeText, sizeof(uni), &uni);
251 result = GetEventParameter(inEvent,
276 getparam(inEvent, SK_MacEventParamName, SK_MacEventParamName, sizeof(evt), &evt);
277 getparam(inEvent, SK_MacEventSinkIDParamName, SK_MacEventSinkIDParamName, sizeof(sinkID), &sinkID);
286 result = CallNextEventHandler(inHandler, inEvent);