diff options
author | cjcdoomed <[email protected]> | 2005-05-06 05:00:46 +0000 |
---|---|---|
committer | cjcdoomed <[email protected]> | 2005-05-06 05:00:46 +0000 |
commit | 8329b4675a3018682d0c6416e7845fc034bb9dd3 (patch) | |
tree | 8545357a42fd64ee3379a3b403deede6aff94c16 | |
parent | d80501af2cede869da2614d1f39663e16324013d (diff) |
Issue: OS X Nightly build not compiling
Obtained from:
Submitted by: Chris Cooper
Reviewed by:
git-svn-id: file:///home/sven/projects/JOGL/git-svn/svn-server-sync/jinput/trunk@91 e343933a-64c8-49c5-92b1-88f2ce3e89e8
-rw-r--r-- | plugins/OSX/src/java/net/java/games/input/OSXKeyboard.java | 2 | ||||
-rw-r--r-- | plugins/OSX/src/java/net/java/games/input/OSXMouse.java | 18 |
2 files changed, 10 insertions, 10 deletions
diff --git a/plugins/OSX/src/java/net/java/games/input/OSXKeyboard.java b/plugins/OSX/src/java/net/java/games/input/OSXKeyboard.java index 4809a75..c717f8a 100644 --- a/plugins/OSX/src/java/net/java/games/input/OSXKeyboard.java +++ b/plugins/OSX/src/java/net/java/games/input/OSXKeyboard.java @@ -222,7 +222,7 @@ public class OSXKeyboard extends StandardKeyboard implements InputController */ protected boolean isKeyPressed(Keyboard.Key key) { - KeyID id = (KeyID)key.getIdentifier(); + Component.Identifier.Key id = (Component.Identifier.Key) key.getIdentifier(); int keyIndex = id.getKeyIndex(); // get that key code out of the crosstable and find the proper InputControllerElement/button for that key diff --git a/plugins/OSX/src/java/net/java/games/input/OSXMouse.java b/plugins/OSX/src/java/net/java/games/input/OSXMouse.java index 31e683e..2abeb67 100644 --- a/plugins/OSX/src/java/net/java/games/input/OSXMouse.java +++ b/plugins/OSX/src/java/net/java/games/input/OSXMouse.java @@ -105,17 +105,17 @@ public class OSXMouse extends Mouse implements InputController public void addXAxis( InputControllerElement element ) { - x = new BallAxis( Axis.Identifier.X, element ); + x = new BallAxis(Component.Identifier.Axis.X, element ); } public void addYAxis( InputControllerElement element ) { - y = new BallAxis( Axis.Identifier.Y, element ); + y = new BallAxis( Component.Identifier.Axis.Y, element ); } public void addWheelAxis( InputControllerElement element ) { - wheel = new BallAxis( Axis.Identifier.SLIDER, element ); + wheel = new BallAxis( Component.Identifier.Axis.SLIDER, element ); } } @@ -137,15 +137,15 @@ public class OSXMouse extends Mouse implements InputController { if ( left == null ) { - left = new ButtonImpl( ButtonID.LEFT, element ); + left = new ButtonImpl( Component.Identifier.Button.LEFT, element ); } else if ( right == null ) { - right = new ButtonImpl( ButtonID.RIGHT, element ); + right = new ButtonImpl( Component.Identifier.Button.RIGHT, element ); } else if ( middle == null ) { - middle = new ButtonImpl( ButtonID.MIDDLE, element ); + middle = new ButtonImpl( Component.Identifier.Button.MIDDLE, element ); } } } @@ -164,7 +164,7 @@ public class OSXMouse extends Mouse implements InputController * @param id An ID of a button to create an obejct to represent. * */ - public ButtonImpl(ButtonID id, InputControllerElement element) + public ButtonImpl(Component.Identifier.Button id, InputControllerElement element) { super(id.getName(), id); this.hidCookie = element.getHidCookie(); @@ -199,7 +199,7 @@ public class OSXMouse extends Mouse implements InputController /** * Mouse ball axis implementation */ - class BallAxis extends AbstractAxis + class BallAxis extends AbstractComponent { private long hidCookie; @@ -208,7 +208,7 @@ public class OSXMouse extends Mouse implements InputController /** Public constructor * @param id An ID for a mouse axis to create an object to represent. */ - public BallAxis(Identifier id, InputControllerElement element) + public BallAxis(Component.Identifier.Axis id, InputControllerElement element) { super(id.getName(), id); |