SDK :
- Fixed focus issue in the sdk (part 1) git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@9607 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
parent
3f8d7f0807
commit
737b765cb0
@ -27,6 +27,7 @@ package com.jme3.gde.core.scene.controller;
|
|||||||
import com.jme3.app.Application;
|
import com.jme3.app.Application;
|
||||||
import com.jme3.app.state.AbstractAppState;
|
import com.jme3.app.state.AbstractAppState;
|
||||||
import com.jme3.app.state.AppStateManager;
|
import com.jme3.app.state.AppStateManager;
|
||||||
|
import com.jme3.gde.core.Installer;
|
||||||
import com.jme3.gde.core.scene.SceneApplication;
|
import com.jme3.gde.core.scene.SceneApplication;
|
||||||
import com.jme3.gde.core.scene.controller.toolbars.CameraToolbar;
|
import com.jme3.gde.core.scene.controller.toolbars.CameraToolbar;
|
||||||
import com.jme3.gde.core.sceneviewer.SceneViewerTopComponent;
|
import com.jme3.gde.core.sceneviewer.SceneViewerTopComponent;
|
||||||
@ -50,6 +51,7 @@ import com.jme3.renderer.RenderManager;
|
|||||||
import java.util.concurrent.Callable;
|
import java.util.concurrent.Callable;
|
||||||
import java.util.concurrent.ExecutionException;
|
import java.util.concurrent.ExecutionException;
|
||||||
import org.openide.util.Exceptions;
|
import org.openide.util.Exceptions;
|
||||||
|
import org.openide.util.NbPreferences;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@ -418,6 +420,7 @@ public abstract class AbstractCameraController extends AbstractAppState implemen
|
|||||||
public void onMouseButtonEvent(MouseButtonEvent mbe) {
|
public void onMouseButtonEvent(MouseButtonEvent mbe) {
|
||||||
//on a click release we request the focus for the top component
|
//on a click release we request the focus for the top component
|
||||||
//this allow netbeans to catch keyEvents and trigger actions according to keymapping
|
//this allow netbeans to catch keyEvents and trigger actions according to keymapping
|
||||||
|
if ("true".equals(NbPreferences.forModule(Installer.class).get("use_lwjgl_canvas", "false"))) {
|
||||||
if (mbe.isReleased()) {
|
if (mbe.isReleased()) {
|
||||||
java.awt.EventQueue.invokeLater(new Runnable() {
|
java.awt.EventQueue.invokeLater(new Runnable() {
|
||||||
|
|
||||||
@ -426,6 +429,7 @@ public abstract class AbstractCameraController extends AbstractAppState implemen
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,7 +24,6 @@
|
|||||||
*/
|
*/
|
||||||
package com.jme3.gde.core.sceneviewer;
|
package com.jme3.gde.core.sceneviewer;
|
||||||
|
|
||||||
import com.jme3.gde.core.Installer;
|
|
||||||
import com.jme3.gde.core.filters.FilterExplorerTopComponent;
|
import com.jme3.gde.core.filters.FilterExplorerTopComponent;
|
||||||
import com.jme3.gde.core.scene.SceneApplication;
|
import com.jme3.gde.core.scene.SceneApplication;
|
||||||
import com.jme3.gde.core.scene.SceneRequest;
|
import com.jme3.gde.core.scene.SceneRequest;
|
||||||
@ -49,7 +48,6 @@ import org.openide.awt.UndoRedo;
|
|||||||
import org.openide.util.Exceptions;
|
import org.openide.util.Exceptions;
|
||||||
import org.openide.util.HelpCtx;
|
import org.openide.util.HelpCtx;
|
||||||
import org.openide.util.Lookup;
|
import org.openide.util.Lookup;
|
||||||
import org.openide.util.NbPreferences;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Top component which displays something.
|
* Top component which displays something.
|
||||||
@ -80,6 +78,7 @@ public final class SceneViewerTopComponent extends TopComponent {
|
|||||||
app = SceneApplication.getApplication();
|
app = SceneApplication.getApplication();
|
||||||
// oglCanvas = ((JmeCanvasContext) app.getContext()).getCanvas();
|
// oglCanvas = ((JmeCanvasContext) app.getContext()).getCanvas();
|
||||||
oglCanvas = app.getMainPanel();
|
oglCanvas = app.getMainPanel();
|
||||||
|
oglCanvas.setFocusable(false);
|
||||||
oGLPanel.add(oglCanvas);
|
oGLPanel.add(oglCanvas);
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
@ -92,7 +91,7 @@ public final class SceneViewerTopComponent extends TopComponent {
|
|||||||
|
|
||||||
//We add a mouse wheel listener to the top conmponent in order to correctly dispatch the event ot the cam controller
|
//We add a mouse wheel listener to the top conmponent in order to correctly dispatch the event ot the cam controller
|
||||||
//the oGLPanel may naver have the focus.
|
//the oGLPanel may naver have the focus.
|
||||||
if ("true".equals(NbPreferences.forModule(Installer.class).get("use_lwjgl_canvas", "false"))) {
|
// if ("true".equals(NbPreferences.forModule(Installer.class).get("use_lwjgl_canvas", "false"))) {
|
||||||
addMouseWheelListener(new MouseWheelListener() {
|
addMouseWheelListener(new MouseWheelListener() {
|
||||||
|
|
||||||
public void mouseWheelMoved(final MouseWheelEvent e) {
|
public void mouseWheelMoved(final MouseWheelEvent e) {
|
||||||
@ -103,7 +102,9 @@ public final class SceneViewerTopComponent extends TopComponent {
|
|||||||
if (e.getWheelRotation() < 0) {
|
if (e.getWheelRotation() < 0) {
|
||||||
action = "MouseWheel";
|
action = "MouseWheel";
|
||||||
}
|
}
|
||||||
|
if (app.getActiveCameraController() != null) {
|
||||||
app.getActiveCameraController().onAnalog(action, e.getWheelRotation(), 0);
|
app.getActiveCameraController().onAnalog(action, e.getWheelRotation(), 0);
|
||||||
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -144,7 +145,7 @@ public final class SceneViewerTopComponent extends TopComponent {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
//}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user