I want to disable resizing of window. Any ideas?
I'm not sure about it, but I think you can just drop SWT.Resize event like this:
shell.addListener (SWT.Resize, new Listener () { public void handleEvent (Event e) { return; } });