blob: ff079958b1817f26ff5fba3d9f7afeb6d300b520 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2011 Tasktop Technologies and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.commons.workbench;
import org.eclipse.swt.widgets.Display;
import org.eclipse.ui.forms.FormColors;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
/**
* @author Mik Kersten
* @author Steffen Pingel
*/
public class CommonsWorkbenchPlugin extends AbstractUIPlugin {
public static final String ID_PLUGIN = "org.eclipse.mylyn.commons.workbench"; //$NON-NLS-1$
private static CommonsWorkbenchPlugin plugin;
// shared colors for all forms
private FormColors formColors;
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
}
@Override
public void stop(BundleContext context) throws Exception {
if (formColors != null) {
formColors.dispose();
formColors = null;
}
plugin = null;
super.stop(context);
}
public static CommonsWorkbenchPlugin getDefault() {
return plugin;
}
public FormColors getFormColors(Display display) {
if (formColors == null) {
formColors = new FormColors(display);
formColors.markShared();
}
return formColors;
}
}