|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.esri.arcgis.analyst3d.ISceneGraphEventsAdapter
public class ISceneGraphEventsAdapter
Constructor Summary | |
---|---|
ISceneGraphEventsAdapter()
|
Method Summary | |
---|---|
void |
activeViewerChanged(ISceneGraphEventsActiveViewerChangedEvent theEvent)
Fired when the active viewer changes. |
void |
afterDraw(ISceneGraphEventsAfterDrawEvent theEvent)
Fired when drawing finishes. |
boolean |
beforeDraw(ISceneGraphEventsBeforeDrawEvent theEvent)
Fired when drawing starts. |
void |
interactionStopped(ISceneGraphEventsInteractionStoppedEvent theEvent)
Fired when interaction stops. |
void |
recordingStarted(ISceneGraphEventsRecordingStartedEvent theEvent)
Fired when node recording starts. |
void |
recordingStopped(ISceneGraphEventsRecordingStoppedEvent theEvent)
Fired when node recording stops. |
void |
viewerAdded(ISceneGraphEventsViewerAddedEvent theEvent)
Fired when a new viewer is added. |
void |
viewerRemoved(ISceneGraphEventsViewerRemovedEvent theEvent)
Fired when a viewer is removed. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ISceneGraphEventsAdapter()
Method Detail |
---|
public void activeViewerChanged(ISceneGraphEventsActiveViewerChangedEvent theEvent) throws IOException, AutomationException
activeViewerChanged
in interface ISceneGraphEvents
theEvent
- The event
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void viewerAdded(ISceneGraphEventsViewerAddedEvent theEvent) throws IOException, AutomationException
viewerAdded
in interface ISceneGraphEvents
theEvent
- The event
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void viewerRemoved(ISceneGraphEventsViewerRemovedEvent theEvent) throws IOException, AutomationException
viewerRemoved
in interface ISceneGraphEvents
theEvent
- The event
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void interactionStopped(ISceneGraphEventsInteractionStoppedEvent theEvent) throws IOException, AutomationException
interactionStopped
in interface ISceneGraphEvents
theEvent
- The event
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void recordingStarted(ISceneGraphEventsRecordingStartedEvent theEvent) throws IOException, AutomationException
recordingStarted
in interface ISceneGraphEvents
theEvent
- The event
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void recordingStopped(ISceneGraphEventsRecordingStoppedEvent theEvent) throws IOException, AutomationException
recordingStopped
in interface ISceneGraphEvents
theEvent
- The event
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public boolean beforeDraw(ISceneGraphEventsBeforeDrawEvent theEvent) throws IOException, AutomationException
This event method is often used by an OpenGL routine that renders something before the main features in the scene are drawn. A good example is the scene background, such as sky/sun/moon etc. Just like the art of painting, one normally needs to draw the background first and then the main feature. So this method is generally for the background rendering. It can also be used for executing some routines other than drawing.
The BeforeDraw method returns a boolean value. When it's set to true, the SceneGraph's drawing is disabled, and you as a developer take control of the drawing (e.g. via OpenGL). Otherwise, the SceneGraph takes care of drawing as usual.
beforeDraw
in interface ISceneGraphEvents
theEvent
- The event
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void afterDraw(ISceneGraphEventsAfterDrawEvent theEvent) throws IOException, AutomationException
This event method is often used by an OpenGL routine that renders something after the main features in the scene are drawn. Just like the art of painting, one normally needs to draw the background first and then the main feature, followed by foreground features or other miscellaneous features. So this method is generally used for drawing of graphics after the background and the main features are drawn. It can also be used for executing some routines other than drawing.
afterDraw
in interface ISceneGraphEvents
theEvent
- The event
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |