FileDialog fileDialog = new FileDialog(parent,SWT.SINGLE|SWT.OPEN);
fileDialog.setText("Choose file to send to " + user);
String file = fileDialog.open();
if(file == null) return false;
FileTransferManager manager = new FileTransferManager(account.xmpp.getConnection());
final OutgoingFileTransfer outgoingFileTransfer = manager.createOutgoingFileTransfer(user);
final File f = new File(file);
InputDialog descriptionInput = new InputDialog(parent,
"Sending file to " + user,
"Please Provide a description of the file (" + f.getName() + ") " +