blob: dda437e3a9992e8a784f62d6e9ff73587ba3d66d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Agence spatiale canadienne / Canadian Space Agency
* 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:
* Pierre Allard,
* Regent L'Archeveque - initial API and implementation
*
* SPDX-License-Identifier: EPL-1.0
*******************************************************************************/
package org.eclipse.apogy.examples.camera.provider;
import org.eclipse.apogy.examples.camera.PTUCameraSimulated;
import org.eclipse.emf.common.notify.AdapterFactory;
public class PTUCameraSimulatedCustomItemProvider extends PTUCameraSimulatedItemProvider {
public PTUCameraSimulatedCustomItemProvider(AdapterFactory adapterFactory) {
super(adapterFactory);
}
@Override
public String getText(Object object) {
/**
* This is the degree symbol, as expressed in unicode
*/
final String DEGREE_SYM = "\u00b0";
// Cast down to a simulated PTU camera
PTUCameraSimulated ptuCameraSimulated = (PTUCameraSimulated) object;
// Get the default label
String label = getString("_UI_PTUCameraSimulated_type");
// If the PTU Camera isn't null
if (ptuCameraSimulated != null) {
// Add relevant features to the label
label += " (Zoom=" + ptuCameraSimulated.getCurrentZoom() + ", PanAngle="
+ Math.toDegrees(ptuCameraSimulated.getCurrentPanAngle()) + DEGREE_SYM + ", TiltAngle="
+ Math.toDegrees(ptuCameraSimulated.getCurrentTiltAngle()) + DEGREE_SYM + ")";
}
// Return the label
return label;
}
}