Interface FSMouseListener

    • Method Detail

      • onMouseOver

        void onMouseOver​(BasicPanel panel,
                         Box box)
        Sent when the mouse moves over a Box in the render tree.
        Parameters:
        panel - the panel where the box is displayed
        box - the box the mouse has just moved over
      • onMouseOut

        void onMouseOut​(BasicPanel panel,
                        Box box)
        Sent when the mouse leaves a Box in the render tree after entering it.
        Parameters:
        panel - the panel where the box is displayed
        box - the box the mouse has just left
      • onMouseUp

        void onMouseUp​(BasicPanel panel,
                       Box box)
        Sent when the mouse button is released while hovering over a Box in the render tree.
        Parameters:
        panel - the panel where the box is displayed
        box - the box where the mouse is currently located
      • onMousePressed

        void onMousePressed​(BasicPanel panel,
                            java.awt.event.MouseEvent e)
        Sent when the mouse button is pressed.
        Parameters:
        panel - the panel where the box is displayed
        e - information about the mouse position, etc.
      • onMouseDragged

        void onMouseDragged​(BasicPanel panel,
                            java.awt.event.MouseEvent e)
        Sent when the mouse button is held and the mouse is moved.
        Parameters:
        panel - the panel where the box is displayed
        e - information about the mouse position, etc.