X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fjbappletgui%2FGPCAPanel.java;h=f33521cf67a4f6a514ba6cc4a0444ca8e7f94f09;hb=588042b69abf8e60bcc950b24c283933c7dd422f;hp=b13b5630ecc37a5bbfffdb2f1936c517cb56ed7c;hpb=5cd8e373c75fb348ecda4d94d8a46468fb92756d;p=jalview.git diff --git a/src/jalview/jbappletgui/GPCAPanel.java b/src/jalview/jbappletgui/GPCAPanel.java index b13b563..f33521c 100755 --- a/src/jalview/jbappletgui/GPCAPanel.java +++ b/src/jalview/jbappletgui/GPCAPanel.java @@ -16,99 +16,80 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ - package jalview.jbappletgui; import java.awt.*; import java.awt.event.*; -public class GPCAPanel extends Panel -{ - Panel jPanel2 = new Panel(); - Label jLabel1 = new Label(); - Label jLabel2 = new Label(); - Label jLabel3 = new Label(); - protected Choice xCombobox = new Choice(); - protected Choice yCombobox = new Choice(); - protected Choice zCombobox = new Choice(); - FlowLayout flowLayout1 = new FlowLayout(); - BorderLayout borderLayout1 = new BorderLayout(); - - public GPCAPanel() - { - try - { - jbInit(); - } - catch(Exception e) - { - e.printStackTrace(); - } - - for(int i=1; i<8; i++) - { - xCombobox.addItem("dim "+i); - yCombobox.addItem("dim "+i); - zCombobox.addItem("dim "+i); - } - } - private void jbInit() throws Exception - { - this.setLayout(borderLayout1); - jPanel2.setLayout(flowLayout1); - jLabel1.setFont(new java.awt.Font("Verdana", 0, 12)); - jLabel1.setText("x="); - jLabel2.setFont(new java.awt.Font("Verdana", 0, 12)); - jLabel2.setText("y="); - jLabel3.setFont(new java.awt.Font("Verdana", 0, 12)); - jLabel3.setText("z="); - jPanel2.setBackground(Color.white); - zCombobox.setFont(new java.awt.Font("Verdana", 0, 12)); - zCombobox.addItemListener(new java.awt.event.ItemListener() - { - public void itemStateChanged(ItemEvent e) - { - zCombobox_actionPerformed(null); - } - }); - yCombobox.setFont(new java.awt.Font("Verdana", 0, 12)); - yCombobox.addItemListener(new java.awt.event.ItemListener() - { - public void itemStateChanged(ItemEvent e) - { - yCombobox_actionPerformed(null); - } - }); - xCombobox.setFont(new java.awt.Font("Verdana", 0, 12)); - xCombobox.addItemListener(new java.awt.event.ItemListener() - { - public void itemStateChanged(ItemEvent e) - { - xCombobox_actionPerformed(null); - } - }); - this.add(jPanel2, BorderLayout.SOUTH); - jPanel2.add(jLabel1, null); - jPanel2.add(xCombobox, null); - jPanel2.add(jLabel2, null); - jPanel2.add(yCombobox, null); - jPanel2.add(jLabel3, null); - jPanel2.add(zCombobox, null); - } - protected void xCombobox_actionPerformed(ActionEvent e) - { +public class GPCAPanel extends Panel { + Panel jPanel2 = new Panel(); + Label jLabel1 = new Label(); + Label jLabel2 = new Label(); + Label jLabel3 = new Label(); + protected Choice xCombobox = new Choice(); + protected Choice yCombobox = new Choice(); + protected Choice zCombobox = new Choice(); + FlowLayout flowLayout1 = new FlowLayout(); + BorderLayout borderLayout1 = new BorderLayout(); - } + public GPCAPanel() { + try { + jbInit(); + } catch (Exception e) { + e.printStackTrace(); + } - protected void yCombobox_actionPerformed(ActionEvent e) - { + for (int i = 1; i < 8; i++) { + xCombobox.addItem("dim " + i); + yCombobox.addItem("dim " + i); + zCombobox.addItem("dim " + i); + } + } - } + private void jbInit() throws Exception { + this.setLayout(borderLayout1); + jPanel2.setLayout(flowLayout1); + jLabel1.setFont(new java.awt.Font("Verdana", 0, 12)); + jLabel1.setText("x="); + jLabel2.setFont(new java.awt.Font("Verdana", 0, 12)); + jLabel2.setText("y="); + jLabel3.setFont(new java.awt.Font("Verdana", 0, 12)); + jLabel3.setText("z="); + jPanel2.setBackground(Color.white); + zCombobox.setFont(new java.awt.Font("Verdana", 0, 12)); + zCombobox.addItemListener(new java.awt.event.ItemListener() { + public void itemStateChanged(ItemEvent e) { + zCombobox_actionPerformed(null); + } + }); + yCombobox.setFont(new java.awt.Font("Verdana", 0, 12)); + yCombobox.addItemListener(new java.awt.event.ItemListener() { + public void itemStateChanged(ItemEvent e) { + yCombobox_actionPerformed(null); + } + }); + xCombobox.setFont(new java.awt.Font("Verdana", 0, 12)); + xCombobox.addItemListener(new java.awt.event.ItemListener() { + public void itemStateChanged(ItemEvent e) { + xCombobox_actionPerformed(null); + } + }); + this.add(jPanel2, BorderLayout.SOUTH); + jPanel2.add(jLabel1, null); + jPanel2.add(xCombobox, null); + jPanel2.add(jLabel2, null); + jPanel2.add(yCombobox, null); + jPanel2.add(jLabel3, null); + jPanel2.add(zCombobox, null); + } - protected void zCombobox_actionPerformed(ActionEvent e) - { + protected void xCombobox_actionPerformed(ActionEvent e) { + } - } + protected void yCombobox_actionPerformed(ActionEvent e) { + } + protected void zCombobox_actionPerformed(ActionEvent e) { + } }