/******************************************************************************* * 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; import java.util.Vector; import org.eclipse.debug.core.model.IMemoryBlockExtensionRetrieval; import org.eclipse.debug.core.model.IMemoryBlockRetrieval; 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.swt.widgets.Text; import org.eclipse.ui.PlatformUI; /** * @since 3.0 */ public class MonitorMemoryBlockDialog extends Dialog implements ModifyListener{ private static Vector history = new Vector(); private Combo expressionInput; private Text lengthInput; private String expression; private String length; private boolean needLength = true; private static final String PREFIX = "MonitorMemoryBlockDialog."; //$NON-NLS-1$ private static final String ENTER_EXPRESSION = PREFIX + "EnterExpressionToMonitor"; //$NON-NLS-1$ private static final String MONITOR_MEMORY = PREFIX + "MonitorMemory"; //$NON-NLS-1$ private static final String NUMBER_OF_BYTES = PREFIX + "NumberOfBytes"; //$NON-NLS-1$ /** * @param parentShell */ public MonitorMemoryBlockDialog(Shell parentShell, IMemoryBlockRetrieval memRetrieval) { super(parentShell); if (memRetrieval instanceof IMemoryBlockExtensionRetrieval) needLength = false; PlatformUI.getWorkbench().getHelpSystem().setHelp(parentShell, IDebugUIConstants.PLUGIN_ID + ".MonitorMemoryBlockDialog_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.getString(ENTER_EXPRESSION)); 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