Home | History | Annotate | Download | only in mac

Lines Matching refs:mouse

169     if (!convertPoint(m_currentMouseEvent->data.mouse.pluginX, m_currentMouseEvent->data.mouse.pluginY, NPCoordinateSpacePlugin, screenX, screenY, NPCoordinateSpaceScreen))
360 // We only want to set the btnState if a mouse button is _not_ down.
373 // Set controlKey if the control key is down or the right mouse button is down.
461 event.data.mouse.modifierFlags = modifierFlags(mouseEvent);
462 event.data.mouse.pluginX = mouseEvent.position().x() - pluginLocation.x();
463 event.data.mouse.pluginY = mouseEvent.position().y() - pluginLocation.y();
464 event.data.mouse.buttonNumber = buttonNumber(mouseEvent.button());
465 event.data.mouse.clickCount = mouseEvent.clickCount();
466 event.data.mouse.deltaX = mouseEvent.deltaX();
467 event.data.mouse.deltaY = mouseEvent.deltaY();
468 event.data.mouse.deltaZ = mouseEvent.deltaZ();
515 // Some plug-ins return false even if the mouse event has been handled.
548 // Some plug-ins return false even if the mouse event has been handled.
568 event.data.mouse.modifierFlags = modifierFlags(wheelEvent);
569 event.data.mouse.pluginX = wheelEvent.position().x() - m_frameRect.x();
570 event.data.mouse.pluginY = wheelEvent.position().y() - m_frameRect.y();
571 event.data.mouse.buttonNumber = 0;
572 event.data.mouse.clickCount = 0;
573 event.data.mouse.deltaX = wheelEvent.delta().width();
574 event.data.mouse.deltaY = wheelEvent.delta().height();
575 event.data.mouse.deltaZ = 0;