Java Doc for MouseWheelZoom.java in  » 6.0-JDK-Modules » java-3d » com » sun » j3d » utils » behaviors » mouse » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » java 3d » com.sun.j3d.utils.behaviors.mouse 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   javax.media.j3d.SceneGraphObject
      javax.media.j3d.Node
         javax.media.j3d.Leaf
            javax.media.j3d.Behavior
               com.sun.j3d.utils.behaviors.mouse.MouseBehavior
                  com.sun.j3d.utils.behaviors.mouse.MouseWheelZoom

MouseWheelZoom
public class MouseWheelZoom extends MouseBehavior (Code)
MouseWheelZoom is a Java3D behavior object that lets users control the Z axis translation of an object via mouse wheel.
since:
   Java 3D 1.3.2


Field Summary
 Vector3dtranslation
    
 doublez_factor
    

Constructor Summary
public  MouseWheelZoom(TransformGroup transformGroup)
     Creates a zoom behavior given the transform group.
public  MouseWheelZoom()
     Creates a default mouse zoom behavior.
public  MouseWheelZoom(int flags)
     Creates a zoom behavior.
public  MouseWheelZoom(Component c)
     Creates a zoom behavior that uses AWT listeners and behavior posts rather than WakeupOnAWTEvent.
public  MouseWheelZoom(Component c, TransformGroup transformGroup)
     Creates a zoom behavior that uses AWT listeners and behavior posts rather than WakeupOnAWTEvent.
public  MouseWheelZoom(Component c, int flags)
     Creates a zoom behavior that uses AWT listeners and behavior posts rather than WakeupOnAWTEvent.

Method Summary
 voiddoProcess(MouseEvent evt)
    
public  doublegetFactor()
     Return the y-axis movement multipler.
public  voidinitialize()
    
public  voidprocessStimulus(Enumeration criteria)
    
public  voidsetFactor(double factor)
     Set the wheel units movement multipler with factor.
public  voidsetupCallback(MouseBehaviorCallback callback)
    
public  voidtransformChanged(Transform3D transform)
    

Field Detail
translation
Vector3d translation(Code)



z_factor
double z_factor(Code)




Constructor Detail
MouseWheelZoom
public MouseWheelZoom(TransformGroup transformGroup)(Code)
Creates a zoom behavior given the transform group.
Parameters:
  transformGroup - The transformGroup to operate on.



MouseWheelZoom
public MouseWheelZoom()(Code)
Creates a default mouse zoom behavior.



MouseWheelZoom
public MouseWheelZoom(int flags)(Code)
Creates a zoom behavior. Note that this behavior still needs a transform group to work on (use setTransformGroup(tg)) and the transform group must add this behavior.
Parameters:
  flags -



MouseWheelZoom
public MouseWheelZoom(Component c)(Code)
Creates a zoom behavior that uses AWT listeners and behavior posts rather than WakeupOnAWTEvent. The behavior is added to the specified Component. A null component can be passed to specify the behavior should use listeners. Components can then be added to the behavior with the addListener(Component c) method.
Parameters:
  c - The Component to add the MouseListenerand MouseMotionListener to.
since:
   Java 3D 1.3.2



MouseWheelZoom
public MouseWheelZoom(Component c, TransformGroup transformGroup)(Code)
Creates a zoom behavior that uses AWT listeners and behavior posts rather than WakeupOnAWTEvent. The behaviors is added to the specified Component and works on the given TransformGroup.
Parameters:
  c - The Component to add the MouseListener andMouseMotionListener to. A null component can be passed to specifythe behavior should use listeners. Components can then be addedto the behavior with the addListener(Component c) method.
Parameters:
  transformGroup - The TransformGroup to operate on.
since:
   Java 3D 1.3.2



MouseWheelZoom
public MouseWheelZoom(Component c, int flags)(Code)
Creates a zoom behavior that uses AWT listeners and behavior posts rather than WakeupOnAWTEvent. The behavior is added to the specified Component. A null component can be passed to specify the behavior should use listeners. Components can then be added to the behavior with the addListener(Component c) method. Note that this behavior still needs a transform group to work on (use setTransformGroup(tg)) and the transform group must add this behavior.
Parameters:
  flags - interesting flags (wakeup conditions).
since:
   Java 3D 1.3.2




Method Detail
doProcess
void doProcess(MouseEvent evt)(Code)



getFactor
public double getFactor()(Code)
Return the y-axis movement multipler.



initialize
public void initialize()(Code)



processStimulus
public void processStimulus(Enumeration criteria)(Code)



setFactor
public void setFactor(double factor)(Code)
Set the wheel units movement multipler with factor.



setupCallback
public void setupCallback(MouseBehaviorCallback callback)(Code)
The transformChanged method in the callback class will be called every time the transform is updated



transformChanged
public void transformChanged(Transform3D transform)(Code)
Users can overload this method which is called every time the Behavior updates the transform Default implementation does nothing



Fields inherited from com.sun.j3d.utils.behaviors.mouse.MouseBehavior
final public static int INVERT_INPUT(Code)(Java Doc)
final public static int MANUAL_WAKEUP(Code)(Java Doc)
protected boolean buttonPress(Code)(Java Doc)
protected Transform3D currXform(Code)(Java Doc)
protected boolean enable(Code)(Java Doc)
protected int flags(Code)(Java Doc)
protected boolean invert(Code)(Java Doc)
protected WakeupOr mouseCriterion(Code)(Java Doc)
protected WakeupCriterion[] mouseEvents(Code)(Java Doc)
protected LinkedList mouseq(Code)(Java Doc)
protected boolean reset(Code)(Java Doc)
protected TransformGroup transformGroup(Code)(Java Doc)
protected Transform3D transformX(Code)(Java Doc)
protected Transform3D transformY(Code)(Java Doc)
protected boolean wakeUp(Code)(Java Doc)
protected int x_lasty_last(Code)(Java Doc)
protected int xy(Code)(Java Doc)

Methods inherited from com.sun.j3d.utils.behaviors.mouse.MouseBehavior
public void addListener(Component c)(Code)(Java Doc)
public TransformGroup getTransformGroup()(Code)(Java Doc)
public void initialize()(Code)(Java Doc)
public void mouseClicked(MouseEvent e)(Code)(Java Doc)
public void mouseDragged(MouseEvent e)(Code)(Java Doc)
public void mouseEntered(MouseEvent e)(Code)(Java Doc)
public void mouseExited(MouseEvent e)(Code)(Java Doc)
public void mouseMoved(MouseEvent e)(Code)(Java Doc)
public void mousePressed(MouseEvent e)(Code)(Java Doc)
public void mouseReleased(MouseEvent e)(Code)(Java Doc)
public void mouseWheelMoved(MouseWheelEvent e)(Code)(Java Doc)
public void processMouseEvent(MouseEvent evt)(Code)(Java Doc)
abstract public void processStimulus(Enumeration criteria)(Code)(Java Doc)
public void setEnable(boolean state)(Code)(Java Doc)
public void setTransformGroup(TransformGroup transformGroup)(Code)(Java Doc)
public void wakeup()(Code)(Java Doc)

Methods inherited from javax.media.j3d.Behavior
public boolean getEnable()(Code)(Java Doc)
public static int getNumSchedulingIntervals()(Code)(Java Doc)
public BoundingLeaf getSchedulingBoundingLeaf()(Code)(Java Doc)
public Bounds getSchedulingBounds()(Code)(Java Doc)
public int getSchedulingInterval()(Code)(Java Doc)
protected View getView()(Code)(Java Doc)
protected WakeupCondition getWakeupCondition()(Code)(Java Doc)
abstract public void initialize()(Code)(Java Doc)
public void postId(int postId)(Code)(Java Doc)
abstract public void processStimulus(Enumeration criteria)(Code)(Java Doc)
public void setEnable(boolean state)(Code)(Java Doc)
public void setSchedulingBoundingLeaf(BoundingLeaf region)(Code)(Java Doc)
public void setSchedulingBounds(Bounds region)(Code)(Java Doc)
public void setSchedulingInterval(int schedulingInterval)(Code)(Java Doc)
public void updateNodeReferences(NodeReferenceTable referenceTable)(Code)(Java Doc)
protected void wakeupOn(WakeupCondition criteria)(Code)(Java Doc)


Fields inherited from javax.media.j3d.Node
final public static int ALLOW_AUTO_COMPUTE_BOUNDS_READ(Code)(Java Doc)
final public static int ALLOW_AUTO_COMPUTE_BOUNDS_WRITE(Code)(Java Doc)
final public static int ALLOW_BOUNDS_READ(Code)(Java Doc)
final public static int ALLOW_BOUNDS_WRITE(Code)(Java Doc)
final public static int ALLOW_COLLIDABLE_READ(Code)(Java Doc)
final public static int ALLOW_COLLIDABLE_WRITE(Code)(Java Doc)
final public static int ALLOW_LOCALE_READ(Code)(Java Doc)
final public static int ALLOW_LOCAL_TO_VWORLD_READ(Code)(Java Doc)
final public static int ALLOW_PARENT_READ(Code)(Java Doc)
final public static int ALLOW_PICKABLE_READ(Code)(Java Doc)
final public static int ALLOW_PICKABLE_WRITE(Code)(Java Doc)
final public static int ENABLE_COLLISION_REPORTING(Code)(Java Doc)
final public static int ENABLE_PICK_REPORTING(Code)(Java Doc)

Methods inherited from javax.media.j3d.Node
public Node cloneNode(boolean forceDuplicate)(Code)(Java Doc)
public Node cloneTree()(Code)(Java Doc)
public Node cloneTree(boolean forceDuplicate)(Code)(Java Doc)
public Node cloneTree(boolean forceDuplicate, boolean allowDanglingReferences)(Code)(Java Doc)
public Node cloneTree(NodeReferenceTable referenceTable)(Code)(Java Doc)
public Node cloneTree(NodeReferenceTable referenceTable, boolean forceDuplicate)(Code)(Java Doc)
public Node cloneTree(NodeReferenceTable referenceTable, boolean forceDuplicate, boolean allowDanglingReferences)(Code)(Java Doc)
public void duplicateNode(Node originalNode, boolean forceDuplicate)(Code)(Java Doc)
public Bounds getBounds()(Code)(Java Doc)
public boolean getBoundsAutoCompute()(Code)(Java Doc)
public boolean getCollidable()(Code)(Java Doc)
public void getLocalToVworld(Transform3D t)(Code)(Java Doc)
public void getLocalToVworld(SceneGraphPath path, Transform3D t)(Code)(Java Doc)
public Locale getLocale()(Code)(Java Doc)
public Node getParent()(Code)(Java Doc)
public boolean getPickable()(Code)(Java Doc)
public void setBounds(Bounds bounds)(Code)(Java Doc)
public void setBoundsAutoCompute(boolean autoCompute)(Code)(Java Doc)
public void setCollidable(boolean collidable)(Code)(Java Doc)
public void setPickable(boolean pickable)(Code)(Java Doc)

Methods inherited from javax.media.j3d.SceneGraphObject
final public void clearCapability(int bit)(Code)(Java Doc)
final public void clearCapabilityIsFrequent(int bit)(Code)(Java Doc)
protected void duplicateSceneGraphObject(SceneGraphObject originalNode)(Code)(Java Doc)
final public boolean getCapability(int bit)(Code)(Java Doc)
final public boolean getCapabilityIsFrequent(int bit)(Code)(Java Doc)
public String getName()(Code)(Java Doc)
public Object getUserData()(Code)(Java Doc)
final public boolean isCompiled()(Code)(Java Doc)
final public boolean isLive()(Code)(Java Doc)
final public void setCapability(int bit)(Code)(Java Doc)
final public void setCapabilityIsFrequent(int bit)(Code)(Java Doc)
public void setName(String name)(Code)(Java Doc)
public void setUserData(Object userData)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public void updateNodeReferences(NodeReferenceTable referenceTable)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.