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
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
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 ...
2
votes
3answers
216 views
@Override error when java project transfered from ubuntu to xp
My current task is taking a Java project written and developed in Ubuntu NetBeans (extensively using the palette, which, it seems to me, locks me into continuing to use NB) and transferring it to XP, ...
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 ...
1
vote
1answer
564 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
945 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 ...
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
1answer
208 views
Fullscreen Exclusive mode JDesktopPane
Is it a bad idea to make a full-screen mdi application? Has anyone else ever tried this? Currently working on redesigning an application that is used on touchscreen terminals. Space is critical and I ...
0
votes
1answer
378 views
JDesktopPane and JInternalFrame help!
Greetings,
I have a question with regards to limiting duplicate JInternalFrames to a JDesktopPane.
Basically, adding an instance JInternalFrame to the JDesktopPane is comprehensive.
But limiting ...
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
2answers
424 views
When making an MDI should I use JDesktopPane or JFrame
It appears as if there is very little use of JDesktopPane but it doesn't appear to be deprecated. Are they any advantages of using JDesktopPane instead JFrame? I mainly plan on putting a few ...
0
votes
2answers
268 views
How I can selected by default an InternalFrame on a JDesktopPane?
I have a JFrame with the JDesktopPane and inside the JDesktopPane, I launch with the constructor a JInternalFrame.
(Its a app like the authentification users, with the textbox user and textbox pass)
...
0
votes
1answer
88 views
Is it possible make all JFrames the internal program uses into JInternalFrames and place them in a JDesktopPane?
The goal is to have the user select a java program, then my program opens up a JInternalFrame with a JEditorPane inside it as the console and places said JInternalFrame in a JDeskopPane. Is it ...
0
votes
1answer
157 views
Shared object between multiple JInternalFrames
What's the most efficient method of implementing a shared data object between multiple JInternalFrames on a single JDesktopPane?
Not sure whether to go with singleton or can I put a data object in ...
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
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 ...