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

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

Introduction

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

Usage

From source file de.dmarcini.submatix.pclogger.gui.MainCommGUI.java

/**
 * @author dmarc
 *
 */
public class MainCommGUI extends JFrame
        implements ActionListener, MouseMotionListener, ChangeListener, ItemListener { //

From source file edu.ucla.stat.SOCR.chart.Chart.java

/**This class defines a basic type of Statistical Chart that can be
 * subclassed by the specific types of chart
 **/
public class Chart extends JApplet implements Runnable, MouseListener, ActionListener, MouseMotionListener,
        WindowListener, AdjustmentListener, KeyListener {

From source file org.pmedv.blackboard.components.BoardEditor.java

/**
 * <p>
 * This is the main editor component of blackboard. 
 * <p>
 * This component was never meant to be so big and complicated. Since
 * it only started as a small &quot;just for fun&quot; project. 

From source file base.BasePlayer.BedCanvas.java

public class BedCanvas extends JPanel implements MouseMotionListener, MouseListener, KeyListener {

    private static final long serialVersionUID = 1L;
    static int testfield = 0;
    Color forwardColor = new Color(171, 194, 171, 255), reverseColor = new Color(194, 171, 171, 255);
    BufferedImage bufImage, nodeImage;

From source file DragPictureDemo2.java

class DTPicture extends Picture implements MouseMotionListener {
    private MouseEvent firstMouseEvent = null;

    private static boolean installInputMapBindings = true;

    public DTPicture(Image image) {

From source file DragPictureDemo.java

class DTPicture extends Picture implements MouseMotionListener {
    private MouseEvent firstMouseEvent = null;

    private static boolean installInputMapBindings = true;

    public DTPicture(Image image) {

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 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.
 */