X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fjbgui%2FGPCAPanel.java;h=62234bfb049b587304ef781006235b111ea7b0dd;hb=bb3f28791ddb1a4f55e78a3bcd2ff4a591ebe95d;hp=6ad36e85a7aa732fd90388ff6bda429dd459e9b4;hpb=506d60f0e188723ddc91c26824b41ac7034df3fe;p=jalview.git diff --git a/src/jalview/jbgui/GPCAPanel.java b/src/jalview/jbgui/GPCAPanel.java index 6ad36e8..62234bf 100755 --- a/src/jalview/jbgui/GPCAPanel.java +++ b/src/jalview/jbgui/GPCAPanel.java @@ -1,25 +1,25 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.4) - * Copyright (C) 2008 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7) + * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, 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.*; @@ -57,6 +57,10 @@ public class GPCAPanel extends JInternalFrame JMenuItem outputValues = new JMenuItem(); + JMenuItem outputPoints = new JMenuItem(); + + JMenuItem outputProjPoints = new JMenuItem(); + protected JMenu viewMenu = new JMenu(); protected JCheckBoxMenuItem showLabels = new JCheckBoxMenuItem(); @@ -149,6 +153,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 +231,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 +240,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) { }