blob: cd956cf7951343f378c0318283791d751671589b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2015 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:
* IBM Corporation - initial API and implementation
* Lars Vogel <Lars.Vogel@vogella.com> - Bug 472654
*******************************************************************************/
package org.eclipse.ui.internal.quickaccess;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.ui.activities.WorkbenchActivityHelper;
import org.eclipse.ui.internal.IWorkbenchGraphicConstants;
import org.eclipse.ui.internal.WorkbenchImages;
import org.eclipse.ui.internal.WorkbenchPlugin;
import org.eclipse.ui.wizards.IWizardCategory;
import org.eclipse.ui.wizards.IWizardDescriptor;
/**
* @since 3.3
*
*/
public class WizardProvider extends QuickAccessProvider {
private QuickAccessElement[] cachedElements;
private Map<String, WizardElement> idToElement = new HashMap<>();
@Override
public QuickAccessElement getElementForId(String id) {
getElements();
return idToElement.get(id);
}
@Override
public QuickAccessElement[] getElements() {
if (cachedElements == null) {
IWizardCategory rootCategory = WorkbenchPlugin.getDefault()
.getNewWizardRegistry().getRootCategory();
List<IWizardDescriptor> result = new ArrayList<>();
collectWizards(rootCategory, result);
IWizardDescriptor[] wizards = result
.toArray(new IWizardDescriptor[result.size()]);
for (int i = 0; i < wizards.length; i++) {
if (!WorkbenchActivityHelper.filterItem(wizards[i])) {
WizardElement wizardElement = new WizardElement(wizards[i], this);
idToElement.put(wizardElement.getId(), wizardElement);
}
}
cachedElements = idToElement.values().toArray(
new QuickAccessElement[idToElement.size()]);
}
return cachedElements;
}
private void collectWizards(IWizardCategory category, List<IWizardDescriptor> result) {
result.addAll(Arrays.asList(category.getWizards()));
for (IWizardCategory childCategory : category.getCategories()) {
collectWizards(childCategory, result);
}
}
@Override
public String getId() {
return "org.eclipse.ui.wizards"; //$NON-NLS-1$
}
@Override
public ImageDescriptor getImageDescriptor() {
return WorkbenchImages
.getImageDescriptor(IWorkbenchGraphicConstants.IMG_OBJ_NODE);
}
@Override
public String getName() {
return QuickAccessMessages.QuickAccess_New;
}
@Override
protected void doReset() {
cachedElements = null;
idToElement.clear();
}
}