⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cdltab.java

📁 The ElectricTM VLSI Design System is an open-source Electronic Design Automation (EDA) system that c
💻 JAVA
字号:
/* -*- tab-width: 4 -*- * * Electric(tm) VLSI Design System * * File: CDLTab.java * * Copyright (c) 2004 Sun Microsystems and Static Free Software * * 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.tool.user.dialogs.options;import com.sun.electric.tool.simulation.Simulation;import com.sun.electric.tool.user.dialogs.EDialog;import javax.swing.JPanel;/** * Class to handle the "CDL" tab of the Preferences dialog. */public class CDLTab extends PreferencePanel{	/** Creates new form CDLTab */	public CDLTab(java.awt.Frame parent, boolean modal)	{		super(parent, modal);		initComponents();		// make all text fields select-all when entered	    EDialog.makeTextFieldSelectAllOnTab(cdlIncludeFile);	    EDialog.makeTextFieldSelectAllOnTab(cdlLibraryName);	    EDialog.makeTextFieldSelectAllOnTab(cdlLibraryPath);	}	/** return the panel to use for this preferences tab. */	public JPanel getPanel() { return cdl; }	/** return the name of this preferences tab. */	public String getName() { return "CDL"; }	/**	 * Method called at the start of the dialog.	 * Caches current values and displays them in the CDL tab.	 */	public void init()	{        cdlIncludeFile.setText(Simulation.getCDLIncludeFile());		cdlLibraryName.setText(Simulation.getCDLLibName());		cdlLibraryPath.setText(Simulation.getCDLLibPath());		cdlConvertBrackets.setSelected(Simulation.isCDLConvertBrackets());	}	/**	 * Method called when the "OK" panel is hit.	 * Updates any changed fields in the CDL tab.	 */	public void term()	{		String nameNow = cdlLibraryName.getText();		if (!nameNow.equals(Simulation.getCDLLibName())) Simulation.setCDLLibName(nameNow);		nameNow = cdlLibraryPath.getText();		if (!nameNow.equals(Simulation.getCDLLibPath())) Simulation.setCDLLibPath(nameNow);        nameNow = cdlIncludeFile.getText();        if (!nameNow.equals(Simulation.getCDLIncludeFile())) Simulation.setCDLIncludeFile(nameNow);		boolean convertNow = cdlConvertBrackets.isSelected();		if (convertNow != Simulation.isCDLConvertBrackets()) Simulation.setCDLConvertBrackets(convertNow);	}	/**	 * Method called when the factory reset is requested.	 */	public void reset()	{		if (!Simulation.getFactoryCDLIncludeFile().equals(Simulation.getCDLIncludeFile()))			Simulation.setCDLIncludeFile(Simulation.getFactoryCDLIncludeFile());		if (!Simulation.getFactoryCDLLibName().equals(Simulation.getCDLLibName()))			Simulation.setCDLLibName(Simulation.getFactoryCDLLibName());		if (!Simulation.getFactoryCDLLibPath().equals(Simulation.getCDLLibPath()))			Simulation.setCDLLibPath(Simulation.getFactoryCDLLibPath());		if (Simulation.isFactoryCDLConvertBrackets() != Simulation.isCDLConvertBrackets())			Simulation.setCDLConvertBrackets(Simulation.isFactoryCDLConvertBrackets());	}	/** This method is called from within the constructor to	 * initialize the form.	 * WARNING: Do NOT modify this code. The content of this method is	 * always regenerated by the Form Editor.	 */    private void initComponents() {//GEN-BEGIN:initComponents        java.awt.GridBagConstraints gridBagConstraints;        cdl = new javax.swing.JPanel();        jLabel14 = new javax.swing.JLabel();        cdlLibraryName = new javax.swing.JTextField();        jLabel15 = new javax.swing.JLabel();        cdlLibraryPath = new javax.swing.JTextField();        cdlConvertBrackets = new javax.swing.JCheckBox();        jLabel1 = new javax.swing.JLabel();        cdlIncludeFile = new javax.swing.JTextField();        getContentPane().setLayout(new java.awt.GridBagLayout());        setTitle("IO Options");        setName("");        addWindowListener(new java.awt.event.WindowAdapter() {            public void windowClosing(java.awt.event.WindowEvent evt) {                closeDialog(evt);            }        });        cdl.setLayout(new java.awt.GridBagLayout());        jLabel14.setText("Cadence Library Name:");        gridBagConstraints = new java.awt.GridBagConstraints();        gridBagConstraints.gridx = 0;        gridBagConstraints.gridy = 1;        gridBagConstraints.insets = new java.awt.Insets(4, 4, 4, 4);        gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST;        cdl.add(jLabel14, gridBagConstraints);        cdlLibraryName.setColumns(8);        gridBagConstraints = new java.awt.GridBagConstraints();        gridBagConstraints.gridx = 1;        gridBagConstraints.gridy = 1;        gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;        gridBagConstraints.insets = new java.awt.Insets(4, 4, 4, 4);        gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST;        gridBagConstraints.weightx = 1.0;        cdl.add(cdlLibraryName, gridBagConstraints);        jLabel15.setText("Cadence Library Path:");        gridBagConstraints = new java.awt.GridBagConstraints();        gridBagConstraints.gridx = 0;        gridBagConstraints.gridy = 2;        gridBagConstraints.insets = new java.awt.Insets(4, 4, 4, 4);        gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST;        cdl.add(jLabel15, gridBagConstraints);        cdlLibraryPath.setColumns(8);        gridBagConstraints = new java.awt.GridBagConstraints();        gridBagConstraints.gridx = 1;        gridBagConstraints.gridy = 2;        gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;        gridBagConstraints.insets = new java.awt.Insets(4, 4, 4, 4);        gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST;        gridBagConstraints.weightx = 1.0;        cdl.add(cdlLibraryPath, gridBagConstraints);        cdlConvertBrackets.setText("Convert brackets");        gridBagConstraints = new java.awt.GridBagConstraints();        gridBagConstraints.gridx = 0;        gridBagConstraints.gridy = 3;        gridBagConstraints.gridwidth = 2;        gridBagConstraints.insets = new java.awt.Insets(4, 4, 4, 4);        gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST;        cdl.add(cdlConvertBrackets, gridBagConstraints);        jLabel1.setText("Include File");        gridBagConstraints = new java.awt.GridBagConstraints();        gridBagConstraints.insets = new java.awt.Insets(4, 4, 4, 4);        gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST;        cdl.add(jLabel1, gridBagConstraints);        gridBagConstraints = new java.awt.GridBagConstraints();        gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;        gridBagConstraints.insets = new java.awt.Insets(4, 4, 4, 4);        gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST;        cdl.add(cdlIncludeFile, gridBagConstraints);        getContentPane().add(cdl, new java.awt.GridBagConstraints());        pack();    }//GEN-END:initComponents	/** Closes the dialog */	private void closeDialog(java.awt.event.WindowEvent evt)//GEN-FIRST:event_closeDialog	{		setVisible(false);		dispose();	}//GEN-LAST:event_closeDialog    // Variables declaration - do not modify//GEN-BEGIN:variables    private javax.swing.JPanel cdl;    private javax.swing.JCheckBox cdlConvertBrackets;    private javax.swing.JTextField cdlIncludeFile;    private javax.swing.JTextField cdlLibraryName;    private javax.swing.JTextField cdlLibraryPath;    private javax.swing.JLabel jLabel1;    private javax.swing.JLabel jLabel14;    private javax.swing.JLabel jLabel15;    // End of variables declaration//GEN-END:variables}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -