/******************************************************************************* * Copyright (c) 2010 Ericsson 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: * 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.CollectAction; 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 CollectActionPage extends PlatformObject implements IBreakpointActionPage { private Text fCollectString; private CollectAction fCollectAction; /** * Create the composite */ private Composite createCollectActionComposite(Composite parent, int style) { Composite composite = new Composite(parent, style); composite.setLayout(new GridLayout(2, false)); final Label collectLabel = new Label(composite, SWT.NONE); collectLabel.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, false, false, 2, 1)); collectLabel.setText(MessagesForTracepointActions.TracepointActions_Collect_Label); fCollectString = new Text(composite, SWT.BORDER); fCollectString.setText(fCollectAction.getCollectString()); fCollectString.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false)); return composite; } public CollectAction getCollectAction() { return fCollectAction; } public void actionDialogCanceled() { } public void actionDialogOK() { fCollectAction.setCollectString(fCollectString.getText()); } public Composite createComposite(IBreakpointAction action, Composite composite, int style) { fCollectAction = (CollectAction) action; return createCollectActionComposite(composite, style); } }