blob: 37c9ccf8d4ad4f7aff10b5fe317842391b88c7b4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 The Eclipse Foundation 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:
* The Eclipse Foundation - initial API and implementation
* Yatta Solutions - bug 432803: public API
*******************************************************************************/
package org.eclipse.epp.internal.mpc.ui;
import org.eclipse.epp.mpc.ui.IMarketplaceClientService;
import org.eclipse.jface.resource.ImageRegistry;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
import org.osgi.util.tracker.ServiceTracker;
/**
* bundle activator. Prefer {@link MarketplaceClientUi} where possible.
*
* @author David Green
*/
public class MarketplaceClientUiPlugin extends AbstractUIPlugin {
/**
* image registry key
*/
public static final String IU_ICON_UPDATE = "IU_ICON_UPDATE"; //$NON-NLS-1$
/**
* image registry key
*/
public static final String IU_ICON = "IU_ICON"; //$NON-NLS-1$
/**
* image registry key
*/
public static final String NEWS_ICON_UPDATE = "NEWS_ICON_UPDATE"; //$NON-NLS-1$
/**
* image registry key
*/
public static final String NO_ICON_PROVIDED = "NO_ICON_PROVIDED"; //$NON-NLS-1$
public static final String NO_ICON_PROVIDED_CATALOG = "NO_ICON_PROVIDED_CATALOG"; //$NON-NLS-1$
public static final String ITEM_ICON_STAR = "ITEM_ICON_STAR"; //$NON-NLS-1$
public static final String ITEM_ICON_SHARE = "ITEM_ICON_SHARE"; //$NON-NLS-1$
private static MarketplaceClientUiPlugin instance;
private ServiceTracker<IMarketplaceClientService, IMarketplaceClientService> clientServiceTracker;
public MarketplaceClientUiPlugin() {
}
@Override
public void start(BundleContext context) throws Exception {
instance = this;
super.start(context);
clientServiceTracker = new ServiceTracker<IMarketplaceClientService, IMarketplaceClientService>(context,
IMarketplaceClientService.class, null);
clientServiceTracker.open();
}
@Override
public void stop(BundleContext context) throws Exception {
clientServiceTracker.close();
clientServiceTracker = null;
super.stop(context);
instance = null;
}
/**
* Get the singleton instance. Prefer {@link MarketplaceClientUi} where possible.
*/
public static MarketplaceClientUiPlugin getInstance() {
return instance;
}
@Override
protected ImageRegistry createImageRegistry() {
ImageRegistry imageRegistry = super.createImageRegistry();
imageRegistry.put(NO_ICON_PROVIDED, imageDescriptorFromPlugin(getBundle().getSymbolicName(),
"icons/noiconprovided.png")); //$NON-NLS-1$
imageRegistry.put(NO_ICON_PROVIDED_CATALOG,
imageDescriptorFromPlugin(getBundle().getSymbolicName(), "icons/noiconprovided32.png")); //$NON-NLS-1$
imageRegistry.put(IU_ICON, imageDescriptorFromPlugin(getBundle().getSymbolicName(), "icons/iu_obj.gif")); //$NON-NLS-1$
imageRegistry.put(IU_ICON_UPDATE, imageDescriptorFromPlugin(getBundle().getSymbolicName(),
"icons/iu_update_obj.gif")); //$NON-NLS-1$
imageRegistry.put(NEWS_ICON_UPDATE,
imageDescriptorFromPlugin(getBundle().getSymbolicName(), "icons/news_update.gif")); //$NON-NLS-1$
imageRegistry.put(ITEM_ICON_STAR, imageDescriptorFromPlugin(getBundle().getSymbolicName(), "icons/star.png")); //$NON-NLS-1$
imageRegistry.put(ITEM_ICON_SHARE, imageDescriptorFromPlugin(getBundle().getSymbolicName(), "icons/share.png")); //$NON-NLS-1$
return imageRegistry;
}
public IMarketplaceClientService getClientService() {
return clientServiceTracker == null ? null : clientServiceTracker.getService();
}
}