blob: ce9fba3052fe1fcd74527ee4175f661799ddd184 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Eugene Kuleshov and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Eugene Kuleshov - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.web.tasks;
import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.ModifyEvent;
import org.eclipse.swt.events.ModifyListener;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;
/**
* Property editor dialog
*
* @author Eugene Kuleshov
*/
public class ParameterEditorDialog extends Dialog {
private final String title;
private String name;
private String value;
private Text valueText;
private Text nameText;
private Text status;
public ParameterEditorDialog(Shell parent) {
super(parent);
this.title = Messages.ParameterEditorDialog_New_Property;
}
public ParameterEditorDialog(Shell parent, String name, String value) {
super(parent);
this.title = Messages.ParameterEditorDialog_Edit_Property;
this.name = name;
this.value = value;
}
@Override
protected Control createDialogArea(Composite parent) {
Composite composite = (Composite) super.createDialogArea(parent);
GridLayout gridLayout = new GridLayout();
gridLayout.numColumns = 2;
composite.setLayout(gridLayout);
Label nameLabel = new Label(composite, SWT.NONE);
nameLabel.setText(Messages.ParameterEditorDialog_Name_);
nameText = new Text(composite, SWT.BORDER);
GridData gridData = new GridData(SWT.FILL, SWT.CENTER, true, false);
gridData.widthHint = 300;
nameText.setLayoutData(gridData);
Label valueLabel = new Label(composite, SWT.NONE);
valueLabel.setLayoutData(new GridData(SWT.RIGHT, SWT.CENTER, false, false));
valueLabel.setText(Messages.ParameterEditorDialog_Value_);
valueText = new Text(composite, SWT.BORDER);
GridData gridData_1 = new GridData(SWT.FILL, SWT.CENTER, true, false);
gridData_1.widthHint = 300;
valueText.setLayoutData(gridData_1);
if (name != null) {
nameText.setText(name.trim());
valueText.setFocus();
}
if (value != null) {
valueText.setText(value);
valueText.setSelection(0, value.length());
}
ModifyListener updateListener = new ModifyListener() {
public void modifyText(ModifyEvent e) {
updateButtons();
}
};
nameText.addModifyListener(updateListener);
valueText.addModifyListener(updateListener);
new Label(composite, SWT.NONE);
status = new Text(composite, SWT.READ_ONLY);
status.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
applyDialogFont(composite);
return composite;
}
@Override
protected void configureShell(Shell shell) {
super.configureShell(shell);
if (title != null) {
shell.setText(title);
}
}
@Override
public void create() {
super.create();
updateButtons();
}
private void updateButtons() {
name = nameText.getText().trim();
value = valueText.getText();
getButton(IDialogConstants.OK_ID).setEnabled(isValid());
}
private boolean isValid() {
if (name.length() == 0 || !Character.isLetter(name.charAt(0))) {
status.setText(Messages.ParameterEditorDialog_Name_should_be_Java_identifier);
return false;
}
for (int i = 1; i < name.length(); i++) {
char c = name.charAt(i);
if (Character.isLetterOrDigit(c) || c == '_' || c == '-') {
continue;
}
status.setText(Messages.ParameterEditorDialog_Name_should_be_Java_identifier);
return false;
}
status.setText(""); //$NON-NLS-1$
return true;
}
public String getName() {
return name;
}
public String getValue() {
return value;
}
}