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.archiviststoolkit.mydomain.DomainTableWorkSurface.java

/**
 * A worksurface which can display a domain table.
 */

public class DomainTableWorkSurface implements WorkSurface, MouseListener, ActionListener {

From source file geovista.network.gui.NodeLinkView.java

/**
 * Demonstrates several of the graph layout algorithms. Allows the user to
 * interactively select one of several graphs, and one of several layouts, and
 * visualizes the combination. The whole panel is divided into three parts:
 * topcontrols, this, and bottomcontrols topcontrols for file and layout
 * selections, this for layout and satellite view, and bottomcontrols for other

From source file org.photovault.swingui.PhotoCollectionThumbView.java

/**
   This class implements the default thumbnail view for photo
   collections. Some of the planned features include:
       
   <ul> <li> Either vertically or horizontally scrollable view with
   multiple columns </li>

From source file com.igormaznitsa.jhexed.swing.editor.ui.MainForm.java

public class MainForm extends javax.swing.JFrame implements MouseListener, MouseMotionListener, MouseWheelListener,
        HexMapPanelListener, InsideApplicationBus.AppBusListener, ApplicationContext {

    private static final long serialVersionUID = 3235266727080222251L;

    private static final String[] INTERNAL_PLUGINS = new String[] { "ClearValueOnLayer", "CalcNumberOverBase",

From source file base.BasePlayer.AddGenome.java

public class AddGenome extends JPanel implements ActionListener, MouseListener {

    private static final long serialVersionUID = 1L;
    static JFrame frame = null;
    static boolean annotation = false;
    static Color green = new Color(150, 255, 150);

From source file ded.ui.DiagramController.java

/** Widget to display and edit a diagram. */
public class DiagramController extends JPanel
        implements MouseListener, MouseMotionListener, KeyListener, ComponentListener, FocusListener {
    // ------------- constants ---------------
    private static final long serialVersionUID = 1266678840598864303L;

From source file SwingGlassExample.java

class FixedGlassPane extends JPanel implements MouseListener, MouseMotionListener, FocusListener {
    // helpers for redispatch logic
    Toolkit toolkit;

    JMenuBar menuBar;

From source file corelyzer.ui.CorelyzerGLCanvas.java

/**
 * A container class that holds handles to the GLCanvas object, index to the
 * canvas id in the SceneGraph. It also handles input events from users when
 * direct interaction occurs (e.g. mouse clicks, dragging, etc.) This also
 * captures events for GLEvents (e.g. drawing).
 */

From source file org.tsho.dmc2.core.chart.jfree.DmcChartPanel.java

/**
 * A Swing GUI component for displaying a {@link JFreeChart}.
 * <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 ffx.ui.ModelingPanel.java

/**
 * The ModelingPanel class encapsulates functionality needed to run FFX Modeling
 * Commands.
 *
 * @author Michael J. Schnieders
 *