/* * Copyright (C) 2008 Genome Research Limited * * This program 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 2 * of the License, or (at your option) any later version. * * This program 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 this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * @author: Tim Carver */ package uk.ac.sanger.artemis.circular; import java.util.Vector; import java.awt.Font; import java.net.URL; import javax.swing.JComboBox; /** * * Extends JComboBox to add and store new * elements * */ public class MemoryComboBox extends JComboBox { public static final int MAX_MEM_LEN = 30; private Vector order; public MemoryComboBox(Vector v) { super(v); setEditable(true); order = new Vector(); for(int i=0;i MAX_MEM_LEN) removeItemAt(getItemCount()-1); order.add(item); } /** * * Ensure order is changed * */ public void setLastIndex(Object anObject) { if(order.contains(anObject)) { order.remove(anObject); order.trimToSize(); order.add(anObject); } } /** * * Determine if a return page is stored * @return true if a return page available * */ protected boolean isBackPage() { int currentIndex = order.indexOf(getSelectedItem()); if(order.size() <= 1 || currentIndex < 1) return false; else return true; } /** * * Determine if a forward page is stored * @return true if a forward page available * */ protected boolean isForwardPage() { int currentIndex = order.indexOf(getSelectedItem()); if(currentIndex < order.size()-1) return true; else return false; } /** * * Determine if item is in the JComboBox * @param item object to test existance of * */ public boolean isItem(Object item) { int nitems = getItemCount(); for(int i=0;i