List of usage examples for java.awt.event MouseListener interface-usage
From source file SortableTable.java
/**
* Captures mouse clicks on a table header, with the intention of triggering a sort. Adapted from
* code by Nabuo Tamemasa posted on http://www.codeguru.com.
*
* @author Nabuo Tamemasa
*/
From source file org.openmicroscopy.shoola.agents.metadata.editor.EditorControl.java
/**
* The Editor's controller.
*
* @author Jean-Marie Burel
* <a href="mailto:j.burel@dundee.ac.uk">j.burel@dundee.ac.uk</a>
* @author Donald MacDonald
From source file TrackFocusDemo.java
class Picture extends JComponent implements MouseListener, FocusListener, Accessible { Image image; public Picture(Image image) { this.image = image;
From source file userinterface.properties.GUIGraphHandler.java
@SuppressWarnings("serial") public class GUIGraphHandler extends JPanel implements MouseListener { private boolean canDelete; private JTabbedPane theTabs; private JPopupMenu backMenu, graphMenu;
From source file org.isatools.isacreator.spreadsheet.Spreadsheet.java
/**
* Spreadsheet class.
* Provides the functionality of a spreadsheet including the JTable, Listeners, Addition of Cell Editors, and so forth. Spreadsheet
* is created automatically from Table Reference Objects created by the ISAcreator configuration tool!
*
* @author Eamonn Maguire
From source file gdsc.smlm.ij.plugins.PeakFit.java
/** * Fits local maxima using a 2D Gaussian. Process each frame until a successive number of fits * fail to meet the fit criteria. */ public class PeakFit implements PlugInFilter, MouseListener, TextListener, ItemListener { private static final String TITLE = "PeakFit";
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 de.mendelson.comm.as2.client.AS2Gui.java
/**
* Main GUI for the control of the mendelson AS2 server
*
* @author S.Heller
* @version $Revision: 1.1 $
*/
From source file corelyzer.ui.CorelyzerApp.java
public class CorelyzerApp extends WindowAdapter implements MouseListener, StartupNotification.Listener { static boolean MAC_OS_X = System.getProperty("os.name").toLowerCase().startsWith("mac os x"); final static int MENU_MASK = MAC_OS_X ? Toolkit.getDefaultToolkit().getMenuShortcutKeyMask() : ActionEvent.CTRL_MASK;
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;