mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 01:15:29 +02:00
Bug #183341: Single Build Property page added
This commit is contained in:
parent
9b2813c8c5
commit
8f287b4bd4
1 changed files with 84 additions and 0 deletions
|
@ -0,0 +1,84 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2007 Intel 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:
|
||||
* Intel Corporation - initial API and implementation
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.managedbuilder.ui.properties;
|
||||
|
||||
import org.eclipse.cdt.core.settings.model.ICConfigurationDescription;
|
||||
import org.eclipse.cdt.core.settings.model.ICResourceDescription;
|
||||
import org.eclipse.cdt.managedbuilder.core.IConfiguration;
|
||||
import org.eclipse.cdt.managedbuilder.core.IFolderInfo;
|
||||
import org.eclipse.cdt.managedbuilder.core.IHoldsOptions;
|
||||
import org.eclipse.cdt.managedbuilder.core.IResourceInfo;
|
||||
import org.eclipse.cdt.managedbuilder.core.ITool;
|
||||
import org.eclipse.cdt.managedbuilder.core.IToolChain;
|
||||
import org.eclipse.cdt.managedbuilder.core.ManagedBuildManager;
|
||||
import org.eclipse.cdt.ui.newui.AbstractSinglePage;
|
||||
import org.eclipse.core.runtime.IPath;
|
||||
|
||||
/**
|
||||
* Bug #183341 : Single property page which does not
|
||||
* require separate cPropertyTab to display data.
|
||||
*
|
||||
*/
|
||||
public abstract class AbstractSingleBuildPage extends AbstractSinglePage {
|
||||
public IConfiguration getConfigurationFromHoldsOptions(IHoldsOptions ho){
|
||||
if(ho instanceof IToolChain)
|
||||
return ((IToolChain)ho).getParent();
|
||||
else if(ho instanceof ITool)
|
||||
return getConfigurationFromTool((ITool)ho);
|
||||
return null;
|
||||
}
|
||||
public IConfiguration getConfigurationFromTool(ITool tool){
|
||||
return tool.getParentResourceInfo().getParent();
|
||||
}
|
||||
|
||||
public IConfiguration getCfg() {
|
||||
return getCfg(getResDesc().getConfiguration());
|
||||
}
|
||||
public IConfiguration getCfg(ICConfigurationDescription cfgd) {
|
||||
return ManagedBuildManager.getConfigurationForDescription(cfgd);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns ResourceInfo for given ResourceDescription.
|
||||
* Creates resourceInfo if it has not exist before.
|
||||
* @param cfgd
|
||||
* @return
|
||||
*/
|
||||
public IResourceInfo getResCfg(ICResourceDescription cfgd) {
|
||||
IConfiguration cfg = ManagedBuildManager.getConfigurationForDescription(cfgd.getConfiguration());
|
||||
|
||||
if (isForProject())
|
||||
return cfg.getRootFolderInfo();
|
||||
|
||||
IPath p = cfgd.getPath();
|
||||
IResourceInfo f = null;
|
||||
f = cfg.getResourceInfo(p, false);
|
||||
|
||||
if (f != null && (!p.equals(f.getPath()))) {
|
||||
String s = p.toString().replace('/', '_').replace('\\', '_');
|
||||
if (isForFile())
|
||||
f = cfg.createFileInfo(p, (IFolderInfo)f, null,
|
||||
f.getId()+ s, f.getName() + s);
|
||||
else
|
||||
f = cfg.createFolderInfo(p, (IFolderInfo)f,
|
||||
f.getId() + s, f.getName() + s);
|
||||
}
|
||||
if (f == null) {
|
||||
if (isForFile())
|
||||
f = cfg.createFileInfo(p);
|
||||
|
||||
else
|
||||
f = cfg.createFolderInfo(p);
|
||||
}
|
||||
return f;
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Reference in a new issue