Java Code Examples for com.jogamp.newt.event.MouseEvent#isControlDown()
The following examples show how to use
com.jogamp.newt.event.MouseEvent#isControlDown() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: MouseControl.java From clearvolume with GNU Lesser General Public License v3.0 | 6 votes |
@Override public void mousePressed(MouseEvent pMouseEvent) { if (mRenderer.notifyEyeRayListeners(mRenderer, pMouseEvent)) return; if (!pMouseEvent.isMetaDown() && !pMouseEvent.isShiftDown() && !pMouseEvent.isControlDown() && pMouseEvent.isButtonDown(1)) { final float lMouseX = pMouseEvent.getX(); final float lMouseY = pMouseEvent.getY(); mArcBall.setBounds(mRenderer.getViewportWidth(), mRenderer.getViewportHeight()); mArcBall.setCurrent(mRenderer.getQuaternion()); mArcBall.click(lMouseX, lMouseY); } mRenderer.getAdaptiveLODController() .notifyUserInteractionInProgress(); }
Example 2
Source File: GPUUISceneGLListener0A.java From jogl-samples with MIT License | 6 votes |
@Override public void mouseWheelMoved(final MouseEvent e) { final Object attachment = e.getAttachment(); if( attachment instanceof UIShape.PointerEventInfo ) { final UIShape.PointerEventInfo shapeEvent = (UIShape.PointerEventInfo)attachment; final boolean isOnscreen = PointerClass.Onscreen == e.getPointerType(0).getPointerClass(); if( 0 == ( ~InputEvent.BUTTONALL_MASK & e.getModifiers() ) && !isOnscreen ) { // offscreen vertical mouse wheel zoom final float tz = 8f*e.getRotation()[1]; // vertical: wheel System.err.println("Rotate.Zoom.W: "+tz); shapeEvent.shape.translate(0f, 0f, tz); } else if( isOnscreen || e.isControlDown() ) { final float[] rot = VectorUtil.scaleVec3(e.getRotation(), e.getRotation(), FloatUtil.PI / 180.0f); if( isOnscreen ) { System.err.println("XXX: "+e); // swap axis for onscreen rotation matching natural feel final float tmp = rot[0]; rot[0] = rot[1]; rot[1] = tmp; VectorUtil.scaleVec3(rot, rot, 2f); } shapeEvent.shape.getRotation().rotateByEuler( rot ); } } }
Example 3
Source File: MouseControl.java From clearvolume with GNU Lesser General Public License v3.0 | 5 votes |
protected void handleMoveLight(final MouseEvent pMouseEvent) { if (!mMoveLightMode && mRenderer.getRenderAlgorithm(mRenderer.getCurrentRenderLayerIndex()) == RenderAlgorithm.IsoSurface && !pMouseEvent.isMetaDown() && !pMouseEvent.isShiftDown() && !pMouseEvent.isControlDown() && pMouseEvent.isAltDown() && !pMouseEvent.isAltGraphDown() && !pMouseEvent.isButtonDown(1)) { moveLight(pMouseEvent); } }
Example 4
Source File: MouseControl.java From clearvolume with GNU Lesser General Public License v3.0 | 5 votes |
protected void handleArcBall(final MouseEvent pMouseEvent) { if (!pMouseEvent.isMetaDown() && !pMouseEvent.isShiftDown() && !pMouseEvent.isAltDown() && !pMouseEvent.isControlDown() && pMouseEvent.isButtonDown(1)) { final float lMouseX = pMouseEvent.getX(); final float lMouseY = pMouseEvent.getY(); mArcBall.setBounds(mRenderer.getViewportWidth(), mRenderer.getViewportHeight()); mRenderer.setQuaternion(mArcBall.drag(lMouseX, lMouseY)); } }
Example 5
Source File: MouseControl.java From clearvolume with GNU Lesser General Public License v3.0 | 5 votes |
private void handleTranslation(final MouseEvent pMouseEvent) { final int dx = pMouseEvent.getX() - mSavedMouseX; final int dy = pMouseEvent.getY() - mSavedMouseY; // If the right button is held down, translate the object if (!pMouseEvent.isMetaDown() && !pMouseEvent.isControlDown() && (pMouseEvent.isButtonDown(3))) { mRenderer.addTranslationX(dx / 100.0f); mRenderer.addTranslationY(-dy / 100.0f); } setSavedMousePosition(pMouseEvent); }
Example 6
Source File: MouseControl.java From clearvolume with GNU Lesser General Public License v3.0 | 5 votes |
/** * Sets the transfer function range. * * @param pMouseEvent * mouse event */ public void handleAlphaBlending(final MouseEvent pMouseEvent) { if (mRenderer.getRenderAlgorithm(mRenderer.getCurrentRenderLayerIndex()) == RenderAlgorithm.MaxProjection && !pMouseEvent.isMetaDown() && !pMouseEvent.isShiftDown() && !pMouseEvent.isControlDown() && pMouseEvent.isAltDown() && !pMouseEvent.isAltGraphDown() && pMouseEvent.isButtonDown(1)) { final double lWidth = mRenderer.getViewportWidth(); final double nx = (pMouseEvent.getX()) / lWidth; final double lAlpha = 16 * pow(nx,2); mRenderer.setAlphaBlending(mRenderer.getCurrentRenderLayerIndex(), lAlpha); // System.out.println(lAlpha); } /* System.out.println("_____________________________________"); System.out.println("isAltDown=" + pMouseEvent.isAltDown()); System.out.println("isAltGraphDown=" + pMouseEvent.isAltGraphDown()); System.out.println("isControlDown=" + pMouseEvent.isControlDown()); System.out.println("isMetaDown=" + pMouseEvent.isMetaDown()); System.out.println("isShiftDown=" + pMouseEvent.isShiftDown()); /**/ }