Tagged Questions
3
votes
3answers
112 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
431 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 ...
2
votes
4answers
143 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
71 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
1answer
185 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 ...
1
vote
3answers
80 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
3answers
148 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
2answers
189 views
Content of JDesktopPane dissappears when resized - Java Swing
I have been working on Java Swing for a while. I paint something(draw some basic shapes like circle,rectangle etc) on a JDesktopPane and once I resize the frame window that contains jDesktopPane or ...
1
vote
3answers
1k views
Background settings for a JDesktopPane
I'm using a self-made DesktopPaneUI for a JDesktopPane, I've written the proper methods for the class, and I'm running into trouble. When I resize the JDesktopPane, the background image doesn't resize ...
0
votes
0answers
85 views
Swing Borders not displaying properly unless full screen
Hi have a JFrame containing a JDesktopPane that can contain an arbritrary number of JPanels (each JPanel contains a Processing applet). Unfortunately, the borders on some sides of the panels do not ...
0
votes
6answers
458 views
JInternalFrame to front and focussed
How does one push a JInternalFrame to the top of all the frames in a JDesktopPane?
0
votes
1answer
258 views
How to programmatically maximize JDesktopPane
I am using JDesktopPane, and I want it to be maximized when I load it. How can I do it?
0
votes
1answer
385 views
How to set JInternalFrame minimised title background?
I can set the title bar background when maximised using InternalFrame.activeTitleBackground and InternalFrame.inactiveTitleBackground but how do I set it when the internal frame is minimised?
0
votes
2answers
667 views
setting Swing JInternalFrame lnf manually
UIManager.put("InternalFrame.activeTitleBackground", new ColorUIResource(new Color(207,255,247)));
UIManager.put("InternalFrame.inactiveTitleBackground", new ColorUIResource(new Color(207,255,247)));
...
0
votes
1answer
320 views
How to add scrollable JTextArea to jDesktopPane
I was try several opinion but neither of them it seams to work.
This method returns JTextArea
private static JTextArea getJArea() {
if (jArea == null) {
jArea = new JTextArea();
...
0
votes
1answer
915 views
Which components can be added in a JDesktopPane?
I'm having some trouble designing an MDI Application with Swing.
I have no trouble implementing the JDesktopPane & JInternalFrames, my question will be a little more specific. Here is my base ...
0
votes
2answers
1k views
Swing: How could I get JInternalFrame treated equally to other components inside a container?
Background information:
I am implementing a visual diagram editor, which consists of
different complex elements (re-sizable, with title bar, sub-elements) and
different simple elements (not ...