I have a JDesktopPane containing some JInternalFrames. I want some menus on the menubar to be activated only when one of the JInternalFrames is selected. I've tried using VetoableChangeListener, with the following code in it:

JInternalFrame selectedFrame = desk.getSelectedFrame(); 
if ((selectedFrame != null)) {  
    imageMenu.setEnabled(Boolean.TRUE);         
} else {
    imageMenu.setEnabled(Boolean.FALSE);            
}

But the results are not what I expected - for example, the menu is enabled only the second time I add a frame. when I close all frames, it remains enabled.

How can I make this work?

link|improve this question

80% accept rate
feedback

3 Answers

up vote 1 down vote accepted

you have to read basic tutorial about JInternalFrames with link to the InternalFrameListener,

but another and look like as better way is programatically to know those event in all cases and evety times is by adding PropertyChangeListener as shows examples Getting All Frames in a JDesktopPane Container, by adding PropertyChangeListener you can listeng for these events

link|improve this answer
Exactly what the doctor ordered.. Used the PropertyChangeListener and worked the first time around. Thanks! – Asaf Aug 28 '11 at 9:25
glad that helps – mKorbel Aug 28 '11 at 9:32
feedback

Add an InternalFrameListener to each internal frame added to the desktop pane, and each time an event is triggered, execute the code you have shown in your question.

This code could be better written though:

  • setEnabled takes a primitive boolean as argument, not a java.lang.Boolean. Use true and false rather than Boolean.TRUE and Boolean.FALSE.
  • The expression (selectedFrame != null) evaluates as a boolean. Just write

imageMenu.setEnabled(selectedFrame != null);

instead of

if ((selectedFrame != null)) {  
    imageMenu.setEnabled(Boolean.TRUE);         
} else {
    imageMenu.setEnabled(Boolean.FALSE);            
}
link|improve this answer
feedback

I would just create a custom event and fire it when a JInternalFrame gets focus (isActivated). The menu items would listen for this event, intercept it and set their status enabled or disabled accordingly. The advantage here is that you don't have to handle what menu items should be available for which types of internal frames, just fire the appropriate event. It'll make your life easier if you add more internal frames in the future.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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