X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FFeatureEditor.java;h=d75404a66e54a0f5851fcdf335545295f54c77d5;hb=80e3ac6ebcb27e0d13ce639d1c3105f7cd6f83fe;hp=00ea668cfada59632923f522b6ec5bf0661c56ed;hpb=f13c8f13408308b89e271ee9f4f11bd0493c1973;p=jalview.git diff --git a/src/jalview/gui/FeatureEditor.java b/src/jalview/gui/FeatureEditor.java index 00ea668..d75404a 100644 --- a/src/jalview/gui/FeatureEditor.java +++ b/src/jalview/gui/FeatureEditor.java @@ -33,7 +33,10 @@ import javax.swing.JScrollPane; import javax.swing.JSpinner; import javax.swing.JTextArea; import javax.swing.JTextField; +import javax.swing.SpinnerNumberModel; import javax.swing.SwingConstants; +import javax.swing.event.ChangeEvent; +import javax.swing.event.ChangeListener; import javax.swing.event.DocumentEvent; import javax.swing.event.DocumentListener; @@ -80,8 +83,6 @@ public class FeatureEditor AlignmentPanel ap; - Object[] options; - JTextField name; JTextField group; @@ -170,10 +171,34 @@ public class FeatureEditor }); description = new JTextArea(3, 25); + start = new JSpinner(); end = new JSpinner(); start.setPreferredSize(new Dimension(80, 20)); end.setPreferredSize(new Dimension(80, 20)); + + /* + * ensure that start can never be more than end + */ + start.addChangeListener(new ChangeListener() + { + @Override + public void stateChanged(ChangeEvent e) + { + Integer startVal = (Integer) start.getValue(); + ((SpinnerNumberModel) end.getModel()).setMinimum(startVal); + } + }); + end.addChangeListener(new ChangeListener() + { + @Override + public void stateChanged(ChangeEvent e) + { + Integer endVal = (Integer) end.getValue(); + ((SpinnerNumberModel) start.getModel()).setMaximum(endVal); + } + }); + final JLabel colour = new JLabel(); colour.setOpaque(true); colour.setMaximumSize(new Dimension(30, 16)); @@ -268,6 +293,8 @@ public class FeatureEditor group.setText(sf.getFeatureGroup()); start.setValue(new Integer(sf.getBegin())); end.setValue(new Integer(sf.getEnd())); + ((SpinnerNumberModel) start.getModel()).setMaximum(sf.getEnd()); + ((SpinnerNumberModel) end.getModel()).setMinimum(sf.getBegin()); SearchResultsI highlight = new SearchResults(); highlight.addResult(sequences.get(0), sf.getBegin(), @@ -355,29 +382,22 @@ public class FeatureEditor start.setValue(new Integer(firstFeature.getBegin())); end.setValue(new Integer(firstFeature.getEnd())); + ((SpinnerNumberModel) start.getModel()).setMaximum(firstFeature.getEnd()); + ((SpinnerNumberModel) end.getModel()).setMinimum(firstFeature.getBegin()); + description.setText(firstFeature.getDescription()); featureColour = fr.getFeatureStyle(featureType); oldColour = featureColour; updateColourButton(mainPanel, colour, oldColour); - if (forCreate) - { - options = new Object[] { MessageManager.getString("action.ok"), - MessageManager.getString("action.cancel") }; - } - else - { - options = new Object[] { MessageManager.getString("label.amend"), - MessageManager.getString("action.delete"), - MessageManager.getString("action.cancel") }; - } } /** * Presents a dialog allowing the user to add new features, or amend or delete * an existing feature. Currently this can be on * * If the supplied feature type is null, show (and update on confirm) the type @@ -387,21 +407,42 @@ public class FeatureEditor public void showDialog() { RunResponse okAction = forCreate ? getCreateAction() : getAmendAction(); - RunResponse deleteAction = getDeleteAction(); - Runnable cancelAction = getCancelAction(); - - String title = forCreate - ? MessageManager.getString("label.create_new_sequence_features") - : MessageManager.formatMessage("label.amend_delete_features", - new String[] - { sequences.get(0).getName() }); - - JvOptionPane.newOptionDialog(Desktop.desktop).response(okAction) - .response(deleteAction).defaultResponse(cancelAction) - .showInternalDialog(mainPanel, title, - JvOptionPane.YES_NO_CANCEL_OPTION, - JvOptionPane.QUESTION_MESSAGE, null, options, - MessageManager.getString("action.ok")); + RunResponse cancelAction = getCancelAction(); + + /* + * set dialog action handlers for OK (create/Amend) and Cancel options + * also for Delete if applicable (when amending features) + */ + JvOptionPane dialog = JvOptionPane.newOptionDialog(Desktop.desktop) + .addResponse(okAction).addResponse(cancelAction); + if (!forCreate) + { + dialog.addResponse(getDeleteAction()); + } + + String title = null; + Object[] options = null; + if (forCreate) + { + title = MessageManager + .getString("label.create_new_sequence_features"); + options = new Object[] { MessageManager.getString("action.ok"), + MessageManager.getString("action.cancel") }; + } + else + { + title = MessageManager.formatMessage("label.amend_delete_features", + new String[] + { sequences.get(0).getName() }); + options = new Object[] { MessageManager.getString("label.amend"), + MessageManager.getString("action.delete"), + MessageManager.getString("action.cancel") }; + } + + dialog.showInternalDialog(mainPanel, title, + JvOptionPane.YES_NO_CANCEL_OPTION, + JvOptionPane.PLAIN_MESSAGE, null, options, + MessageManager.getString("action.ok")); } /** @@ -412,17 +453,18 @@ public class FeatureEditor * * @return */ - protected Runnable getCancelAction() + protected RunResponse getCancelAction() { - Runnable defaultResponse = new Runnable() + RunResponse okAction = new RunResponse(JvOptionPane.CANCEL_OPTION) { + @Override public void run() { ap.highlightSearchResults(null); ap.paintAlignment(false, false); } }; - return defaultResponse; + return okAction; } /**