| [news.eclipse.platform.swt] Event Queue? |
Hi,
i want to trace some SWT Events. With AWT its really easy to do this:
Toolkit.getDefaultToolkit().getSystemEventQueue().push(
new EventQueue() {
protected void dispatchEvent(AWTEvent event) {
//do something
super.dispatchEvent(event);
}
});How can i do this for SWT?
Regards, Mirco