package com.dubture.composer.ui.dialogs;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.dialogs.ErrorDialog;
import org.eclipse.jface.preference.PreferenceDialog;
import org.eclipse.php.internal.debug.ui.preferences.phps.PHPsPreferencePage;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Link;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.dialogs.PreferencesUtil;
import com.dubture.composer.core.log.Logger;
@SuppressWarnings("restriction")
public class MissingExecutableDialog extends ErrorDialog {
private final Shell shell;
public MissingExecutableDialog(Shell parentShell, IStatus info) {
super(parentShell, "Problem running composer", "Unable to run composer.", info,
IStatus.CANCEL | IStatus.ERROR | IStatus.OK | IStatus.WARNING);
shell = parentShell;
}
@Override
protected Control createDialogArea(Composite parent) {
Composite main = (Composite) super.createDialogArea(parent);
Composite space = new Composite(main, SWT.NONE);
GridData gridData = new GridData(SWT.FILL, SWT.FILL, false, false);
gridData.heightHint = 1;
gridData.widthHint = 1;
space.setLayoutData(gridData);
Link link = createPreferencesLink(main);
link.setLayoutData(new GridData(SWT.BEGINNING, SWT.CENTER, false, false));
return main;
}
private Link createPreferencesLink(Composite parent) {
Link link = new Link(parent, SWT.NONE);
link.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
try {
PreferenceDialog preferenceDialog = PreferencesUtil.createPreferenceDialogOn(shell, PHPsPreferencePage.ID, new String[] {}, null);
preferenceDialog.open();
MissingExecutableDialog.this.close();
} catch (Exception e2) {
Logger.logException(e2);
}
}
});
link.setText("You need to <a>configure a PHP executable</a> in your preferences in order \nfor the Composer plugin to be able to run composer.");
link.setToolTipText("Open the PHP preference page to configure the available PHP executables");
Dialog.applyDialogFont(link);
return link;
}
}