X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fjbgui%2FGAlignFrame.java;h=6a91cc4e24165d9dda3402d2feaeef300e2d0297;hb=b1cf67d148cd9cca4a12d245b6dad85a0a7376c7;hp=23062e30932ef1b7bc6f0bbb9d3b6ea6f25971e2;hpb=ad0fe6750bb104d1dd26b397aed79b692ca4da8d;p=jalview.git diff --git a/src/jalview/jbgui/GAlignFrame.java b/src/jalview/jbgui/GAlignFrame.java index 23062e3..6a91cc4 100755 --- a/src/jalview/jbgui/GAlignFrame.java +++ b/src/jalview/jbgui/GAlignFrame.java @@ -284,10 +284,15 @@ public class GAlignFrame extends JInternalFrame private JMenuItem justifyLeftMenuItem=new JMenuItem(); private JMenuItem justifyRightMenuItem=new JMenuItem(); - + + JMenu autoAnnMenu = new JMenu(); protected JCheckBoxMenuItem showGroupConsensus=new JCheckBoxMenuItem(); protected JCheckBoxMenuItem showGroupConservation=new JCheckBoxMenuItem(); - + protected JCheckBoxMenuItem showConsensusHistogram=new JCheckBoxMenuItem(); + protected JCheckBoxMenuItem showSequenceLogo=new JCheckBoxMenuItem(); + protected JCheckBoxMenuItem applyAutoAnnotationSettings=new JCheckBoxMenuItem(); + + private JMenuItem grpsFromSelection = new JMenuItem(); public GAlignFrame() { try @@ -543,6 +548,15 @@ public class GAlignFrame extends JInternalFrame invertSequenceMenuItem_actionPerformed(e); } }); + grpsFromSelection.setText("Make Groups for selection"); + grpsFromSelection.addActionListener(new java.awt.event.ActionListener() + { + public void actionPerformed(ActionEvent e) + { + makeGrpsFromSelection_actionPerformed(e); + } + }); + remove2LeftMenuItem.setText("Remove Left"); remove2LeftMenuItem.setAccelerator(javax.swing.KeyStroke.getKeyStroke( java.awt.event.KeyEvent.VK_L, Toolkit.getDefaultToolkit() @@ -965,14 +979,15 @@ public class GAlignFrame extends JInternalFrame showSeqFeatures_actionPerformed(actionEvent); } }); - showSeqFeaturesHeight.setText("Vary Sequence Feature Height"); +/* + * showSeqFeaturesHeight.setText("Vary Sequence Feature Height"); showSeqFeaturesHeight.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent actionEvent) { showSeqFeaturesHeight_actionPerformed(actionEvent); } - }); + }); */ showDbRefsMenuitem.setText("Show Database Refs"); showDbRefsMenuitem.addActionListener(new ActionListener() { @@ -1014,6 +1029,38 @@ public class GAlignFrame extends JInternalFrame } }); + showConsensusHistogram.setText("Show Consensus Histogram"); + showConsensusHistogram.addActionListener(new ActionListener() + { + + public void actionPerformed(ActionEvent e) + { + showConsensusHistogram_actionPerformed(e); + } + + }); + showSequenceLogo.setText("Show Consensus Logo"); + showSequenceLogo.addActionListener(new ActionListener() + { + + public void actionPerformed(ActionEvent e) + { + showSequenceLogo_actionPerformed(e); + } + + }); + applyAutoAnnotationSettings.setText("Apply to all groups"); + applyAutoAnnotationSettings.setState(false); + applyAutoAnnotationSettings.setVisible(true); + applyAutoAnnotationSettings.addActionListener(new ActionListener() + { + + public void actionPerformed(ActionEvent e) + { + applyAutoAnnotationSettings_actionPerformed(e); + } + + }); nucleotideColour.setText("Nucleotide"); nucleotideColour.addActionListener(new java.awt.event.ActionListener() @@ -1549,6 +1596,7 @@ public class GAlignFrame extends JInternalFrame } }); tooltipSettingsMenu.setText("Sequence ID Tooltip"); + autoAnnMenu.setText("Autocalculated Annotation"); alignFrameMenuBar.add(fileMenu); alignFrameMenuBar.add(editMenu); alignFrameMenuBar.add(selectMenu); @@ -1602,11 +1650,16 @@ public class GAlignFrame extends JInternalFrame viewMenu.addSeparator(); viewMenu.add(followHighlightMenuItem); viewMenu.add(annotationPanelMenuItem); - viewMenu.add(showGroupConservation); - viewMenu.add(showGroupConsensus); + autoAnnMenu.add(applyAutoAnnotationSettings); + autoAnnMenu.add(showConsensusHistogram); + autoAnnMenu.add(showSequenceLogo); + autoAnnMenu.addSeparator(); + autoAnnMenu.add(showGroupConservation); + autoAnnMenu.add(showGroupConsensus); + viewMenu.add(autoAnnMenu); viewMenu.addSeparator(); viewMenu.add(showSeqFeatures); - viewMenu.add(showSeqFeaturesHeight); + //viewMenu.add(showSeqFeaturesHeight); viewMenu.add(featureSettings); tooltipSettingsMenu.add(showDbRefsMenuitem); @@ -1697,6 +1750,31 @@ public class GAlignFrame extends JInternalFrame selectMenu.add(invertSequenceMenuItem); selectMenu.add(invertColSel); selectMenu.add(deleteGroups); + selectMenu.add(grpsFromSelection); + } + + protected void applyAutoAnnotationSettings_actionPerformed(ActionEvent e) + { + // TODO Auto-generated method stub + + } + + protected void showConsensusHistogram_actionPerformed(ActionEvent e) + { + // TODO Auto-generated method stub + + } + + protected void showSequenceLogo_actionPerformed(ActionEvent e) + { + // TODO Auto-generated method stub + + } + + protected void makeGrpsFromSelection_actionPerformed(ActionEvent e) + { + // TODO Auto-generated method stub + } protected void showGroupConsensus_actionPerformed(ActionEvent e)