/*******************************************************************************
* Copyright (c) 2006-2007, Cloudsmith Inc.
* The code, documentation and other materials contained herein have been
* licensed under the Eclipse Public License - v 1.0 by the copyright holder
* listed above, as the Initial Contributor under such license. The text of
* such license is available at www.eclipse.org.
******************************************************************************/
package org.eclipse.buckminster.jnlp.p2;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.jface.dialogs.ErrorDialog;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.FocusAdapter;
import org.eclipse.swt.events.FocusEvent;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.program.Program;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Link;
import org.eclipse.swt.widgets.Shell;
/**
* @author Karel Brezina
*
*/
public class HelpLinkErrorDialog extends ErrorDialog
{
private Image m_dialogImage;
private String m_errorEmailRecipient;
private String m_errorEmailSubject;
private IStatus m_status;
private static String s_syncString = null;
public static int openError(Shell parent, Image dialogImage, String dialogTitle, String message, IStatus status,
String errorCode, boolean reportable, String errorEmailRecipient, String errorEmailSubject)
{
return openError(parent, dialogImage, dialogTitle, message, status, errorCode, reportable, errorEmailRecipient,
errorEmailSubject, IStatus.OK | IStatus.INFO | IStatus.WARNING | IStatus.ERROR);
}
public static int openError(Shell parent, Image dialogImage, String dialogTitle, String message, IStatus status,
String errorCode, boolean reportable, String errorEmailRecipient, String errorEmailSubject, int displayMask)
{
ErrorDialog dialog;
if(s_syncString != null)
System.out.println(s_syncString);
if(errorEmailRecipient == null || !reportable)
{
dialog = new ErrorDialog(parent, dialogTitle, message, status, displayMask);
}
else
{
dialog = new HelpLinkErrorDialog(parent, dialogImage, dialogTitle, message, errorEmailRecipient,
errorEmailSubject, reportable, status, displayMask);
}
return dialog.open();
}
public static void setSyncString(String syncString)
{
s_syncString = syncString;
}
protected HelpLinkErrorDialog(Shell parentShell, Image dialogImage, String dialogTitle, String msg,
String errorEmailRecipient, String errorEmailSubject, boolean reportable, IStatus status, int displayMask)
{
super(parentShell, dialogTitle, msg, status, displayMask);
m_dialogImage = dialogImage;
m_errorEmailRecipient = errorEmailRecipient;
m_errorEmailSubject = errorEmailSubject;
m_status = status;
}
@Override
protected void configureShell(Shell shell)
{
super.configureShell(shell);
if(m_dialogImage != null)
{
shell.setImage(m_dialogImage);
}
}
@Override
protected Control createMessageArea(Composite composite)
{
// create image
Image image = getImage();
if(image != null)
{
imageLabel = new Label(composite, SWT.NULL);
image.setBackground(imageLabel.getBackground());
imageLabel.setImage(image);
imageLabel.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_CENTER | GridData.VERTICAL_ALIGN_BEGINNING));
}
Composite msgComposite = new Composite(composite, SWT.NONE);
GridLayout layout = new GridLayout(1, false);
layout.marginHeight = layout.marginWidth = 0;
msgComposite.setLayout(layout);
GridData data;
// create message
if(message != null)
{
Label msgLabel = new Label(msgComposite, getMessageLabelStyle());
msgLabel.setText(message);
data = new GridData(GridData.GRAB_HORIZONTAL | GridData.HORIZONTAL_ALIGN_FILL
| GridData.VERTICAL_ALIGN_BEGINNING);
data.widthHint = convertHorizontalDLUsToPixels(IDialogConstants.MINIMUM_MESSAGE_AREA_WIDTH);
msgLabel.setLayoutData(data);
}
new Label(msgComposite, SWT.NONE);
Link helpLink = new Link(msgComposite, SWT.NONE);
helpLink.setText("<a>Report the problem</a>");
helpLink.addSelectionListener(new SelectionAdapter()
{
@Override
public void widgetSelected(SelectionEvent e)
{
Program.launch(MaterializationUtils.createMailtoURL(m_errorEmailRecipient, m_errorEmailSubject,
MaterializationUtils.createStatusMessage(m_status)));
}
});
// after start set focus to OK button not to help link
getShell().addFocusListener(new FocusAdapter()
{
private boolean m_passFocusToOk = true;
@Override
public void focusGained(FocusEvent e)
{
if(m_passFocusToOk)
{
getButton(IDialogConstants.OK_ID).setFocus();
m_passFocusToOk = false;
}
}
});
return composite;
}
}