[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
|
[news.eclipse.platform.swt] Intercept / Abort SWT.Close
|
- From: Sebastian Scholz <ssc@xxxxxxxxxxx>
- Date: Wed, 01 Jun 2005 14:39:20 +0200
- Newsgroups: eclipse.platform.swt
- Organization: EclipseCorner
- User-agent: Pan/0.14.2 (This is not a psychotic episode. It's a cleansing moment of clarity.)
Hi
I have a Listener on SWT.close like this
shell.addListener(SWT.Close,new Listener() {
public void handleEvent (Event event) {
// I can intercept and put it onhonld with a dialogbox
// but what to do here to abort this.
}
});
Does anyone have an idea how I can abort the closing process ?
-Sebastian