blob: c9f1196cfc8a6a0baa5282d64cccda9a15a820fb [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 - initial API and implementation
* Regent L'Archeveque,
* Sebastien Gemme
*
* SPDX-License-Identifier: EPL-1.0
*******************************************************************************/
package org.eclipse.apogy.common.topology.ui.viewer.internal;
import org.eclipse.apogy.common.topology.ui.Activator;
/**
* Constants relating to the console plug-in.
*
* @since 3.0
* @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients.
*/
public interface IConstants {
/**
* Console plug-in identifier (value <code>"org.eclipse.ui.console"</code>).
*/
public static final String PLUGIN_ID = Activator.getDefault().getBundle().getSymbolicName();
// Enabled
public static final String IMG_ELCL_NEW_TOPO_VIEW = "IMG_ELCL_NEW_CON";
public static final String IMG_ELCL_PIN = "IMG_ELCL_PIN"; //$NON-NLS-1$
// Disabled
public static final String IMG_DLCL_PIN = "IMG_DLCL_PIN"; //$NON-NLS-1$
/**
* Status code indicating an unexpected internal error.
*/
public static final int INTERNAL_ERROR = 120;
public static final String IMG_ELCL_DISPLAY_3D_AXIS = "IMG_ELCL_DISPLAY_3D_AXIS";
public static final String IMG_DLCL_DISPLAY_3D_AXIS = "IMG_DLCL_DISPLAY_3D_AXIS";
public static final String IMG_ELCL_ANTIALIASING = "IMG_ELCL_ANTIALIASING";
public static final String IMG_ELCL_STATISTICS = "IMG_ELCL_STATISTICS";
public static final String IMG_ELCL_VIEWPOINT = "IMG_ELCL_VIEWPOINT";
public static final String IMG_ELCL_CAMERA = "IMG_ELCL_CAMERA";
public static final String IMG_ELCL_ARBITRARY = "IMG_ELCL_ARBITRARY";
public static final String IMG_NAVIGATION_MODE = "IMG_NAVIGATION_MODE";
public static final String IMG_OBSERVATION_MODE = "IMG_OBSERVATION_MODE";
public static final String IMG_ELCL_ZOOM_TO_FIT = "IMG_ELCL_ZOOM_TO_FIT";
public static final String IMG_ELCL_LEVEL_VIEWPOINT = "IMG_ELCL_LEVEL_VIEWPOINT";
public static final String IMG_ELCL_ENABLE_HIGH_SPEED_MOTION = "IMG_ELCL_ENABLE_HIGH_SPEED_MOTION";
public static final String IMG_ELCL_ENABLE_PICKING_MODE = "IMG_ELCL_ENABLE_PICKING_MODE";
public static final String IMG_TAKE_SCREENSHOT = "IMG_TAKE_SCREENSHOT";
}