Uses of Interface
org.malai.undo.UndoHandler

Packages that use UndoHandler
net.sf.latexdraw.glib.ui   
net.sf.latexdraw.instruments   
org.malai.action   
org.malai.instrument   
org.malai.instrument.library   
org.malai.undo   
 

Uses of UndoHandler in net.sf.latexdraw.glib.ui
 

Subinterfaces of UndoHandler in net.sf.latexdraw.glib.ui
 interface ICanvas
          Defines an interface for a canvas that draw the drawing and manages the selected shapes.
 

Classes in net.sf.latexdraw.glib.ui that implement UndoHandler
 class LCanvas
          Defines a canvas that draw the drawing and manages the selected shapes.
 

Uses of UndoHandler in net.sf.latexdraw.instruments
 

Classes in net.sf.latexdraw.instruments that implement UndoHandler
 class Border
          This instrument manages the selected views.
 class CopierCutterPaster
          This instrument permits to copy, cut and paste the selected shapes.
 class DrawingPropertiesCustomiser
          This instrument modifies the properties of the drawing.
 class EditingSelector
          This instrument selects the pencil or the hand.
 class ExceptionsManager
          This instrument allows to see exceptions launched during the execution of the program.
 class Exporter
          This instrument exports a drawing in different formats.
 class FileLoaderSaver
          This instrument saves and loads documents.
 class Hand
          This instrument allows to manipulate (e.g. move or select) shapes.
 class Helper
          This instrument manages help features.
 class MagneticGridCustomiser
          This instrument customises the magnetic grid.
 class MetaShapeCustomiser
          This meta-instrument manages the instruments that customises shape properties.
 class Pencil
          This instrument allows to draw shapes.
 class PreferencesActivator
          This instrument activates the preferences setter and shows the preferences frame.
 class PreferencesSetter
          This instrument modifies the preferences.
 class ScaleRulersCustomiser
          This instrument activates X and Y scale rulers.
 class ShapeArcCustomiser
          This instrument modifies arc parameters.
 class ShapeArrowCustomiser
          This instrument customises the arrows of shapes or of the pencil.
 class ShapeAxesCustomiser
          This instrument modifies axes properties of shapes or the pencil.
 class ShapeBorderCustomiser
          This instrument modifies border properties of shapes or the pencil.
 class ShapeCoordDimCustomiser
          This instrument modifies arc dimensions and coordinates of shapes or pencil parameters.
 class ShapeDeleter
          This instrument deletes the selected shapes.
 class ShapeDotCustomiser
          This instrument modifies dot parameters.
 class ShapeDoubleBorderCustomiser
          This instrument modifies double border properties of shapes or the pencil.
 class ShapeFillingCustomiser
          This instrument modifies filling properties of shapes or the pencil.
 class ShapeGridCustomiser
          This instrument modifies the parameters of grids and axes.
 class ShapeGrouper
          This instrument groups and separates shapes.
 class ShapePropertyCustomiser
          This abstract instrument defines the base definition of instruments that customise shape properties.
 class ShapeRotationCustomiser
          This instrument modifies the rotation angle of selected shapes.
 class ShapeShadowCustomiser
          This instrument modifies shadow properties of shapes or the pencil.
 class TabSelector
          This instrument (de-)activates instruments while changing of tab (drawing tab, PST tab, etc.).
 class TextCustomiser
          This instrument modifies texts.
 class TextSetter
          This instrument allows to add and modify texts to the drawing.
 class Zoomer
          This instrument allows to zoom on the canvas.
 

Uses of UndoHandler in org.malai.action
 

Subinterfaces of UndoHandler in org.malai.action
 interface ActionHandler
          This interface allows to create a bridge between an action and an object that want to be aware about events on actions (such as creation or deletion of an action).
 

Uses of UndoHandler in org.malai.instrument
 

Classes in org.malai.instrument that implement UndoHandler
 class Instrument
          Defines an abstract model of an instrument.
 class WidgetInstrument
          Defines an abstract model of an instrument that has widgets.
 

Uses of UndoHandler in org.malai.instrument.library
 

Classes in org.malai.instrument.library that implement UndoHandler
 class Scroller
          Defines a scroller that scrolls on a scrollable object.
 class UndoRedoManager
          This instrument allows to undo and redo saved actions.
 

Uses of UndoHandler in org.malai.undo
 

Fields in org.malai.undo with type parameters of type UndoHandler
private  java.util.List<UndoHandler> UndoCollector.handlers
          The handlers that handles the collector.
private  java.util.Deque<UndoHandler> UndoCollector.redoHandlers
          Contains the handlers of each undoable of the redo stack
private  java.util.Deque<UndoHandler> UndoCollector.undoHandlers
          Contains the handlers of each undoable of the undo stack
 

Methods in org.malai.undo with parameters of type UndoHandler
 void UndoCollector.add(Undoable undoable, UndoHandler undoHandler)
          Adds an undoable object to the collector.
 void UndoCollector.addHandler(UndoHandler handler)
          Adds a handler to the collector.
 void UndoCollector.removeHandler(UndoHandler handler)
          Removes the given handler from the collector.