org.biojava.nbio.structure.gui.util.SelectMultiplePanel Maven / Gradle / Ivy
/*
* BioJava development code
*
* This code may be freely distributed and modified under the
* terms of the GNU Lesser General Public Licence. This should
* be distributed with the code. If you do not have a copy,
* see:
*
* http://www.gnu.org/copyleft/lesser.html
*
* Copyright for this code is held jointly by the individual
* authors. These should be listed in @author doc comments.
*
* For more information on the BioJava project and its aims,
* or to join the biojava-l mailing list, visit the home page
* at:
*
* http://www.biojava.org/
*
* Created on Jun 30, 2010
* Author: ap3
*
*/
package org.biojava.nbio.structure.gui.util;
import java.awt.BorderLayout;
import java.awt.Dimension;
import java.util.ArrayList;
import java.util.List;
import javax.swing.Box;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import org.biojava.nbio.structure.Structure;
import org.biojava.nbio.structure.StructureException;
import org.biojava.nbio.structure.StructureIdentifier;
import org.biojava.nbio.structure.align.client.StructureName;
import org.biojava.nbio.structure.align.util.AtomCache;
import org.biojava.nbio.structure.align.util.UserConfiguration;
import org.biojava.nbio.structure.align.webstart.WebStartMain;
/**
* A Text Panel that allows the user to specify multiple structure
* identifiers, space separated.
*
* @author Aleix Lafita
* @since 4.1.1
*
*/
public class SelectMultiplePanel extends JPanel {
private static final long serialVersionUID = 757947454156959178L;
JTextField input;
public SelectMultiplePanel(){
this(true);
}
public SelectMultiplePanel(boolean show2boxes){
Box vBox = Box.createVerticalBox();
input = new JTextField("1mbc 1hlb 1dlw 1ith.A 1thb.A 1kr7.A_0-109");
Box b = getDomainPanel(input);
vBox.add(b);
this.add(vBox);
}
private Box getDomainPanel(JTextField f){
JLabel l01 = new JLabel("Input structures:");
Box hBox = Box.createHorizontalBox();
hBox.add(Box.createGlue());
hBox.add(l01);
f.setMaximumSize(new Dimension(Short.MAX_VALUE,30));
f.setToolTipText("Provide structure identifiers space separated.");
hBox.add(Box.createVerticalGlue());
hBox.add(f, BorderLayout.CENTER);
hBox.add(Box.createGlue());
return hBox;
}
public List getStructures() throws StructureException {
List structures = new ArrayList();
for (StructureIdentifier name:getNames()){
structures.add(getStructure(name));
}
return structures;
}
public List getNames() {
List names = new ArrayList();
String raw = input.getText().trim();
String[] split = raw.split(" ");
for (String name:split){
if (name != null && !name.isEmpty())
names.add(new StructureName(name.trim()));
}
return names;
}
private Structure getStructure(StructureIdentifier name) throws StructureException{
UserConfiguration config = WebStartMain.getWebStartConfig();
AtomCache cache = new AtomCache(config);
Structure s = null;
try {
s = cache.getStructure(name);
s.setName(name.getIdentifier());
} catch (Exception e){
e.printStackTrace();
}
return s;
}
}