X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fjbgui%2FGPCAPanel.java;h=d45edd6de507feb963ed2b6470ee9018d03ddc76;hb=153dd62dc91da13ae732600e6ea55ddbe15eab39;hp=08a2f3af879cfea249a1f0c6a96a39c5ab48209d;hpb=2de8acfae59aced665e4c37ad0f7dcc2ed68818e;p=jalview.git diff --git a/src/jalview/jbgui/GPCAPanel.java b/src/jalview/jbgui/GPCAPanel.java index 08a2f3a..d45edd6 100755 --- a/src/jalview/jbgui/GPCAPanel.java +++ b/src/jalview/jbgui/GPCAPanel.java @@ -1,25 +1,25 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Development Version 2.4.1) - * Copyright (C) 2009 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.6) + * Copyright (C) 2010 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle * - * 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 file is part of Jalview. * - * 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. + * 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. * - * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + * 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 + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with Jalview. If not, see . */ package jalview.jbgui; import java.awt.*; import java.awt.event.*; + import javax.swing.*; import javax.swing.event.*; @@ -56,6 +56,9 @@ public class GPCAPanel extends JInternalFrame JMenuItem print = new JMenuItem(); JMenuItem outputValues = new JMenuItem(); + + JMenuItem outputPoints = new JMenuItem(); + JMenuItem outputProjPoints = new JMenuItem(); protected JMenu viewMenu = new JMenu(); @@ -149,6 +152,22 @@ public class GPCAPanel extends JInternalFrame outputValues_actionPerformed(e); } }); + outputPoints.setText("Output points..."); + outputPoints.addActionListener(new ActionListener() + { + public void actionPerformed(ActionEvent e) + { + outputPoints_actionPerformed(e); + } + }); + outputProjPoints.setText("Output transformed points..."); + outputProjPoints.addActionListener(new ActionListener() + { + public void actionPerformed(ActionEvent e) + { + outputProjPoints_actionPerformed(e); + } + }); print.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) @@ -211,6 +230,8 @@ public class GPCAPanel extends JInternalFrame fileMenu.add(outputValues); fileMenu.add(print); fileMenu.add(originalSeqData); + fileMenu.add(outputPoints); + fileMenu.add(outputProjPoints); saveMenu.add(eps); saveMenu.add(png); viewMenu.add(showLabels); @@ -218,6 +239,18 @@ public class GPCAPanel extends JInternalFrame viewMenu.add(associateViewsMenu); } + protected void outputPoints_actionPerformed(ActionEvent e) + { + // TODO Auto-generated method stub + + } + + protected void outputProjPoints_actionPerformed(ActionEvent e) + { + // TODO Auto-generated method stub + + } + protected void xCombobox_actionPerformed(ActionEvent e) { }