X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fjbgui%2FGPCAPanel.java;h=f5612dd74bdc67c5192d0cdcd72e17f7c59ffa08;hb=4cea7a0328724b90a6a7c16ae8c926e0cc12cedd;hp=e4b20a06fb29d82fb730e681420cf17d1b18567b;hpb=8a6fa9ea9900d0f106529c3f6283e7f9d76dd2cb;p=jalview.git diff --git a/src/jalview/jbgui/GPCAPanel.java b/src/jalview/jbgui/GPCAPanel.java index e4b20a0..f5612dd 100755 --- a/src/jalview/jbgui/GPCAPanel.java +++ b/src/jalview/jbgui/GPCAPanel.java @@ -1,13 +1,13 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.6) - * Copyright (C) 2010 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8) + * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, G Barton, M Clamp, S Searle * * This file is part of Jalview. * * Jalview 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. - * + * * Jalview 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 @@ -17,6 +17,8 @@ */ package jalview.jbgui; +import jalview.util.MessageManager; + import java.awt.*; import java.awt.event.*; @@ -39,6 +41,8 @@ public class GPCAPanel extends JInternalFrame protected JComboBox zCombobox = new JComboBox(); + protected JButton resetButton = new JButton(); + FlowLayout flowLayout1 = new FlowLayout(); BorderLayout borderLayout1 = new BorderLayout(); @@ -71,6 +75,20 @@ public class GPCAPanel extends JInternalFrame protected JMenu associateViewsMenu = new JMenu(); + protected JMenu calcSettings = new JMenu(); + + protected JCheckBoxMenuItem nuclSetting = new JCheckBoxMenuItem(); + + protected JCheckBoxMenuItem protSetting = new JCheckBoxMenuItem(); + + protected JCheckBoxMenuItem jvVersionSetting = new JCheckBoxMenuItem(); + + protected JLabel statusBar = new JLabel(); + + protected GridLayout statusPanelLayout = new GridLayout(); + + protected JPanel statusPanel = new JPanel(); + public GPCAPanel() { try @@ -127,8 +145,18 @@ public class GPCAPanel extends JInternalFrame xCombobox_actionPerformed(e); } }); - fileMenu.setText("File"); - saveMenu.setText("Save as"); + resetButton.setFont(new java.awt.Font("Verdana", 0, 12)); + resetButton.setText(MessageManager.getString("action.reset")); + resetButton.addActionListener(new java.awt.event.ActionListener() + { + @Override + public void actionPerformed(ActionEvent e) + { + resetButton_actionPerformed(e); + } + }); + fileMenu.setText(MessageManager.getString("action.file")); + saveMenu.setText(MessageManager.getString("action.save_as")); eps.setText("EPS"); eps.addActionListener(new ActionListener() { @@ -145,7 +173,7 @@ public class GPCAPanel extends JInternalFrame png_actionPerformed(e); } }); - outputValues.setText("Output Values..."); + outputValues.setText(MessageManager.getString("label.output_values")); outputValues.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) @@ -153,7 +181,7 @@ public class GPCAPanel extends JInternalFrame outputValues_actionPerformed(e); } }); - outputPoints.setText("Output points..."); + outputPoints.setText(MessageManager.getString("label.output_points")); outputPoints.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) @@ -161,7 +189,7 @@ public class GPCAPanel extends JInternalFrame outputPoints_actionPerformed(e); } }); - outputProjPoints.setText("Output transformed points..."); + outputProjPoints.setText(MessageManager.getString("label.output_transformed_points") + "..."); outputProjPoints.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) @@ -176,7 +204,7 @@ public class GPCAPanel extends JInternalFrame print_actionPerformed(e); } }); - viewMenu.setText("View"); + viewMenu.setText(MessageManager.getString("aciton.view")); viewMenu.addMenuListener(new MenuListener() { public void menuSelected(MenuEvent e) @@ -192,7 +220,7 @@ public class GPCAPanel extends JInternalFrame { } }); - showLabels.setText("Show Labels"); + showLabels.setText(MessageManager.getString("label.show_labels")); showLabels.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) @@ -200,8 +228,8 @@ public class GPCAPanel extends JInternalFrame showLabels_actionPerformed(e); } }); - print.setText("Print"); - bgcolour.setText("Background Colour..."); + print.setText(MessageManager.getString("action.print")); + bgcolour.setText(MessageManager.getString("label.background_colour") + "..."); bgcolour.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) @@ -209,7 +237,7 @@ public class GPCAPanel extends JInternalFrame bgcolour_actionPerformed(e); } }); - originalSeqData.setText("Input Data..."); + originalSeqData.setText(MessageManager.getString("label.input_data")); originalSeqData.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) @@ -217,16 +245,59 @@ public class GPCAPanel extends JInternalFrame originalSeqData_actionPerformed(e); } }); - associateViewsMenu.setText("Associate Nodes With"); - this.getContentPane().add(jPanel2, BorderLayout.SOUTH); + associateViewsMenu.setText(MessageManager.getString("label.associate_nodes_with")); + calcSettings.setText(MessageManager.getString("action.change_params")); + nuclSetting.setText(MessageManager.getString("label.nucleotide_matrix")); + protSetting.setText(MessageManager.getString("label.protein_matrix")); + nuclSetting.addActionListener(new ActionListener() + { + + @Override + public void actionPerformed(ActionEvent arg0) + { + nuclSetting_actionPerfomed(arg0); + } + }); + protSetting.addActionListener(new ActionListener() + { + + @Override + public void actionPerformed(ActionEvent arg0) + { + protSetting_actionPerfomed(arg0); + } + }); + jvVersionSetting.setText(MessageManager.getString("label.jalview_pca_calculation")); + jvVersionSetting.addActionListener(new ActionListener() + { + @Override + public void actionPerformed(ActionEvent arg0) + { + jvVersionSetting_actionPerfomed(arg0); + } + }); + calcSettings.add(jvVersionSetting); + calcSettings.add(nuclSetting); + calcSettings.add(protSetting); + statusPanel.setLayout(statusPanelLayout); + statusBar.setFont(new java.awt.Font("Verdana", 0, 12)); + // statusPanel.setBackground(Color.lightGray); + // statusBar.setBackground(Color.lightGray); + // statusPanel.add(statusBar, null); + JPanel panelBar = new JPanel(new BorderLayout()); + panelBar.add(jPanel2, BorderLayout.NORTH); + panelBar.add(statusPanel, BorderLayout.SOUTH); + this.getContentPane().add(panelBar, 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); + jPanel2.add(resetButton, null); jMenuBar1.add(fileMenu); jMenuBar1.add(viewMenu); + jMenuBar1.add(calcSettings); fileMenu.add(saveMenu); fileMenu.add(outputValues); fileMenu.add(print); @@ -240,6 +311,24 @@ public class GPCAPanel extends JInternalFrame viewMenu.add(associateViewsMenu); } + protected void resetButton_actionPerformed(ActionEvent e) + { + // TODO Auto-generated method stub + + } + + protected void protSetting_actionPerfomed(ActionEvent arg0) + { + // TODO Auto-generated method stub + + } + + protected void nuclSetting_actionPerfomed(ActionEvent arg0) + { + // TODO Auto-generated method stub + + } + protected void outputPoints_actionPerformed(ActionEvent e) { // TODO Auto-generated method stub @@ -303,4 +392,10 @@ public class GPCAPanel extends JInternalFrame { } + + protected void jvVersionSetting_actionPerfomed(ActionEvent arg0) + { + // TODO Auto-generated method stub + + } }