List of usage examples for java.awt.event MouseMotionListener interface-usage
From source file com.vgi.mafscaling.MafChartPanel.java
public class MafChartPanel implements MouseListener, MouseMotionListener, MouseWheelListener { private static final Logger logger = Logger.getLogger(MafChartPanel.class); private ChartPanel chartPanel = null; private IMafChartHolder chartHolder = null; private XYItemEntity xyItemEntity = null; private HashSet<Integer> pointDraggableSet = null;
From source file org.gcaldaemon.core.notifier.GmailNotifierWindow.java
/**
* Gmail notifier pop-up window.
*
* Created: Jan 03, 2007 12:50:56 PM
*
* @author Andras Berkes
From source file peakmlviewer.dialog.timeseries.EditableChart.java
/** * */ public class EditableChart extends Composite implements MouseListener, MouseMotionListener { // constructor(s) public EditableChart(Composite parent, int style) {
From source file components.ScrollablePicture.java
public class ScrollablePicture extends JLabel implements Scrollable, MouseMotionListener { private int maxUnitIncrement = 1; private boolean missingPicture = false; public ScrollablePicture(ImageIcon i, int m) {
From source file it.unibas.spicygui.vista.listener.MyMouseEventListener.java
public final class MyMouseEventListener implements MouseListener, MouseMotionListener { private static Log logger = LogFactory.getLog(MyMouseEventListener.class); private GraphSceneGlassPane component; private JPanel pannelloPrincipale; private JLayeredPaneCorrespondences jLayeredPane;
From source file events.MouseMotionEventDemo.java
public class MouseMotionEventDemo extends JPanel implements MouseMotionListener { BlankArea blankArea; JTextArea textArea; static final String NEWLINE = System.getProperty("line.separator"); public static void main(String[] args) {
From source file com.rapidminer.gui.plotter.charts.ChartPanelShiftController.java
/**
* This class provides ways to shift (aka pan/scroll) a plot. The shift is done through the arrow
* keys and its step can be configured to be a fixed amount, a percentual of the current axis or a
* range in pixels.
* <p>
* This class only supports plots of type {@link org.jfree.chart.plot.XYPlot XYPlot},
From source file components.LayeredPaneDemo2.java
public class LayeredPaneDemo2 extends JPanel implements ActionListener, MouseMotionListener { private String[] layerStrings = { "Yellow (0)", "Magenta (1)", "Cyan (2)", "Red (3)", "Green (4)", "Blue (5)" }; private Color[] layerColors = { Color.yellow, Color.magenta, Color.cyan, Color.red, Color.green, Color.blue }; private JLayeredPane layeredPane; private JLabel dukeLabel;
From source file components.RootLayeredPaneDemo.java
public class RootLayeredPaneDemo extends JPanel implements ActionListener, MouseMotionListener { private int[] layers = { -30000, 0, 301 }; private String[] layerStrings = { "Yellow (-30000)", "Magenta (0)", "Cyan (301)" }; private Color[] layerColors = { Color.yellow, Color.magenta, Color.cyan }; private JLayeredPane layeredPane;
From source file components.LayeredPaneDemo.java
public class LayeredPaneDemo extends JPanel implements ActionListener, MouseMotionListener { private String[] layerStrings = { "Yellow (0)", "Magenta (1)", "Cyan (2)", "Red (3)", "Green (4)" }; private Color[] layerColors = { Color.yellow, Color.magenta, Color.cyan, Color.red, Color.green }; private JLayeredPane layeredPane; private JLabel dukeLabel;