I'm writing a fairly simple IDE for developing embedded programs (for iRobot's Create platform) and almost every single button and menu item is backed by Java's Action system. This has made it easier to handle all the operations that the user will want without duplicating an operation's trigger.

What I would like to know is, how do I disable the JButtons and JMenuItems created from an Action by disabling the Action itself?

In case it helps, I've written an Action-wrapping class that allows me to easily create a JButton or JMenuItem straight from the Action itself, which means I have hooks in place already to add stuff to the buttons or menu items should the need arise.

Any suggestions?

link|improve this question

80% accept rate
what happened when you tried to disable the action? As one of the answers mentions, should work without any further requiring any special wiring on your part. If it doesn't, something's wrong with your code :-) – kleopatra May 12 '11 at 11:54
@kleopatra: It seems it really is my code at fault here. I'm checking a JTabbedPane to see who's selected and somehow it's failing... – Raceimaztion May 12 '11 at 18:05
feedback

2 Answers

up vote 1 down vote accepted

Short answer:
anAction.setEnabled( false );

Shorter answer:
http://sscce.org/

link|improve this answer
Okay, it seems my problem was not related to Actions not disabling the associated buttons and menu items, but more the code that should have been triggering the disabling of the Actions. – Raceimaztion May 12 '11 at 18:01
feedback

You can store all buttons and menuitems to List<AbstractButton> buttons and add listener to action:

action.addPropertyChangeListener(new PropertyChangeListener() {
   public void propertyChange(PropertyChangeEvent evt) {
      if (evt.getPropertyName().equals("enabled")) {
         boolean isEnabled = (Boolean)evt.getNewValue();
         for (AbstractButton button : buttons) {
            button.setEnabled(isEnabled);
         }
      }
   }
});
link|improve this answer
wrong answer - that's done internally already – kleopatra May 12 '11 at 11:55
It seems that my code is at fault more than Actions not disabling other things. I'll work through my code to see what the problem is. – Raceimaztion May 12 '11 at 18:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.