blob: 90ea7f9fcd5b8e7893665d4265d27f5f8196cc42 [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.preferences;
public class TopologyViewerPreferencesConstants {
// Anti-Aliasing
public static final String VIEWER_ANTI_ALIASING_ID = "VIEWER_ANTI_ALIASING_ID";
public static final boolean VIEWER_ANTI_ALIASING_DEFAULT = true;
// Verbose
public static final String VIEWER_VERBOSE_ID = "VIEWER_VERBOSE_ID";
public static final boolean VIEWER_VERBOSE_DEFAULT = false;
// Maximum Frame Rate
public static final String VIEWER_MAX_FRAME_RATE_ID = "VIEWER_MAX_FRAME_RATE_ID";
public static final int VIEWER_MAX_FRAME_RATE_DEFAULT = 5;
// Navigation Linear Speed.
public static final String DEFAULT_LINEAR_LOW_SPEED_FACTOR_ID = "DEFAULT_LINEAR_LOW_SPEED_FACTOR_ID";
public static final double DEFAULT_LINEAR_LOW_SPEED_FACTOR = 1;
public static final String DEFAULT_LINEAR_HIGH_SPEED_FACTOR_ID = "DEFAULT_LINEAR_HIGH_SPEED_FACTOR_ID";
public static final double DEFAULT_LINEAR_HIGH_SPEED_FACTOR = 10;
}