Tagged Questions
JInternalFrame is a lightweight Java Swing component that provides many of the features of a native frame, including dragging, closing, becoming an icon, resizing, title display, and support for a menu bar.
6
votes
2answers
166 views
Java method works on windows but not Macintosh?
I had a real weird method which is used to hide JInternalFrame's title bar. Now the dilemma is below method works on windows platform,
((javax.swing.plaf.basic.BasicInternalFrameUI) ...
4
votes
1answer
168 views
JInternalFrame adding an icon to the title bar
I'd like to add an ImageIcon or comparable to a JInternalFrame's titlebar such that the [x] icon is east-most, the iconable icon is second east-most, and a custom icon is third east-most. Is this ...
3
votes
3answers
115 views
JDesktopPane - how to get active frame
How to get active (having focus) frame (JInternalFrame) that is inside JDesktopPane? I need it for my MDI notepad (not that anybody would use that, just a training project). Looking at api, I see only ...
3
votes
3answers
438 views
How do I open a JInternalFrame centered in a JDesktopPane?
I am adding a bunch of JInternalFrames into a JDesktopPane, as the user selects to open various features through the menus. But I would like the internal frames to open centered in the desktop pane, ...
3
votes
1answer
83 views
Scaling and zoom
I need to implement zoom for a JDesktopPane contained in a JScrollPane. I have had prior success zooming by overriding the paintComponent(...) method and calling scale(double,double).
This is not ...
3
votes
1answer
223 views
programmatically minimize a JInternalFrame?
Is there any way to programmatically minimize a JInternalFrame?
2
votes
4answers
145 views
Preventing JInternalFrame from being moved out of a JDesktopPane
When I have a JInternalFrame in a JDesktopPane, the JInternalFrame is movable (which is good). However, it's possible to move it outside of the visible scope of the JDesktopPane (which I'm not so fond ...
2
votes
2answers
98 views
Java MVC & Composite Design Pattern With Internal Frames
Still wondering the best way to do Model-View-Controller Software Architecture, Do I pass the Controller into the View, or do I use the Observer Design Pattern and let the Controller Observe any ...
2
votes
1answer
170 views
hiding title bar of JInternalFrame? -java
I found some code online, I editted it a bit. I want to hide title bar of JInternalFrame.
JInternalFrame frame = new JInternalFrame();
// Get the title bar and set it to null
...
2
votes
1answer
72 views
JInternalFrame snaps back to original position when cursor leaves container
As the title says I have a JInternalFrame inside a JPanel, all is working great, but when I reposition the internal frame and then move the cursor outside the JPanel, it resets its position.
I ...
2
votes
2answers
74 views
How to keep menu item on top of text area?
I'm using netbeans to write the GUI.
I have a menu bar with few menu items and the main window has a text area all over it.
when I press the menu item,I cant see it because the text area is on top ...
2
votes
2answers
73 views
JDesktopPane placement
I have a JDesktopPane and want to display JInternalFrames in a grid style without overlaying frames. The dymensions of the frames will vary so their location should be assigned dynamically. I could ...
2
votes
2answers
251 views
JInternalFrame minimize while maintaining current location
I need the iconable/minimize feature of JInternalFrame to collapse the frame (which it does), but also maintain the JInternalFrame's position within its parent component. Currently, when I press the ...
2
votes
2answers
173 views
Adding jinternalframe class to jdesktoppane using other jinternalframe class
I'm creating a very simple program.
I have created this classes :
MainJframeClass, JDesktopPaneClass, JinternalFrameClass1 and JinternalFrameClass2.
what ive done is that i instantiated my ...
2
votes
2answers
424 views
Custom Java Window Title Bar Menu
I'm trying to allow the user to change the title of a window in Java without adding components to the window itself. I'm actually trying this with a JInternalFrame, but figure the solution should be ...
2
votes
1answer
187 views
JInternalFrame KeyListener focus
Good day,
I have this view [extends JInternalFrame that has a controller [implements KeyListener].
On a method of mine, void loadListener() is where I added the KeyListener to the view.
At first ...
2
votes
3answers
167 views
JInternalFrame with scala.swing
scala swing looks interesting, but somehow it is incomplete, and sometimes I still need to use the old java classes, but i have no clue how I have to wrap them correctly.
So how do I wrap ...
2
votes
1answer
232 views
JInternalFrame in full-screen mode
I intend to use a JInternalFrame as a modal JDialog in full-screen mode, however, it is not currently being shown when it gets called. Do I need to add it to some container? I tried adding it to a ...
2
votes
1answer
186 views
CubicCurve2D connecting two JInternalFrame instances
I have been trying to find a way (in Swing) to connect two JInternalFrames with a CubicCurve2D (otherwise known as a cubic bezier curve). The overall effect I'm trying to achive is an interface ...
2
votes
1answer
278 views
MDI : How to create snappable internal jframes
I am interested in creating a work place consisting of multiple jframes. I would like to implement the functionality that google dashboard uses to dock their frames into a position. I would also like ...
2
votes
1answer
1k 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?
2
votes
2answers
627 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 maximizing is definitely ...
1
vote
2answers
96 views
Is it possible to remove the little dropdown arrow in a JInternalFrame?
I'm using a JInternalFrame and I want to remove the dropdown in the upper left of the frame, as it serves no purpose (I've disabled resizeable, closable, etc.)
I don't see a property for this, and ...
1
vote
3answers
82 views
why does JInternalFrame's setSize not work
I make a JFrame, and add a JDesktopPane into the JFrame, and then add a JInternalFrame into the JDesktopPane, the JInternalFrame' initial size is the same as JDesktopPane. When the JFrame is maxmized, ...
1
vote
2answers
161 views
Disabling the shadow around JInternalFrames with the Aqua Look and Feel
On Mac OS X with the native Aqua Look and Feel, JInternalFrames have a shadow that is part of the frame border. When the internal frame is maximized, the shadow is still visible and takes a lot of ...
1
vote
1answer
68 views
How to make the JInternalFrame of the specified size?
I have a JFrame.
I have added menu-bar to it.
I have set its size and location using following line.
frmMain.setBounds(0, 0, 1024, 768); // JFrame
Next I have added a JInternalFrame to the code ...
1
vote
3answers
149 views
Add JInternalFrame to JDesktopPane in execution time
I have a problem with a JDesktopPane, I add JInternalFrame on it and then show it on a JFrame.
The problem is when I try to add another JInternalFrame in execution time.
I use the same method to ...
1
vote
1answer
226 views
JInternalFrame Image display;
I tried adding an image to JInternalFrame. my paint() looks like this:
public void paint (Graphics g) {
//this should draw the loaded image
if (bufferedImage != null) {
...
1
vote
3answers
110 views
JInternalFrame selection
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 ...
1
vote
2answers
65 views
Placing JFrames inside JFrames
I'm working on an application that contains many JFrames, with the amateurish result that my program appears in the taskbar many times, one for each currently visible JFrame. I'm aware that ...
1
vote
1answer
106 views
how to get focus to an internal frame in html page
How to get focus to a internal jframe inside a jframe when we show our applet on browser and applet start focus automatically go to browser arrow keys do page up and down no my specifiec order that i ...
1
vote
3answers
458 views
How can i get the JFrame (parent) of a JInternalFrame?
I'm doing a program like Gimp and i have a JInternalFrame for change the color of shapes and
i paint the shapes in other JInternalFrame so i have to get my frame to get the JInternalFrame
where i want ...
1
vote
2answers
239 views
Keep focus of JInternalFrame
Is there any way to keeps focus of a JInternalFrame, I mean, always focused until it closed or showVisible(false) etc? I already search for a while but I only found a "temporary" focus, that is when ...
1
vote
3answers
394 views
using JInternalFrame and some JButton
can we use a JInternalFame with a button into the main fram (by JDesktopPane of corz), the button that open up the JInternalFame ? how?
thks
1
vote
1answer
566 views
Java - Problem when Resizing a JInternalFrame
In a previous SO question, I was talking about somes issues dealing with my MDI architecture. I have now another problem when resizing my JInternalFrame. Here is a short video that illustrates it.
I ...
1
vote
3answers
948 views
Java - How to make a set of JInternalFrame independant of each other?
I'm programming a short Paint program like and I'm trying to make an MDI architecture for it. To make that happen, I used JInternalFrame inside a JDesktopPane.
Although I kind of obtain multiple ...
1
vote
1answer
238 views
Java Swing arranging JInternalFrames
Is there any default functionality for arranging JInternalFrames in Java Swing?
I would like to have the Cascade, Tile, etc... functionality within my Java Swing application like this: ...
1
vote
1answer
49 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
38 views
Maximize JInternalFrame event
InternalFrameListener does not implement the method of InternalFrame State Change.
I was wondering to know that if any event can be implemented to check if the JInternalFrame is maximized or not?
If ...
0
votes
1answer
28 views
Maximizing internal frame
Does internalFrameIconified works only after internalFrameDeiconified?
And when I iconfy it diplayes Minimized..Is it a java bug?
Can we call the maximize method before minimizing it?
// add ...
0
votes
1answer
51 views
How to set JInternalFrame's size
i have a JFrame in which i set the content pane with a JDesktopPane.
jDesktopPane1 = new JDesktopPane();
setContentPane(jDesktopPane1);
My JFrame is full screen size, when i add a JInternalFrame ...
0
votes
1answer
38 views
How can i access to JinternlFrme in one Jframe through other Jframes?
I'm working with netbens and i have two JFrames in same package: F1 and F2
F1 consists of two JInternlFrames that named in1 and in2.
F2 consists of Jbutton that named but.
Now, how can i show the ...
0
votes
1answer
62 views
Forcing a size check of a JInternalFrame
Is there a method that will check if a JInternalFrame's size is larger than the maximum size set by setMaximumSize?
Currently I'm performing a pack;, which may result in a window that's bigger than ...
0
votes
0answers
18 views
JDesktopPane issue with JInternalFrame
I have a JDesktopPane into which i add two JInternal frames. When i add second jinternalframe and the first InternalFrame is maximized, the first one automatically gets reset to it's default size. The ...
0
votes
1answer
42 views
Single instance of a JInternalFrame
I have a bunch of JInternalFrames that are need to be added to a JDesktopPane, all JIFs are related to each others, each JIF has a next button when I press the next button I want the current JIF to be ...
0
votes
1answer
84 views
How to get JInternalFrame Titlebar properly styled by Insubstantial
I have a problem with the style of JInternalFrames under Insubstantial 7.0. I'm working with Eclipse and WindowBuilder for Swing. In the Widowbuilder Preview, JInternalFrames, that are dropped to a ...
0
votes
0answers
18 views
Java - How to make a set of JInternalFrame dependant on other?
I have opened a JInternalFrame from my parent JFrame form. Now I want to open another JInternalFrame on that frame to do my leftover task after completing the current task in this JIntyernalFrame ...
0
votes
0answers
73 views
JInternalFrame resize
I have an internal frame that contain 2D image panel.
When resizing the frame I would like to keep a fix width,height ratio.
What is the best way to do that?
Thanks,
Guy
0
votes
0answers
39 views
how to invoke a method from other class using another class
i am new in java programming. i have a little problem with the program i am creating. Here is the situation: I have a mainFrameClass, jDesktopPaneClass, and 2 internalFrame class. i instantiated the ...
0
votes
2answers
164 views
Internal JFrame Properties
I have a JInternalFrame as shown below.
Are there properties that allow for?
coloring
hiding the title bar
adding text
Further Customization*
to the top bar?
The only thing I have been able to ...