Class GridLocationToolTip

  • All Implemented Interfaces:
    EventListener, org.piccolo2d.event.PInputEventListener, PEditorEventListener

    public class GridLocationToolTip
    extends org.piccolo2d.event.PBasicInputEventHandler
    implements PEditorEventListener
    Deprecated.
    2D piccolo based code is being removed
    Displays a tooltip specifying the current grid location.
    Author:
    Nick Collier
    • Constructor Summary

      Constructors 
      Constructor Description
      GridLocationToolTip​(org.piccolo2d.PCamera camera)
      Deprecated.
       
    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      void destroy()
      Deprecated.
      Cleans up anything created by this listener in init.
      void init()
      Deprecated.
      Initializes this listener.
      void mouseDragged​(org.piccolo2d.event.PInputEvent evt)
      Deprecated.
       
      void mouseEntered​(org.piccolo2d.event.PInputEvent evt)
      Deprecated.
       
      void mouseExited​(org.piccolo2d.event.PInputEvent evt)
      Deprecated.
       
      void mouseMoved​(org.piccolo2d.event.PInputEvent evt)
      Deprecated.
       
      void start()
      Deprecated.
      Starts the listener.
      void stop()
      Deprecated.
      Stops the listener.
      void updateToolTip​(org.piccolo2d.event.PInputEvent event)
      Deprecated.
       
      • Methods inherited from class org.piccolo2d.event.PBasicInputEventHandler

        acceptsEvent, getEventFilter, keyboardFocusGained, keyboardFocusLost, keyPressed, keyReleased, keyTyped, mouseClicked, mousePressed, mouseReleased, mouseWheelRotated, mouseWheelRotatedByBlock, processEvent, setEventFilter
      • Methods inherited from interface org.piccolo2d.event.PInputEventListener

        processEvent
    • Constructor Detail

      • GridLocationToolTip

        public GridLocationToolTip​(org.piccolo2d.PCamera camera)
        Deprecated.
    • Method Detail

      • init

        public void init()
        Deprecated.
        Description copied from interface: PEditorEventListener
        Initializes this listener. This happens only once whereas start / stop may occur multiple times.
        Specified by:
        init in interface PEditorEventListener
      • destroy

        public void destroy()
        Deprecated.
        Description copied from interface: PEditorEventListener
        Cleans up anything created by this listener in init. This happens only once whereas start / stop may occur multiple times.
        Specified by:
        destroy in interface PEditorEventListener
      • start

        public void start()
        Deprecated.
        Starts the listener. At the very least this should add the listener to whatever PNode it is listening on.
        Specified by:
        start in interface PEditorEventListener
      • stop

        public void stop()
        Deprecated.
        Stops the listener. At the very least this should remove the listener to whatever PNode it is listening on.
        Specified by:
        stop in interface PEditorEventListener
      • mouseEntered

        public void mouseEntered​(org.piccolo2d.event.PInputEvent evt)
        Deprecated.
        Overrides:
        mouseEntered in class org.piccolo2d.event.PBasicInputEventHandler
      • mouseExited

        public void mouseExited​(org.piccolo2d.event.PInputEvent evt)
        Deprecated.
        Overrides:
        mouseExited in class org.piccolo2d.event.PBasicInputEventHandler
      • mouseMoved

        public void mouseMoved​(org.piccolo2d.event.PInputEvent evt)
        Deprecated.
        Overrides:
        mouseMoved in class org.piccolo2d.event.PBasicInputEventHandler
      • mouseDragged

        public void mouseDragged​(org.piccolo2d.event.PInputEvent evt)
        Deprecated.
        Overrides:
        mouseDragged in class org.piccolo2d.event.PBasicInputEventHandler
      • updateToolTip

        public void updateToolTip​(org.piccolo2d.event.PInputEvent event)
        Deprecated.