blob: 9d2930d3f09b310f747da2cd449c99568396068a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 TwelveTone LLC 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: Steven Spungin <steven@spungin.tv> - initial API and implementation, Bug 432555
*******************************************************************************/
package org.eclipse.e4.tools.emf.ui.internal.common.component.tabs;
import org.eclipse.e4.core.contexts.IEclipseContext;
import org.eclipse.e4.tools.emf.ui.internal.common.resourcelocator.dialogs.BundleClassDialog;
import org.eclipse.e4.tools.emf.ui.internal.common.resourcelocator.dialogs.IconDialog;
import org.eclipse.e4.tools.emf.ui.internal.common.resourcelocator.dialogs.UriDialog;
import org.eclipse.e4.tools.emf.ui.internal.common.resourcelocator.dialogs.UriDialogType;
import org.eclipse.jface.viewers.DialogCellEditor;
import org.eclipse.jface.window.Window;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
/**
* A cell editor that when selected offers the option to edit, view, or goto the
* item.
*
* @author Steven Spungin
*
*/
public class ContributionUriCellEditor extends DialogCellEditor {
private UriDialog dlg;
public ContributionUriCellEditor(Composite parent, int style, IEclipseContext context, UriDialogType dialogType) {
super(parent, style);
switch (dialogType) {
case ICON:
dlg = new IconDialog(parent.getShell(), context);
break;
case BUNDLECLASS:
default:
dlg = new BundleClassDialog(parent.getShell(), context);
break;
}
}
@Override
protected Object openDialogBox(Control cellEditorWindow) {
dlg.setUri((String) getValue());
if (dlg.open() == Window.OK) {
return dlg.getUri();
}
return getValue();
}
}