blob: 9686d9c8477b8fc3dbd9b6da8e86bea6b79c338a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2016 Xored Software Inc 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:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.ctx.capability.ui.views;
import org.eclipse.rcptt.core.model.ModelException;
import org.eclipse.rcptt.core.scenario.CapabilityContext;
import org.eclipse.rcptt.internal.ui.Q7UIPlugin;
import org.eclipse.rcptt.ui.context.BaseContextEditor;
import org.eclipse.rcptt.ui.controls.SectionWithToolbar;
import org.eclipse.rcptt.ui.editors.EditorHeader;
import org.eclipse.rcptt.ui.editors.IQ7EditorActionsProvider;
import org.eclipse.rcptt.ui.editors.NamedElementEditorActions.INamedElementActions;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.ui.IWorkbenchSite;
import org.eclipse.ui.forms.widgets.FormToolkit;
import org.eclipse.ui.forms.widgets.Section;
public class CapabilityContextEditor extends BaseContextEditor implements IQ7EditorActionsProvider {
private CapabilityContextTables contexts;
public CapabilityContext getContextElement() {
try {
return (CapabilityContext) super.getElement().getNamedElement();
} catch (ModelException e) {
Q7UIPlugin.log(e);
}
return null;
}
public Control create(Composite parent, FormToolkit toolkit, IWorkbenchSite site,
EditorHeader header) {
getForm().getForm().setText(getContextElement().getName() + " " + Messages.CapabilityContextEditor_Title0); //$NON-NLS-1$
contexts = new CapabilityContextTables(getElement(), getContextElement(), toolkit);
return new SectionWithToolbar(contexts, Section.TITLE_BAR | Section.TWISTIE | Section.EXPANDED)
.create(parent, toolkit);
}
@Override
public INamedElementActions createActions() {
return contexts;
}
}