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

📄 ticks.java

📁 emboss的linux版本的源代码
💻 JAVA
字号:
/**********************************************************************  This library is free software; you can redistribute it and/or*  modify it under the terms of the GNU Library General Public*  License as published by the Free Software Foundation; either*  version 2 of the License, or (at your option) any later version.**  This library 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*  Library General Public License for more details.**  You should have received a copy of the GNU Library General Public*  License along with this library; if not, write to the*  Free Software Foundation, Inc., 59 Temple Place - Suite 330,*  Boston, MA  02111-1307, USA.**  @author: Copyright (C) Tim Carver*********************************************************************/package org.emboss.jemboss.draw;import javax.swing.*;import javax.swing.event.*;import java.util.Vector;import java.awt.Dimension;import java.awt.event.*;import org.emboss.jemboss.gui.form.TextFieldInt;public class Ticks extends JPanel{  private TextFieldInt interval;  private TextFieldInt minor;  private TextFieldInt startTick;  public Ticks(final DNADraw draw, boolean setTicks)  {    super();       Box bdown = Box.createVerticalBox();    Dimension d = new Dimension(100,25);    bdown.add(Box.createVerticalStrut(4));    Box bacross = Box.createHorizontalBox();//tick interval    bacross = Box.createHorizontalBox();    interval = new TextFieldInt();    if(draw != null)      interval.setValue(draw.getTickInterval());    else      interval.setValue(200);    interval.setMaximumSize(d);    interval.setPreferredSize(d);    bacross.add(interval);    bacross.add(new JLabel(" Tick Interval"));    bacross.add(Box.createHorizontalGlue());    bdown.add(bacross);//minor ticks    bacross = Box.createHorizontalBox();    minor = new TextFieldInt();    if(draw != null)      minor.setValue(draw.getMinorTickInterval());    else      minor.setValue(100);    minor.setMaximumSize(d);    minor.setPreferredSize(d);    bacross.add(minor);    bacross.add(new JLabel(" Minor Tick Interval"));    bacross.add(Box.createHorizontalGlue());    bdown.add(bacross);//start ticks    bacross = Box.createHorizontalBox();    startTick = new TextFieldInt();    if(draw != null)      startTick.setValue(draw.getStartTick());    else      startTick.setValue(0);    startTick.setMaximumSize(d);    startTick.setPreferredSize(d);    bacross.add(startTick);    bacross.add(new JLabel(" Start Tick"));    bacross.add(Box.createHorizontalGlue());    bdown.add(bacross);        if(setTicks)    {      bacross = Box.createHorizontalBox();      JButton setTick = new JButton("Set");      setTick.addActionListener(new ActionListener()      {        public void actionPerformed(ActionEvent e)        {          if(draw != null)          {            if(!draw.setStartTick(startTick.getValue()))            {              JOptionPane.showMessageDialog(null,                    "Start tick is out of range for this sequence",                    "Out of Range",JOptionPane.ERROR_MESSAGE);            }                      if(!draw.setTickInterval(interval.getValue()))            {               JOptionPane.showMessageDialog(null,                     "Tick interval is out of range",                     "Out of Range",JOptionPane.ERROR_MESSAGE);            }            if(!draw.setMinorTickInterval(minor.getValue()))            {               JOptionPane.showMessageDialog(null,                    "Minor Tick interval is out of range",                    "Out of Range",JOptionPane.ERROR_MESSAGE);            }            draw.calculateTickPosistions();            draw.repaint();          }        }      });      bacross.add(setTick);      bdown.add(bacross);    }    add(bdown);  }  protected JMenuBar createMenuBar(final JFrame f)  {    JMenuBar menuBar = new JMenuBar();    JMenu fileMenu = new JMenu("File");    fileMenu.setMnemonic(KeyEvent.VK_F);    menuBar.add(fileMenu);    JMenuItem closeMenu = new JMenuItem("Close");    closeMenu.setAccelerator(KeyStroke.getKeyStroke(              KeyEvent.VK_E, ActionEvent.CTRL_MASK));    closeMenu.addActionListener(new ActionListener()    {      public void actionPerformed(ActionEvent e)      {        f.dispose();      }    });    fileMenu.add(closeMenu);    return menuBar;  }  /**  *  * Return the position tick marks start at  *  */  protected int getStartTick()  {    return startTick.getValue();  }  /**  *  * Return the interval for the tick marks  *  */  protected int getTickInterval()  {    return interval.getValue();  }  /**  *  * Return the interval for the minor tick marks  *  */  protected int getMinorTickInterval()  {    return minor.getValue();  }}

⌨️ 快捷键说明

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