blob: 314b60ffb2b4916161d88feddfb50cdc4dd5f2c5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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:
* Chris Aniszczyk <zx@us.ibm.com> - initial API and implementation
*******************************************************************************/
package org.eclipse.pde.internal.runtime.spy.sections;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.pde.internal.runtime.PDERuntimeMessages;
import org.eclipse.pde.internal.runtime.spy.SpyFormToolkit;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.forms.widgets.ExpandableComposite;
import org.eclipse.ui.forms.widgets.FormText;
import org.eclipse.ui.forms.widgets.ScrolledForm;
import org.eclipse.ui.forms.widgets.Section;
import org.eclipse.ui.forms.widgets.TableWrapData;
import org.eclipse.ui.handlers.HandlerUtil;
public class ActiveShellSection implements ISpySection {
public void build(ScrolledForm form, SpyFormToolkit toolkit, ExecutionEvent event) {
final Shell shell = HandlerUtil.getActiveShell(event);
Object object = shell.getData();
if (object == null)
return;
Class clazz = object.getClass();
Section section = toolkit.createSection(form.getBody(), ExpandableComposite.TITLE_BAR);
section.clientVerticalSpacing = 9;
section.setText(PDERuntimeMessages.SpyDialog_activeShell_title);
FormText text = toolkit.createFormText(section, true);
section.setClient(text);
TableWrapData td = new TableWrapData();
td.align = TableWrapData.FILL;
td.grabHorizontal = true;
section.setLayoutData(td);
StringBuffer buffer = new StringBuffer();
buffer.append("<form>"); //$NON-NLS-1$
buffer.append(toolkit.createClassSection(text, PDERuntimeMessages.SpyDialog_activeShell_desc, new Class[] {clazz}));
buffer.append("</form>"); //$NON-NLS-1$
text.setText(buffer.toString(), true, false);
}
}