Java Doc for Control.java in  » Database-Client » prefuse » prefuse » controls » 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 » Database Client » prefuse » prefuse.controls 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


prefuse.controls.Control

All known Subclasses:   prefuse.controls.ControlAdapter,
Control
public interface Control extends EventListener,MouseListener,MouseMotionListener,MouseWheelListener,KeyListener(Code)
Listener interface for processing user interface events on a Display.
author:
   alan newberger
author:
   jeffrey heer


Field Summary
final public static  intLEFT_MOUSE_BUTTON
    
final public static  intMIDDLE_MOUSE_BUTTON
    
final public static  intRIGHT_MOUSE_BUTTON
    


Method Summary
public  booleanisEnabled()
     Indicates if this Control is currently enabled.
public  voiditemClicked(VisualItem item, MouseEvent e)
     Invoked when the mouse button has been clicked (pressed and released) on a VisualItem.
public  voiditemDragged(VisualItem item, MouseEvent e)
     Invoked when a mouse button is pressed on a VisualItem and then dragged.
public  voiditemEntered(VisualItem item, MouseEvent e)
     Invoked when the mouse enters a VisualItem.
public  voiditemExited(VisualItem item, MouseEvent e)
     Invoked when the mouse exits a VisualItem.
public  voiditemKeyPressed(VisualItem item, KeyEvent e)
     Invoked when a key has been pressed, while the mouse is over a VisualItem.
public  voiditemKeyReleased(VisualItem item, KeyEvent e)
     Invoked when a key has been released, while the mouse is over a VisualItem.
public  voiditemKeyTyped(VisualItem item, KeyEvent e)
     Invoked when a key has been typed, while the mouse is over a VisualItem.
public  voiditemMoved(VisualItem item, MouseEvent e)
     Invoked when the mouse cursor has been moved onto a VisualItem but no buttons have been pushed.
public  voiditemPressed(VisualItem item, MouseEvent e)
     Invoked when a mouse button has been pressed on a VisualItem.
public  voiditemReleased(VisualItem item, MouseEvent e)
     Invoked when a mouse button has been released on a VisualItem.
public  voiditemWheelMoved(VisualItem item, MouseWheelEvent e)
     Invoked when the mouse wheel is rotated while the mouse is over a VisualItem.
public  voidkeyPressed(KeyEvent e)
     Invoked when a key has been pressed, while the mouse is NOT over a VisualItem.
public  voidkeyReleased(KeyEvent e)
     Invoked when a key has been released, while the mouse is NOT over a VisualItem.
public  voidkeyTyped(KeyEvent e)
     Invoked when a key has been typed, while the mouse is NOT over a VisualItem.
public  voidmouseClicked(MouseEvent e)
     Invoked when the mouse button has been clicked (pressed and released) on the Display, but NOT on a VisualItem.
public  voidmouseDragged(MouseEvent e)
     Invoked when a mouse button is pressed on the Display (but NOT a VisualItem) and then dragged.
public  voidmouseEntered(MouseEvent e)
     Invoked when the mouse enters the Display.
public  voidmouseExited(MouseEvent e)
     Invoked when the mouse exits the Display.
public  voidmouseMoved(MouseEvent e)
     Invoked when the mouse cursor has been moved on the Display (but NOT a VisualItem) and no buttons have been pushed.
public  voidmousePressed(MouseEvent e)
     Invoked when a mouse button has been pressed on the Display but NOT on a VisualItem.
public  voidmouseReleased(MouseEvent e)
     Invoked when a mouse button has been released on the Display but NOT on a VisualItem.
public  voidmouseWheelMoved(MouseWheelEvent e)
     Invoked when the mouse wheel is rotated while the mouse is over the Display (but NOT a VisualItem).
public  voidsetEnabled(boolean enabled)
     Sets the enabled status of this control.

Field Detail
LEFT_MOUSE_BUTTON
final public static int LEFT_MOUSE_BUTTON(Code)
Represents the use of the left mouse button



MIDDLE_MOUSE_BUTTON
final public static int MIDDLE_MOUSE_BUTTON(Code)
Represents the use of the middle mouse button



RIGHT_MOUSE_BUTTON
final public static int RIGHT_MOUSE_BUTTON(Code)
Represents the use of the right mouse button





Method Detail
isEnabled
public boolean isEnabled()(Code)
Indicates if this Control is currently enabled. true if the control is enabled, false if disabled



itemClicked
public void itemClicked(VisualItem item, MouseEvent e)(Code)
Invoked when the mouse button has been clicked (pressed and released) on a VisualItem.



itemDragged
public void itemDragged(VisualItem item, MouseEvent e)(Code)
Invoked when a mouse button is pressed on a VisualItem and then dragged.



itemEntered
public void itemEntered(VisualItem item, MouseEvent e)(Code)
Invoked when the mouse enters a VisualItem.



itemExited
public void itemExited(VisualItem item, MouseEvent e)(Code)
Invoked when the mouse exits a VisualItem.



itemKeyPressed
public void itemKeyPressed(VisualItem item, KeyEvent e)(Code)
Invoked when a key has been pressed, while the mouse is over a VisualItem.



itemKeyReleased
public void itemKeyReleased(VisualItem item, KeyEvent e)(Code)
Invoked when a key has been released, while the mouse is over a VisualItem.



itemKeyTyped
public void itemKeyTyped(VisualItem item, KeyEvent e)(Code)
Invoked when a key has been typed, while the mouse is over a VisualItem.



itemMoved
public void itemMoved(VisualItem item, MouseEvent e)(Code)
Invoked when the mouse cursor has been moved onto a VisualItem but no buttons have been pushed.



itemPressed
public void itemPressed(VisualItem item, MouseEvent e)(Code)
Invoked when a mouse button has been pressed on a VisualItem.



itemReleased
public void itemReleased(VisualItem item, MouseEvent e)(Code)
Invoked when a mouse button has been released on a VisualItem.



itemWheelMoved
public void itemWheelMoved(VisualItem item, MouseWheelEvent e)(Code)
Invoked when the mouse wheel is rotated while the mouse is over a VisualItem.



keyPressed
public void keyPressed(KeyEvent e)(Code)
Invoked when a key has been pressed, while the mouse is NOT over a VisualItem.



keyReleased
public void keyReleased(KeyEvent e)(Code)
Invoked when a key has been released, while the mouse is NOT over a VisualItem.



keyTyped
public void keyTyped(KeyEvent e)(Code)
Invoked when a key has been typed, while the mouse is NOT over a VisualItem.



mouseClicked
public void mouseClicked(MouseEvent e)(Code)
Invoked when the mouse button has been clicked (pressed and released) on the Display, but NOT on a VisualItem.



mouseDragged
public void mouseDragged(MouseEvent e)(Code)
Invoked when a mouse button is pressed on the Display (but NOT a VisualItem) and then dragged.



mouseEntered
public void mouseEntered(MouseEvent e)(Code)
Invoked when the mouse enters the Display.



mouseExited
public void mouseExited(MouseEvent e)(Code)
Invoked when the mouse exits the Display.



mouseMoved
public void mouseMoved(MouseEvent e)(Code)
Invoked when the mouse cursor has been moved on the Display (but NOT a VisualItem) and no buttons have been pushed.



mousePressed
public void mousePressed(MouseEvent e)(Code)
Invoked when a mouse button has been pressed on the Display but NOT on a VisualItem.



mouseReleased
public void mouseReleased(MouseEvent e)(Code)
Invoked when a mouse button has been released on the Display but NOT on a VisualItem.



mouseWheelMoved
public void mouseWheelMoved(MouseWheelEvent e)(Code)
Invoked when the mouse wheel is rotated while the mouse is over the Display (but NOT a VisualItem).



setEnabled
public void setEnabled(boolean enabled)(Code)
Sets the enabled status of this control.
Parameters:
  enabled - true to enable the control, false to disable it



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