blob: 330c9d6c687d27da9a651a4b487255d14a547387 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2011 Ericsson and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Ericsson - initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.dsf.gdb.internal.ui.tracepointactions;
import org.eclipse.cdt.debug.core.breakpointactions.IBreakpointAction;
import org.eclipse.cdt.debug.ui.breakpointactions.IBreakpointActionPage;
import org.eclipse.cdt.dsf.gdb.internal.tracepointactions.EvaluateAction;
import org.eclipse.core.runtime.PlatformObject;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Text;
/**
* @since 2.1
*/
public class EvaluateActionPage extends PlatformObject implements IBreakpointActionPage {
private Text fEvalString;
private EvaluateAction fEvalAction;
/**
* Create the composite
*/
private Composite createEvaluateActionComposite(Composite parent, int style) {
Composite composite = new Composite(parent, style);
composite.setLayout(new GridLayout(2, false));
final Label evalLabel = new Label(composite, SWT.NONE);
evalLabel.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, false, false, 2, 1));
evalLabel.setText(MessagesForTracepointActions.TracepointActions_Evaluate_Label);
fEvalString = new Text(composite, SWT.BORDER);
fEvalString.setText(fEvalAction.getEvalString());
fEvalString.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
return composite;
}
public EvaluateAction getEvalAction() {
return fEvalAction;
}
@Override
public void actionDialogCanceled() {
}
@Override
public void actionDialogOK() {
fEvalAction.setEvalString(fEvalString.getText());
}
@Override
public Composite createComposite(IBreakpointAction action, Composite composite, int style) {
fEvalAction = (EvaluateAction) action;
return createEvaluateActionComposite(composite, style);
}
}