Tagged Questions

0
votes
2answers
26 views

Maintaining a single instance of JInternalFrame?

Hi Everyone, I have an application which opens multiple JIFs, But I only want to create a single instance of the JIF, so I use these function to check that, and I use dispose to c …
0
votes
1answer
13 views

How do I find the current focussed InternalFrame?

I am having multiple InternalFrames (JIF) added to a desktop manager. How do I know which one has the focus at the moment?
0
votes
1answer
15 views

JInternalFrame and Keybinding

How do I bind a function key say(F11 etc) to a JInternalFrame, so it can activate a particular action. I tried with the following this.getInputMap().put(KeyStroke.getKeyStroke( …
0
votes
1answer
59 views

Java Swing: JInternalFrame: need a dialog popup

I have a JInternalFrame window that needs to popup a modal dialog box when a JButton is pressed. At first, I tried using JDialog, but I found that JDialog constructor needs: JFra …
0
votes
3answers
47 views

Listening to all JInternalFrame events - Java

Hi, I'm trying to internationalise a Java applet and with that, support scripts which are written from right to left. I want to set up component orientations for all java componen …
0
votes
2answers
262 views

Swing: How could I get JInternalFrame treated equally to other components inside a container?

Hello! Background information: I am implementing a visual diagram editor, which consists of different complex elements (re-sizable, with title bar, sub-elements) and different …
0
votes
1answer
69 views

Trouble Updating Title in JInternalFrame GUI component.

Hello, i am trying to update the title of a JInternalFrame component in my Java Project. The component is an instance of my ImageFrame class which extends JInternalFrame, and in m …
2
votes
1answer
252 views

How to get the z order of JInternalFrames in a JDesktopPane

How would one go about getting the z order (layer depth of ) all the JInternalFrames inside a JDesktopPane. There does not seem to be a straight forward way for this. Any ideas?
1
vote
2answers
253 views

JInternalFrame Does Not Fully Maximize Under Mac OS X

I'm working with JInternalFrame's under Mac OS X Java 5 and when maximizing a JInternalFrame within a JDesktopPane the window doesn't fully maximize, but the property to allow maxi …