Add and remove filter listeners : SWT Event « SWT « Java Tutorial






public void addFilter(int eventType, Listener listener)
    public void removeFilter(int eventType, Listener listener)

All filter listeners will be notified when an event of the specified type occurs anywhere in the display.

Add and remove filter listeners
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.Shell;

public class DisplayEventFilerMouseDown {
  public static void main(String[] args) {
    Display display = new Display();
    Shell shell = new Shell(display);
    shell.setLayout(new GridLayout());

    Button button = new Button(shell, SWT.NONE);
    button.setText("Click and check the console");
    button.addListener(SWT.Selection, new Listener() {
      public void handleEvent(Event e) {
        switch (e.type) {
        case SWT.Selection:
          System.out.println("Button pressed");
          break;
        }
      }
    });

    display.addFilter(SWT.MouseDown, new SimpleListener("Display mouse down Listener"));

    shell.open();
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch()) {
        display.sleep();
      }
    }
  }
}

class SimpleListener implements Listener {
  String name;

  public SimpleListener(String name) {
    this.name = name;
  }

  public void handleEvent(Event e) {
    System.out.println("Event: [" + e.toString() + "] from " + name + ". \tCurrent Time (in ms):  "
        + System.currentTimeMillis());
  }
}








17.89.SWT Event
17.89.1.Events
17.89.2.The Event ModelThe Event Model
17.89.3.The listener notification processThe listener notification process
17.89.4.SWT provides two kinds of event listening mechanism: typed and untyped.SWT provides two kinds of event listening mechanism: typed and untyped.
17.89.5.Untyped Events and Untyped Event ListenersUntyped Events and Untyped Event Listeners
17.89.6.Introducing Untyped Listeners
17.89.7.Get event typeGet event type
17.89.8.implements general Event Listenerimplements general Event Listener
17.89.9.Introducing Typed Listeners
17.89.10.Typed Listeners
17.89.11.SWT Message Keys and Values
17.89.12.Using SelectionListenerUsing SelectionListener
17.89.13.Add Resize listener to ShellAdd Resize listener to Shell
17.89.14.Add addPaintListener to CompositeAdd addPaintListener to Composite
17.89.15.Add default selection listener to ComboAdd default selection listener to Combo
17.89.16.Using HelpListenerUsing HelpListener
17.89.17.Demonstrate DisposeListener which is notified on the associated widget's disposal
17.89.18.Using ControlListenerUsing ControlListener
17.89.19.Using FocusListenerUsing FocusListener
17.89.20.Using VerifyListenerUsing VerifyListener
17.89.21.Using ModifyListenerUsing ModifyListener
17.89.22.Adding AccessibleListenerAdding AccessibleListener
17.89.23.Adding AccessibleControlListenerAdding AccessibleControlListener
17.89.24.Add and remove filter listenersAdd and remove filter listeners