cancel.setForeground(Utilities.getDisplay().getSystemColor(SWT.COLOR_DARK_BLUE));
cancel.setCursor(Utilities.getDisplay().getSystemCursor(SWT.CURSOR_HAND));
gridData = new GridData(GridData.HORIZONTAL_ALIGN_END);
gridData.horizontalSpan = 1;
cancel.setLayoutData(gridData);
cancel.addListener(SWT.MouseDown, new Listener(){
public void handleEvent(Event e) {
//pop up confirmation box for this event
Shell messageshell = new Shell(DownloadManagerShell.DOWNLOAD_MANAGER_SHELL);
MessageBox messageBox = new MessageBox(messageshell, SWT.ICON_QUESTION | SWT.NO | SWT.YES);
messageBox.setText("Cancel Download Confirmation");