blob: 013b03521ce7e46792301643e5d8d5e3ba4bf11e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2005 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.internal.ui.views.memory.renderings;
import java.util.Vector;
import org.eclipse.debug.internal.ui.DebugUIMessages;
import org.eclipse.debug.ui.IDebugUIConstants;
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.Combo;
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.ui.PlatformUI;
/**
* @since 3.0
*/
public class GoToAddressDialog extends Dialog implements ModifyListener{
private static Vector history = new Vector();
private Combo expressionInput;
private String expression;
/**
* @param parentShell
*/
public GoToAddressDialog(Shell parentShell) {
super(parentShell);
PlatformUI.getWorkbench().getHelpSystem().setHelp(parentShell, IDebugUIConstants.PLUGIN_ID + ".GoToAddressDialog_context"); //$NON-NLS-1$
}
/* (non-Javadoc)
* @see org.eclipse.jface.dialogs.Dialog#createDialogArea(org.eclipse.swt.widgets.Composite)
*/
protected Control createDialogArea(Composite parent) {
parent.setLayout(new GridLayout());
GridData spec2= new GridData();
spec2.grabExcessVerticalSpace= true;
spec2.grabExcessHorizontalSpace= true;
spec2.horizontalAlignment= GridData.FILL;
spec2.verticalAlignment= GridData.CENTER;
parent.setLayoutData(spec2);
Label textLabel = new Label(parent, SWT.NONE);
textLabel.setText(DebugUIMessages.GoToAddressDialog_Address);
GridData textLayout = new GridData();
textLayout.widthHint = 280;
textLabel.setLayoutData(textLayout);
expressionInput = new Combo(parent, SWT.BORDER);
GridData spec= new GridData();
spec.grabExcessVerticalSpace= false;
spec.grabExcessHorizontalSpace= true;
spec.horizontalAlignment= GridData.FILL;
spec.verticalAlignment= GridData.BEGINNING;
spec.heightHint = 50;
expressionInput.setLayoutData(spec);
// add history
String[] historyExpression = (String[])history.toArray(new String[history.size()]);
for (int i=0; i<historyExpression.length; i++)
{
expressionInput.add(historyExpression[i]);
}
expressionInput.addModifyListener(this);
return parent;
}
/* (non-Javadoc)
* @see org.eclipse.jface.window.Window#configureShell(org.eclipse.swt.widgets.Shell)
*/
protected void configureShell(Shell newShell) {
super.configureShell(newShell);
newShell.setText(DebugUIMessages.GoToAddressDialog_GoToAddress);
}
public String getExpression()
{
return expression;
}
/* (non-Javadoc)
* @see org.eclipse.jface.dialogs.Dialog#okPressed()
*/
protected void okPressed() {
expression = expressionInput.getText();
// add to history list
if (!history.contains(expression))
history.insertElementAt(expression, 0);
super.okPressed();
}
/* (non-Javadoc)
* @see org.eclipse.swt.events.ModifyListener#modifyText(org.eclipse.swt.events.ModifyEvent)
*/
public void modifyText(ModifyEvent e) {
String input = expressionInput.getText();
if (input == null || input.equals("")) //$NON-NLS-1$
{
getButton(IDialogConstants.OK_ID).setEnabled(false);
}
else
{
getButton(IDialogConstants.OK_ID).setEnabled(true);
}
}
/* (non-Javadoc)
* @see org.eclipse.jface.dialogs.Dialog#createButtonBar(org.eclipse.swt.widgets.Composite)
*/
protected Control createButtonBar(Composite parent) {
Control ret = super.createButtonBar(parent);
getButton(IDialogConstants.OK_ID).setEnabled(false);
return ret;
}
}