Tagged Questions
A JFrame is a GUI element in Java Swing.
20
votes
9answers
20k views
How to programmatically close a JFrame
What's the correct way to get a JFrame to close, the same as if the user had hit the [x] button, or pressed Alt+F4 (on windows)?
I have my default close operation set the way I want, via
...
14
votes
5answers
1k views
set JFrame Orientation from right to left!
To align my JFrame from righ-to-left, I use:
setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
but this works only if I use the following style (decoration) of the JFrame:
public class ...
13
votes
6answers
1k views
Building a GUI for a Sudoku Solver (Complete with ASCII Example)
.
OVERVIEW, SAMPLE
Hello everyone,
I have created a basic Sudoku solver that can solve most problems fairly quickly. I still have a lot of work ahead of me to make it solve even the hardest ...
12
votes
8answers
19k views
Java KeyListener for JFrame is being unresponsive?
I'm trying to implement a KeyListener into my JFrame. On the constructor, I'm using this code:
System.out.println("test");
addKeyListener(new KeyListener() {
public void keyPressed(KeyEvent e) { ...
11
votes
9answers
31k views
How do I change JPanel inside a JFrame on the fly?
To put it simple, there's a simple java swing app that consists of JFrame with some components in it. One of the components is a JPanel that is meant to be replaced by another JPanel on user action.
...
9
votes
1answer
901 views
Disable Background drawing in JFrame in order to properly display Aero (DWM) effects
I'm having problems using the DWM functionality of Windows Vista/7 on Java windows. I want to make the background of my frame use the Aero style. The Windows API to do so is provide by the function ...
9
votes
3answers
1k views
Changing The Underlying Background Color Of A Swing Window
As discussed here, when resizing a Swing application in Vista (and Windows 7, which is what I'm using) you get a black background in the right/bottom corner while Swing's repaint catches up to the ...
9
votes
5answers
5k views
Java: Difference between the setPreferredSize() and setSize() methods in components
Ok, I read the Java Documentation and I just can't figure out what is the main difference between those two methods. Sometimes I used setSize(), sometimes setPreferredSize(), sometimes one does what I ...
8
votes
4answers
2k views
How can I remove just the Maximize button from a JFrame?
I have a JFrame and want to remove the maximize button from that.
I wrote the code below, but it removed maximize, minimize, and close from my JFrame.
JFrame frame = new JFrame();
frame.add(kart);
...
7
votes
1answer
440 views
Open webcam and set as background (question)
Best reader,
I'm stuck on one of my concepts.
I'm making a program which classroom children can measure themselves with.
This is what the program includes;
- 1 webcam (only used for a simple webcam ...
7
votes
2answers
454 views
swing: programmatic close of JFrame
What's the programmatic equivalent of clicking the close (x) button in the upper right corner of a JFrame?
There's the dispose() method but that's not the same thing, since a JFrame can be set to do ...
7
votes
7answers
1k views
Java GUI Swing Model Explanation
I've been working with Java GUI for a while now but the whole model/structure of JFrames, paint(), super, etc is all murky in my mind.
I need a clear explanation or link that will explain how the ...
6
votes
3answers
255 views
Proportional resizing of JFrame
I'm trying to make a JFrame re-sizable in an unusual way: the ratio of width to height of the frame must be constant. I have written this simple code; in this case, the ratio is 1/2:
public class ...
6
votes
2answers
302 views
Java, JFrame: getWidth() returns 0
setExtendedState(getExtendedState()|JFrame.MAXIMIZED_BOTH);
setResizable(false);
setUndecorated(true);
System.out.println("--------> "+getContentPane().getWidth()); //----> 0 why is this ...
6
votes
6answers
631 views
ALWAYS on top window
Hey,
I'm searching for a solution in order to keep a JFrame always on top and with always I really mean always.
setAlwaysOnTop( true );
This won't work when I'm starting a game in fullscreen mode. ...
6
votes
2answers
2k views
How can I customize the title bar on JFrame?
I would like to have a customized title bar in my Java Swing desktop application. What is the best way to do that? I can use a "Swing-title bar" by using the following code in the constructor for my ...
5
votes
1answer
53 views
Should I add components to a JFrame or to its contentPane?
When I learned creating Java GUI:s in my first Java course, I was taught to create my windows as JFrame instances, and then add a JPanel to each JFrame and finally add all the GUI components to the ...
5
votes
1answer
86 views
System.exit(0) vs JFrame.EXIT_ON_CLOSE
Is there any difference between the two. I was reading an article ( http://www.javalobby.org/java/forums/t17933 ) about that you should always use
System.exit(0);
Currently I use
...
5
votes
2answers
81 views
Java: How can I disable clicking on panel while showing dialog?
I want to disable clicking on background panel or frame while showing a dialogue. And I want the dialogue to appear on top of this panel or frame constantly until it is closed.
How can I do this?
...
5
votes
3answers
167 views
problem in nested Jpanel over Jframe
I have a JFrame and a Jpanel over that in which various buttons are placed.so on click of a button I have called a new class which is also having containers placed in a Jpanel.so I want to show that ...
5
votes
2answers
281 views
Is it possible to have a translucent windows in java 7 including a title bar?
Related to this question:
Is The Java Tutorials Translucent Window example giving trouble to those playing with jdk7?
with jdk1.6.0_26 I seem to be able to apply translucency to a JFrame, but not so ...
5
votes
2answers
98 views
problem with getting JFrame bounds inside a timer in Netbeans
I want to animate a JFrame to become half-size when i press a button in my programme. I think the easiest way is putting the current bounds of JFrame into a timer and decrease bounds 1 by 1 when the ...
5
votes
3answers
168 views
FocusEvent doesn't get the last value of JFormattedTextField, How I can get it?
I have two JFormattedTextField objects on my JFrame object. I want a basic Math (addition) by the values of these JFormattedTextField objects. I want it happen when focus lost either the first or the ...
5
votes
2answers
280 views
JFrame repaint() issues - Java
I want to be able to draw using Java's paint() on a JFrame. When I click the JFrame (anywhere for now) I want the JFrame to be repainted with the co-ordinates of the click - similar to this Java ...
5
votes
4answers
589 views
JFrame resizable height ONLY
JFrame.setResizable(true) lets the user resize both the width and height of a window. Does a method exist which allows the user to ONLY resize the height?
Thanks.
Edit: The solutions below do NOT ...
5
votes
2answers
609 views
Why do people run Java GUI's on the Event Queue
In Java, to create and show a new JFrame, I simply do this:
public static void main(String[] args)
{
new MyCustomFrameClass().setVisible(true);
}
However, I have seen many people doing it like ...
5
votes
3answers
2k views
Swing: set JFrame content area size
I'm trying to make a JFrame with a usable content area of exactly 500x500. If I do this...
public MyFrame() {
super("Hello, world!");
setSize(500,500);
}
... I get a window whose full size ...
5
votes
1answer
6k views
How to auto resize JFrame according to content
I have created a custom JPanel that displays images (lets call it MyPanel), I have added this to JFrame's contentPane.
I want JFrame to be resized automatically to fit the MyPanel when image changes.
...
5
votes
5answers
7k views
How to make a JFrame Modal in Swing java
I have created one GUI in which I have used a JFrame. How should I make it Modal?
5
votes
3answers
6k views
Setting background images in JFrame
Are any methods available to set an image as background in a JFrame?
4
votes
1answer
93 views
Real-time listening to JFrame height and width
I've got a situation where I would like to be able to know a JFrame's height and width as the user drags their mouse to resize the frame.
I researched this, and the answers provided at the following ...
4
votes
1answer
140 views
Java - the ol' transparent JFrame, without restricted libs
Yes, this question is everywhere. But all of the (working) solutions use the AWTUtilities toolkit, which is restricted.
So. I just want to control the opacity of my window. No need to shape or ...
4
votes
1answer
96 views
Get Any/All Active JFrames in Java Application?
If there any way from within a Java application to access in some list all of the currently open/active (I'm not sure the terminology here: JFrames that are visible on screen)? Thanks for your help.
4
votes
2answers
203 views
Java Swing: How can I implement a login screen before showing game screen?
I'm trying to make a little game that will first show the player a simple login screen where they can enter their name (I will need it later to store their game state info), let them pick a difficulty ...
4
votes
2answers
119 views
Java Swing pack() on a Window un-maximizes it, how to avoid that?
I've a window and since I dinamically change it's children (sometimes I swap JPanels), I found no other solution than calling pack() on the window to get the new element displayed. Otherwise it will ...
4
votes
4answers
485 views
Java - Waiting for some type of key press to continue
What is the best way to implement a "press x to continue" type of thing in Java?
Specifically, I have a custom class which extends JFrame and a custom class which extends JPanel. I have a Main.java ...
4
votes
1answer
159 views
JPanel custom drawing using Graphics
I have a custom JPanel and sometimes throughout my program, I need to call a method which paints the screen black, that's it.
public void clearScreen() {
Graphics g = getGraphics();
...
4
votes
4answers
454 views
JAVA: Ways to fill a Frame. add(), setContentPane(), getContentPane()
I found three ways too fill my JFrame frame = new JFrame("...")
createContentPanel returns a JPanel and createToolBar returns a ToolBar.
frame.add(this.createToolBar(), BorderLayout.PAGE_START); ...
4
votes
1answer
70 views
Question about JFrames
I am running Windows. When you run an application on Windows, you get a button task bar where you can click it to maximize and minimize it. Is it possible to create a JFrame without this or some other ...
4
votes
1answer
1k views
Java Swing : Obtain `Image` of JFrame
How do I obtain a java.awt.Image of a JFrame?
Details:
I want to obtain a screen shot of a JFrame (for later use within my application). This is presently accomplished using the robot to take a ...
4
votes
1answer
219 views
4
votes
1answer
196 views
java scaling of a jframe
Is it possible to create a JFrame and setResizeable(true), but have the x and y values scale by the same amount, i.e. you cannot increase just the x or y but both at the same time so it stays in ...
4
votes
3answers
2k views
java, show JFrame in a specific screen in dual monitor configuration
i have a dual monitor config and i want to run my GUI in a specific monitor if it is found.
I tried to create my JFrame window passing a GraphicConfiguration object of my screen device, but it ...
4
votes
1answer
2k views
Setting minimum size limit for a window in java swing
I have a JFrame which has 3 JPanels in GridBagLayout..
Now, when I minimize a windows, after a certain limit, the third JPanel tends to disappear.
I tried setting minimizing size of JFrame using ...
4
votes
3answers
1k views
How to add support for resizing when using an undecorated JFrame?
I would like to customize my titlebar, minimize-, maximize- and the close-button. So I used setUndecorated(true); on my JFrame, but I still want to be able to resize the window. What is the best way ...
4
votes
2answers
5k views
Java Swing: dispose() a JFrame does not clear its controls
I have a closeWindow() method which uses dispose() for the current JFrame to close down. When I show the window again, the controls (textboxes, lists, tables etc.) still have their previous values in ...
4
votes
2answers
354 views
JFrame in Java
I am using a JFrame as a pop-up from a main frame, where the user is supposed to enter some information and then press OK. But the problem is that once this sub-frame has opened up, I want the program ...
3
votes
1answer
39 views
Why doesn't the JPanel background change colors?
I'm trying to make the background color of my program white (instead of gray).
I have a frame class that contains the program (a new instance of that frame class is instantiated in the main method). ...
3
votes
1answer
31 views
Reference to this in actionPerformed
In the constructor of my main window I create a button with the following simple code:
JButton jbOptions = new JButton("Options");
buttonsPanel.add(jbOptions);
jbOptions.addActionListener(new ...
3
votes
1answer
78 views
Java: JTextField resizing upon minimize
I have a JTextField as well as a JTextArea in a JFrame. When the application runs however, the JTextField gets resized if I minimize the window. It usually doubles or triples in height, but it's not ...