blob: 6dcecae03616c3560abc1e8eb4cf4965a222f548 [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,
* Sebastien Gemme - initial API and implementation
*
* SPDX-License-Identifier: EPL-1.0
*
*******************************************************************************/
package org.eclipse.apogy.common.topology.ui.viewer.preferences;
import org.eclipse.apogy.common.topology.ui.viewer.Activator;
import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;
import org.eclipse.jface.preference.IPreferenceStore;
public class TopologyViewerPreferencesInitializer extends AbstractPreferenceInitializer {
@Override
public void initializeDefaultPreferences() {
IPreferenceStore store = Activator.getDefault().getPreferenceStore();
// Initialize default viewer verbose.
store.setDefault(TopologyViewerPreferencesConstants.VIEWER_VERBOSE_ID,
TopologyViewerPreferencesConstants.VIEWER_VERBOSE_DEFAULT);
// Initialize default viewer anti-aliasing.
store.setDefault(TopologyViewerPreferencesConstants.VIEWER_ANTI_ALIASING_ID,
TopologyViewerPreferencesConstants.VIEWER_ANTI_ALIASING_DEFAULT);
// Initialize default viewer frame rate, in Hz.
store.setDefault(TopologyViewerPreferencesConstants.VIEWER_MAX_FRAME_RATE_ID,
TopologyViewerPreferencesConstants.VIEWER_MAX_FRAME_RATE_DEFAULT);
// Initialize default linear speed factors.
store.setDefault(TopologyViewerPreferencesConstants.DEFAULT_LINEAR_LOW_SPEED_FACTOR_ID,
TopologyViewerPreferencesConstants.DEFAULT_LINEAR_LOW_SPEED_FACTOR);
store.setDefault(TopologyViewerPreferencesConstants.DEFAULT_LINEAR_HIGH_SPEED_FACTOR_ID,
TopologyViewerPreferencesConstants.DEFAULT_LINEAR_HIGH_SPEED_FACTOR);
}
}