Java Doc for ViewportPane.java in  » GIS » udig-1.1 » net » refractions » udig » project » ui » render » displayAdapter » 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 » GIS » udig 1.1 » net.refractions.udig.project.ui.render.displayAdapter 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


net.refractions.udig.project.ui.render.displayAdapter.ViewportPane

All known Subclasses:   net.refractions.udig.project.ui.internal.render.displayAdapter.impl.ViewportPaneSWT,  net.refractions.udig.project.ui.internal.render.displayAdapter.impl.ViewportPaneJava,
ViewportPane
public interface ViewportPane extends IMapDisplay(Code)
The ViewportPane is the display area for a Map.

The default implementation is a java.awt.Pane. It Registers itself with a CompositeRenderer and obtains the image from the CompositeRenderer if the CompositeRenderer is "ready"

  • Models: CompositeRenderer and Viewport
  • View: ViewportPane
  • Control: RenderManager

Viewport is responsible for:

  • Image Creation for CompositeRenderer an renders
  • Listening to redraw requests from CompositeRenderer
  • Isolating everyone from SWT / AWT graphics pipeline

author:
   jeichar
since:
   0.1




Method Summary
public  voidaddDrawCommand(IDrawCommand command)
     Adds a Draw command to the list of draw commands.
public  voidaddMouseListener(MapMouseListener l)
    
public  voidaddMouseMotionListener(MapMouseMotionListener l)
    
public  voidaddMouseWheelListener(MapMouseWheelListener l)
    
public  voidaddPaneListener(IMapDisplayListener listener)
    
public  voiddispose()
    
public  voidenableDrawCommands(boolean enable)
     Switches ViewportPainter to run custom IDrawCommands during map repainting or disable them.
 ControlgetControl()
     Returns the SWT Control that listeners, including drag and drop, can be added to.
 MapEditorgetMapEditor()
     Returns the associated MapEditor object.
 BufferedImageimage(int w, int h)
     Create a image that is compatable with this ViewportPane.
 booleanisDisposed()
    
 booleanisVisible()
     Returns true if the viewportPane component is visible.
public  voidremoveMouseListener(MapMouseListener l)
    
public  voidremoveMouseMotionListener(MapMouseMotionListener l)
    
public  voidremoveMouseWheelListener(MapMouseWheelListener l)
    
public  voidremovePaneListener(IMapDisplayListener listener)
     Removes a MapDisplayListener.
public  voidrenderDone()
     Called when a renderer has data that can be displayed.
public  voidrenderStarting()
     Called when rendering is about to start.
public  voidrenderUpdate()
     Called when renderer has rendered for single Job scheduled run.
public  voidrepaint()
     Repaints the ViewportPane

Requests a repaint actually - may not occur right away.

public  voidrepaint(int x, int y, int width, int height)
     Requests that the area indicated is repainted

Requests a repaint actually - may not occur right away.

public  voidsetCursor(org.eclipse.swt.graphics.Cursor cursor)
     Sets the mouse cursor.

Limited to System cursors at the moment.

 voidsetRenderManager(RenderManager manager)
    



Method Detail
addDrawCommand
public void addDrawCommand(IDrawCommand command)(Code)
Adds a Draw command to the list of draw commands. This will not refresh the ViewportPane.
Parameters:
  command - The new draw command.



addMouseListener
public void addMouseListener(MapMouseListener l)(Code)
See
Parameters:
  l - A mouse listener



addMouseMotionListener
public void addMouseMotionListener(MapMouseMotionListener l)(Code)
See
Parameters:
  l - A mouse listener



addMouseWheelListener
public void addMouseWheelListener(MapMouseWheelListener l)(Code)
See
Parameters:
  l - A mouse listener



addPaneListener
public void addPaneListener(IMapDisplayListener listener)(Code)
Adds a listener interested in size changes to the pane



dispose
public void dispose()(Code)
disposes of any system resources



enableDrawCommands
public void enableDrawCommands(boolean enable)(Code)
Switches ViewportPainter to run custom IDrawCommands during map repainting or disable them.
Parameters:
  enable - true is to run custom draw commands, false otherwise



getControl
Control getControl()(Code)
Returns the SWT Control that listeners, including drag and drop, can be added to. the SWT Control that listeners, including drag and drop, can be added to.



getMapEditor
MapEditor getMapEditor()(Code)
Returns the associated MapEditor object. the associated MapEditor object.



image
BufferedImage image(int w, int h)(Code)
Create a image that is compatable with this ViewportPane.
Parameters:
  w - width
Parameters:
  h - height BufferedImage (may be hardware accelarated)



isDisposed
boolean isDisposed()(Code)
returns if the viewportpane has been disposed true if the viewportpane has been disposed



isVisible
boolean isVisible()(Code)
Returns true if the viewportPane component is visible. true if the viewportPane component is visible.



removeMouseListener
public void removeMouseListener(MapMouseListener l)(Code)
See
Parameters:
  l - A mouse listener



removeMouseMotionListener
public void removeMouseMotionListener(MapMouseMotionListener l)(Code)
See
Parameters:
  l - A mouse listener



removeMouseWheelListener
public void removeMouseWheelListener(MapMouseWheelListener l)(Code)
See
Parameters:
  l - A mouse listener



removePaneListener
public void removePaneListener(IMapDisplayListener listener)(Code)
Removes a MapDisplayListener.



renderDone
public void renderDone()(Code)
Called when a renderer has data that can be displayed.

May be called when a refresh is required because the rendered data has changed




renderStarting
public void renderStarting()(Code)
Called when rendering is about to start.



renderUpdate
public void renderUpdate()(Code)
Called when renderer has rendered for single Job scheduled run.



repaint
public void repaint()(Code)
Repaints the ViewportPane

Requests a repaint actually - may not occur right away.




repaint
public void repaint(int x, int y, int width, int height)(Code)
Requests that the area indicated is repainted

Requests a repaint actually - may not occur right away.


Parameters:
  x - x coordinate of the top left corner of the box to repaint
Parameters:
  y - y coordinate of the top left corner of the box to repaint
Parameters:
  width - width of the box to repaint
Parameters:
  height - height of the box to repaint



setCursor
public void setCursor(org.eclipse.swt.graphics.Cursor cursor)(Code)
Sets the mouse cursor.

Limited to System cursors at the moment. Custom cursors will be forthcoming.


Parameters:
  cursor - The cursor to use



setRenderManager
void setRenderManager(RenderManager manager)(Code)
Called to set the owning renderManager()



w__ww_.___j__a_va_2s__.c___o_m | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.