blob: 9a5f3ee5e0a73ba8e51ddf3af0cb8bb0532c0f00 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2013 Tasktop Technologies 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:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.builds.ui.editor;
import org.eclipse.jface.layout.GridDataFactory;
import org.eclipse.mylyn.builds.core.BuildState;
import org.eclipse.mylyn.builds.core.IBuild;
import org.eclipse.mylyn.builds.core.IBuildPlan;
import org.eclipse.mylyn.builds.internal.core.BuildPackage;
import org.eclipse.mylyn.commons.core.DateUtil;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Text;
import org.eclipse.ui.forms.widgets.FormToolkit;
/**
* @author Steffen Pingel
*/
public class HeaderPart extends AbstractBuildEditorPart {
public HeaderPart() {
this.span = 2;
}
@Override
protected Control createContent(Composite parent, FormToolkit toolkit) {
Composite composite = toolkit.createComposite(parent);
composite.setLayout(new GridLayout());
Label label = createLabel(composite, toolkit, "Plan:");
GridDataFactory.defaultsFor(label).indent(0, 0).applyTo(label);
Text text = createTextReadOnly(composite, toolkit, "");
bind(text, IBuildPlan.class, BuildPackage.Literals.BUILD_ELEMENT__NAME);
label = createLabel(composite, toolkit, "Build:");
GridDataFactory.defaultsFor(label).indent(12, 0).applyTo(label);
text = createTextReadOnly(composite, toolkit, "");
bind(text, IBuild.class, BuildPackage.Literals.BUILD__BUILD_NUMBER);
label = createLabel(composite, toolkit, "Status: ");
GridDataFactory.defaultsFor(label).indent(12, 0).applyTo(label);
text = createTextReadOnly(composite, toolkit, "");
//bind(text, IBuild.class, BuildPackage.Literals.BUILD__STATUS);
IBuild build = getInput(IBuild.class);
text.setText(getStatusLabel(build));
label = createLabel(composite, toolkit, "Duration: ");
GridDataFactory.defaultsFor(label).indent(12, 0).applyTo(label);
text = createTextReadOnly(composite, toolkit, "");
text.setText(DateUtil.getFormattedDurationShort(build.getDuration(), true));
((GridLayout) composite.getLayout()).numColumns = composite.getChildren().length;
toolkit.paintBordersFor(composite);
return composite;
}
private String getStatusLabel(IBuild build) {
if (build.getStatus() != null) {
return build.getStatus().getLabel();
}
return (build.getState() == BuildState.RUNNING) ? "Running" : "Unknown";
}
@Override
public Control createControl(Composite parent, FormToolkit toolkit) {
return createContent(parent, toolkit);
}
}