Example usage for java.awt.event MouseListener interface-usage

List of usage examples for java.awt.event MouseListener interface-usage

Introduction

In this page you can find the example usage for java.awt.event MouseListener interface-usage.

Usage

From source file org.lnicholls.galleon.gui.HMEConfigurationPanel.java

class PropertyCanvas extends Canvas implements MouseListener {

    PropertyCanvas(JPanel frame, PropertyEditor pe) {

        this.frame = frame;

From source file com.actelion.research.table.view.JVisualization.java

public abstract class JVisualization extends JComponent implements CompoundTableListener, FocusableView,
        HighlightListener, MarkerLabelDisplayer, ListSelectionListener, MouseListener, MouseMotionListener,
        Printable, CompoundTableHitlistListener, VisualizationColorListener {
    private static final long serialVersionUID = 0x20100610;

    // taken from class com.actelion.research.gui.form.FormObjectBorder

From source file Filter3dTest.java

/**
 * The InputManager manages input of key and mouse events. Events are mapped to
 * GameActions.
 */

class InputManager implements KeyListener, MouseListener, MouseMotionListener, MouseWheelListener {

From source file statechum.analysis.learning.Visualiser.java

public class Visualiser extends JFrame implements Observer, Runnable, MouseListener {
    /**
     * The version ID for serialisation.
     */
    private static final long serialVersionUID = -6382530787840924374L;
    protected VisualizationViewer viewer = null;

From source file JavaXWin.java

class EastResizeEdge extends JPanel implements MouseListener, MouseMotionListener {
    private int WIDTH = 3;
    private int MIN_WIDTH = 50;
    private boolean m_dragging;
    private JComponent m_resizeComponent;

From source file com.isti.traceview.common.TraceViewChartPanel.java

/**
 * This code was copied from JFreeChart ChartPanel class.
 * It was fixed ChartPanel's bug with lack of double buffering and problems during working
 * under X window. 
 * So as fixed method paintComponent() uses private calls, copy-paste method of fixing was the only one.
 */

From source file DragPictureDemo2.java

class Picture extends JComponent implements MouseListener, FocusListener, Accessible {
    Image image;

    public Picture(Image image) {

        this.image = image;

From source file DragPictureDemo.java

class Picture extends JComponent implements MouseListener, FocusListener, Accessible {
    Image image;

    public Picture(Image image) {

        this.image = image;

From source file org.rdv.viz.chart.ChartPanel.java

/**
 * A Swing GUI component for displaying a {@link JFreeChart} object.
 * <P>
 * The panel registers with the chart to receive notification of changes to any
 * component of the chart.  The chart is redrawn automatically whenever this
 * notification is received.

From source file HelloUniverse.java

class WheelControls extends Canvas implements RotationControls, MouseMotionListener, MouseListener {

    private final static int NONE = 0;

    private final static int SLIDE_Y = 1;