pivot.wtk.media.drawing
Interface PathListener


public interface PathListener

Path listener interface.

Author:
tvolkert

Method Summary
 void operationInserted(Path path, int index)
          Called when an operation has been inserted into a path.
 void operationsRemoved(Path path, int index, Sequence<Path.Operation> removed)
          Called when operations have been removed from a path.
 void operationUpdated(Path.Operation operation)
          Called when an operation has been updated.
 void windingRuleChanged(Path path, Path.WindingRule previousWindingRule)
          Called when a path's winding rule has changed.
 

Method Detail

windingRuleChanged

void windingRuleChanged(Path path,
                        Path.WindingRule previousWindingRule)
Called when a path's winding rule has changed.

Parameters:
path -
previousWindingRule -

operationInserted

void operationInserted(Path path,
                       int index)
Called when an operation has been inserted into a path.

Parameters:
path -
index -

operationsRemoved

void operationsRemoved(Path path,
                       int index,
                       Sequence<Path.Operation> removed)
Called when operations have been removed from a path.

Parameters:
path -
index -
removed -

operationUpdated

void operationUpdated(Path.Operation operation)
Called when an operation has been updated.

Parameters:
operation -