Examples of ControlAdapter


Examples of org.eclipse.swt.events.ControlAdapter

   * @param parent
   * @param style
   */
  public StyleCombo(Composite parent, int style) {
    super(parent, style);
    this.addControlListener(new ControlAdapter() {
      public void controlResized(ControlEvent e) {
        Combo combo = (Combo) e.widget;
        combo.setSelection(new Point(0, 0));
      }
    });
View Full Code Here

Examples of prefuse.controls.ControlAdapter

       
        // set up this display
        setSize(100,470);
        setHighQuality(true);
        setBorder(BorderFactory.createEmptyBorder(10,10,10,5));
        addControlListener(new ControlAdapter() {
            // dispatch an action event to the menu item
            public void itemClicked(VisualItem item, MouseEvent e) {
                ActionListener al = (ActionListener)item.get(ACTION);
                al.actionPerformed(new ActionEvent(item, e.getID(),
                    "click", e.getWhen(), e.getModifiers()));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.