Tagged Questions
6
votes
2answers
185 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
202 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
158 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
631 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
92 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
258 views
programmatically minimize a JInternalFrame?
Is there any way to programmatically minimize a JInternalFrame?
2
votes
4answers
195 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
122 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
214 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
82 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
86 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
80 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
280 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
197 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
460 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
196 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
1answer
263 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
192 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
292 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
638 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
1answer
59 views
Setting Dimensions Of JPanel on JTabbedPane in JInternalFrame in Java
Users of my software need to be able to click on different tabs to see different types of data representations. However, the code I am including below does not show the requested data panel when the ...
1
vote
1answer
58 views
wrapping a jframe
is there a way to open a program, that usually opens a new jframe, into an existing jframe?
here is the explanation, I have downloaded a java game one of those reflexes ones and it opens in a jframe ...
1
vote
2answers
129 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
115 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
185 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
80 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
183 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
289 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
119 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
80 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
3answers
486 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
248 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
412 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
590 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
973 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
249 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
54 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
2answers
27 views
Minimizing Jinternal Frame without clicking the button
Is there any way to minimize/maximize the JinternalFrame without clicking the minimize/maximize button at the top-right corner of the jinternalframe?
I followed this thread programmatically minimize ...
0
votes
2answers
45 views
Hide buttons on title bar in Java
In Jinternal Frame(java), i want to hide max, min, close button (not disable max, min, close properties), but when I used this code :
javax.swing.plaf.InternalFrameUI ifu= jif.getUI(); //jif : ...
0
votes
1answer
70 views
How to keep track of my internal frames?
This example code is a short version of my actual program:
import java.awt.BorderLayout;
import java.awt.EventQueue;
import javax.swing.*;
public class Example extends JFrame {
private JPanel ...
0
votes
2answers
47 views
Java - Another JFrame On Same Window
What I want is to make a new JFrame, keeping my current JFrame visible, but not create a new window/program. I can't explain it well, so here is a picture of what I mean:
...
0
votes
1answer
53 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
43 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
71 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
68 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
1answer
49 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
102 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
81 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
2answers
192 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 ...