blob: 3d32e24b41e88788fafc47c63f0659b9467c08eb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.dialogs;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.jface.dialogs.ErrorDialog;
import org.eclipse.jface.preference.PreferenceNode;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.IWorkbenchPreferencePage;
import org.eclipse.ui.internal.WorkbenchMessages;
import org.eclipse.ui.internal.WorkbenchPlugin;
/**
* A proxy for a preference page to avoid creation of preference page
* just to show a node in the preference dialog tree.
*/
public class WorkbenchPreferenceNode extends PreferenceNode {
private String category;
private IConfigurationElement configurationElement;
public final static String ATT_CONTRIBUTOR_CLASS = "class";//$NON-NLS-1$
private IWorkbench workbench;
public WorkbenchPreferenceNode(String nodeId, String nodeLabel, String category, ImageDescriptor nodeImage, IConfigurationElement element, IWorkbench newWorkbench) {
super(nodeId, nodeLabel, nodeImage, null);
this.category = category;
this.configurationElement = element;
this.workbench = newWorkbench;
}
public WorkbenchPreferenceNode(String nodeId, String nodeLabel, String category, ImageDescriptor nodeImage, IWorkbenchPreferencePage preferencePage) {
super(nodeId, nodeLabel, nodeImage, null);
setPage(preferencePage);
}
/**
* Creates the preference page this node stands for.
*/
public void createPage() {
IWorkbenchPreferencePage page;
try {
page = (IWorkbenchPreferencePage)WorkbenchPlugin.createExtension(
configurationElement, ATT_CONTRIBUTOR_CLASS);
}
catch (CoreException e) {
// Just inform the user about the error. The details are
// written to the log by now.
ErrorDialog.openError(
(Shell)null,
WorkbenchMessages.getString("PreferenceNode.errorTitle"), //$NON-NLS-1$
WorkbenchMessages.getString("PreferenceNode.errorMessage"), //$NON-NLS-1$
e.getStatus());
page = new EmptyPreferencePage();
}
page.init(workbench);
if (getLabelImage() != null)
page.setImageDescriptor(getImageDescriptor());
page.setTitle(getLabelText());
setPage(page);
}
/**
*
* @return java.lang.String
*/
public String getCategory() {
return category;
}
}