Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/* -*- tab-width: 4 -*-
*
* Electric(tm) VLSI Design System
*
* File: StartupPrefs.java
*
* Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
*
* Electric(tm) is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* Electric(tm) is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Electric(tm); see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, Mass 02111-1307, USA.
*/
package com.sun.electric;
import com.sun.electric.database.text.Pref;
import java.util.prefs.Preferences;
/**
* Module to access Prefs which are used at startup.
* They are accessed without initializing Tool and Technology classes
*/
public class StartupPrefs {
public static final String USER_NODE = "tool/user";
private static final Preferences userNode = Pref.getPrefRoot().node(USER_NODE);
/** Preferences key with additional technologies for Electric. */
public static final String SoftTechnologiesKey = "SoftTechnologies";
/** Default initial additional technologies for Electric. */
public static final String SoftTechnologiesDef = "";
/**
* Method to tell the additional technologies for Electric.
* The default is "".
* @return the additional technologies for Electric.
*/
public static String getSoftTechnologies() { return getUserString(SoftTechnologiesKey, SoftTechnologiesDef); }
/** Preferences key to tell the initial display style for Electric. */
public static final String DisplayStyleKey = "DisplayStyle";
/** Default initial display style for Electric. */
public static final int DisplayStyleDef = 0;
/**
* Method to tell the initial display style for Electric.
* The values are: 0=OS default, 1=MDI, 2=SDI.
* The default is 0.
* @return the display style for Electric.
*/
public static int getDisplayStyle() { return getUserInt(DisplayStyleKey, DisplayStyleDef); }
/** Preferences key to tell the maximum number of undos retained in memory. */
public static final String MaxUndoHistoryKey = "MaxUndoHistory";
/** Default aximum number of undos retained in memory. */
public static final int MaxUndoHistoryDef = 40;
/**
* Method to get the maximum number of undos retained in memory
*/
public static int getMaxUndoHistory() { return getUserInt(MaxUndoHistoryKey, MaxUndoHistoryDef); }
/** Preferences key to tell the maximum memory to use for Electric, in megatybes. */
public static final String MemorySizeKey = "MemorySize";
/** Default maximum memory to use for Electric, in megatybes. */
public static final int MemorySizeDef = 65;
/**
* Method to tell the maximum memory to use for Electric, in megatybes.
* The default is 65 megabytes which is not enough for serious work.
* @return the maximum memory to use for Electric (in megabytes).
*/
public static int getMemorySize() { return getUserInt(MemorySizeKey, MemorySizeDef); }
/** Preferences key to tell the maximum permanent space of 2dn GC to use for Electric, in megatybes. */
public static final String PermSizeKey = "PermSize";
/** Default maximum permanent space of 2dn GC to use for Electric, in megatybes. */
public static final int PermSizeDef = 0;
/**
* Method to tell the maximum permanent space of 2dn GC to use for Electric, in megatybes.
* The default is 0. If zero, value is not considered.
* @return the maximum memory to use for Electric (in megabytes).
*/
public static int getPermSpace() { return getUserInt(PermSizeKey, PermSizeDef); }
/** Preferences key to tell whether to use a separate client and server for Electric. */
public static final String UseClientServerKey = "UseClientServer";
/** Default whether to use a separate client and server for Electric */
public static final boolean UseClientServerDef = false;
/**
* Method to tell whether to use a separate client and server for Electric.
* The default is "false".
* @return true to use a separate client and server for Electric
*/
public static boolean isUseClientServer() { return getUserBoolean(UseClientServerKey, UseClientServerDef); }
/** Preferences key to tell whether to perform snapshot logging in a temporary file. */
public static final String SnapshotLoggingKey = "SnapshotLogging";
/** Default whether to perform snapshot logging in a temporary file. */
public static final boolean SnapshotLoggingDef = false;
/**
* Method to tell whether to perform snapshot logging in a temporary file.
* The default is "false".
* @return true to perform snapshot logging in a temporary file
*/
public static boolean isSnapshotLogging() { return getUserBoolean(SnapshotLoggingKey, SnapshotLoggingDef); }
public static boolean getUserBoolean(String key, boolean def) {
return userNode.getBoolean(key, def);
}
public static int getUserInt(String key, int def) {
return userNode.getInt(key, def);
}
public static long getUserLong(String key, long def) {
return userNode.getLong(key, def);
}
public static double getUserDouble(String key, double def) {
return userNode.getDouble(key, def);
}
public static String getUserString(String key, String def) {
return userNode.get(key, def);
}
}