JPanel is a container in the Java Swing Framework that allows custom rendering using layout managers. JPanels can be nested for flexibility. There is also a jQuery plugin with the same name that provides accordions, tabs, and fieldsets from simple container mark up.
1
vote
1answer
98 views
(Java) Using GridLayout (possibly GridBagLayout) on a 2D array of JPanels
I am trying to make a program that allows the user to change the colour of JPanels through mouse interaction. I have the array of JPanels all up and running (5x5) BUT they expand to fit the entire ...
0
votes
0answers
30 views
Enclose In option greyed out in Netbeans GUI builder
Building a Java GUI application using Netbeans IDE. I have created a JPanel in it. After adding a lot of fields, I want to also add a JscrollPane to it. I have found that if we right click on the pane ...
0
votes
2answers
68 views
JPanel size problems, when I resize
I have following code to display and draw JPanel with buffered image.
I am setting its size to size of buffered image, but it is not getting set actually.
It shows scroll bars when I resize, but ...
-1
votes
2answers
77 views
Scroll a JScrollBar in WindowBuilder Pro
I'm building a JDialog with WindowBuilder Pro for Eclipse and I have put a JPanel in that's surrounded by a JScrollPane which does allow me to scroll through the JPanel. But now What I want to do is ...
2
votes
2answers
77 views
How can I add images as a JPanel background?
I would like to make four panels using different backgrounds, and merge them together using a BorderLayout. I used JLabel, but I can't add any component to a JLabel, therefore I need to make it as a ...
0
votes
1answer
38 views
Enlarging JFrame/JPanel Programmatically
I have been working on a Java 2D game and halfway through I noticed that my screen and sprites are too small. Enlarging them by hand would be a pain.
Is it possible to enlarge a JFrame or JPanel and ...
0
votes
1answer
54 views
java boxlayout space after adding jpanel
I have container jpanel in which i used a boxlayout manager and what i do is i add another panels inside in which the added panel contains a label and textfield using flowlayout manager. everytime i ...
1
vote
1answer
31 views
BoxLayout not showing all components
I am not sure how to fix this, I have several JPanels (used for drawing) inside a main JPanel using BoxLayout. The JPanels have a set minimum size and preferred size. The main JPanel only shows the 3 ...
0
votes
1answer
37 views
Java GUI - remove all components and redraw
I have a grid layout JPanel, with many icons drawn on it. I need the icons to change after the player moves because the map changes. Here's the method I came up with:
public void initGridIcons(JPanel ...
1
vote
1answer
43 views
Rightmost JButton must always be visible inside a JPanel
I have a header panel (JPanel) with a set of icon button (1-to-many) and a single button (JButton) with a symbol. When I resize the panel, I want the button with the symbol to always be visible ...
1
vote
2answers
32 views
Im having trouble making an image update on intervals of 200
I am trying to make a thread that reads the screen and displays it in a frame, this code is meant to run at 5fps, so far it reads the screen, but I am having trouble making the JFrame display the ...
1
vote
4answers
82 views
How do I get the JLabel to show which button has been selected
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
import java.awt.*;
public class filecabinet extends JFrame implements ActionListener {
private ...
-3
votes
1answer
44 views
Title over 150 chars, about JTextField and JPanel
Would be title: Why does the JTextField go away when I uncomment line 40, how would I add the Ellipse2D.double ball to the JPanel, and is there a better thing to use than JPanel.
I'm trying to make a ...
1
vote
3answers
50 views
Update JFrame size automatically after addition of new components
I have a JFrame with a JPanel inside (default stuff when using Window Builder Pro). In my code I am adding a new JPanel, but the outer JFrame fails to re-size to accomodate for the new components. So ...
1
vote
3answers
79 views
GUI running really slow JAVA
So i'm making a little game again for a school project with 2 of my friends.
We have this same idea as before, but now its all graphical (JPanel, JLabel etc. etc.).
We have the basic GUI, but its ...
0
votes
0answers
61 views
UImanager look and feel partially working/ Java programming
I wanted to change the graphics of the default JFrame by using the UImanager.
UIManager.setLookAndFeel("javax.swing.plaf.nimbus.NimbusLookAndFeel");
This works on the main frame but if I call ...
0
votes
2answers
78 views
Adding JPanel to JFrame with FlowLayout
I am trying to display a filled oval on the screen using a subclass of JPanel
when I try to add an object of this subclass to a JFrame with FlowLayout the oval is not displayed correctly I don't know ...
0
votes
1answer
67 views
CardLayout .show() method not working
Hi I am new enough to Java and I am trying to learn to use card feature in window builder but I am having a problem using the show method. When I click the button it doesn't change to the desired ...
0
votes
0answers
47 views
Change content pane on button press
I want a button to change the contentPane in a frame. An admin panel and a user panel in two different JPanel classes that gets called in a MainWindow class with a frame.
My code looks as follows:
...
2
votes
2answers
82 views
Making a JPanel square
If I have a JPanel with multiple subcomponents, how would I make it so that JPanel remains a square despite how its parent is resized? I have tried variations on the following code, but it does not ...
2
votes
2answers
187 views
How to arrange multiple panels in JFrame
I am trying to make a simple calculator to practice Graphics (i am a complete GUI noob). I am having some problems with having unneeded spaces after Polyashenkos Calulator and the text area and the ...
0
votes
0answers
32 views
Not able to resize JPanel dynamically
I am using GroupLayout and I have a MainPanel. In that, I have a header, a footer, 2 other JPanels and a button.
I want to hide/show panel1 whenever I click that button. I am using setVisibility() ...
0
votes
1answer
124 views
Add Score in maze game written in java
I am going to make a maze game in java. I have done almost but i have facing problem to add score. I have add the time spend to end the game, but it doesn;t terminate. here is my code. Please help me ...
1
vote
1answer
68 views
Setting background image
How can I get rid of that gray box?
This is what I'm talking about: http://i.stack.imgur.com/3xGT5.png
i would really appreciate if you could help me out
Full code here: ...
1
vote
1answer
42 views
How to manage several panels in the same jframe?
I'm developing a game as college work, I've a fully autonomus panel that handles all process of the game, but I want to add a menu that allows to select the differents levels and difficulties, and ...
0
votes
1answer
40 views
How do I change a panel with mouselistener?
I'm wanting the panel to expand and display buttons and stuff when the mouse is hovered over, then apon mouse exiting the panel must return top original size.
So far I can only print a message:
...
0
votes
1answer
55 views
JPanel with a background image which has some part transparent
My image is like a frame which is transparent in the middle. I want to make it as background image of a JPanel. I have done this but for the transparent part of image, white color is coming. I want to ...
-1
votes
1answer
53 views
Adding ImageIcon to a specific JPanel in an array
I have started over with my chessgame, and are now facing new problems. Like I tried to explain in the title of the question;
I made 64 squares, like a chessboard normally would have. They are given ...
0
votes
0answers
35 views
Java netbeans GUI occuring error if manipulated
I am using Netbeans IDE, Why is that when I manipulate something on the design of application an error occurs in the code "sample error: non-static variable JTableSummary cannot referenced from static ...
0
votes
1answer
50 views
JPanel won't close after switching cardLayout
I have multiple JPanels in my cardLayout. When I switch to another JPanel it will not close down the previous JPanels and I'm left with many JPanels open at the same time after using the program:
...
0
votes
2answers
89 views
How can I move a jlabel image around the screen?
I want to click on the screen and have the character move to that destination. Not instantly, but rather "walk" to the given coordinate. Currently I'm using JLabels and they're fine if I only use ...
0
votes
0answers
23 views
Frame skips when drawing an animation in a JPanel
I'm trying to get a text to scroll smoothly inside a JPanel.
For this, a use a swing.Timer inside the JPanel that calls repaint() once every 1000/30 milliseconds:
public class Intro extends JPanel ...
0
votes
0answers
42 views
BUILD SUCCESSFUL (total time: 0 seconds) but output is not displayed in netbeans
we have made a jpanel in netbeans under java application.first it was displaying error main method() is not found.we have added main method,while running the file BUILD SUCCESSFUL (total time: 0 ...
0
votes
0answers
53 views
trying to validate from a user input dialog box in java
I am writing a program that changes the colour of aliens in a jframe. I originally used a text field but want to use a user dialog box to manually select the aliens by name but can not get the ...
-1
votes
1answer
77 views
Overrode Paint method, can't add any control to window
I have the following code:
import javax.swing.*;
import javax.swing.ImageIcon;
import javax.swing.JOptionPane;
import java.awt.*;
import java.awt.Image;
import java.awt.Toolkit;
import ...
0
votes
0answers
58 views
Storing input in 2d array from JTextfield
I am making a program where the user inputs the day number, and then the amount of rainfall that fell on that day. I've set up a 2d array with 31 coloumns and 2 rows, as there is 31 days in the month ...
0
votes
0answers
36 views
jung visualisation viewer not repainting(updating) the graph
I have implemented JUNG , to visualize graphs . I have a button , on whose click , i call a method, where i add vertices to the graph , and this method also creates a visualization viewer and layout ...
0
votes
3answers
78 views
Why doesn't my JScrollPane shows my JPanel?
I have a JPanel and I want it to be able to be scrolled, so I am adding it to a JScrollPane, but my JScrollPane doesn't show my Panel completely. just a very small corner of it is shown and it ...
0
votes
1answer
96 views
java program design specific paint(fill a rectangle horizontally using various colours) in JPanel [closed]
I wrote java GUI application user can enter different size/color/positions rectangle or Circle using radio buttons and text areas. I want draw that design happen in JPanel. Can someone help me? How ...
0
votes
1answer
27 views
Applet using CardLayout is blank
I have spent so many hours trying to research the problem with my code but I just cannot seem to find it. I have no experience using CardLayout, but based on other instances I feel I have implemented ...
0
votes
0answers
79 views
Passing data to JPanel from a JDialog once a button is clicked
I have created a JPanel that contain a JScrollPane. the JScrollPane is a place holder of a jtable.
when clicking a button a JDialog appear displaying a jTable wih data from the data base.
the user ...
0
votes
1answer
26 views
Maintain JComboBox Size
I want to make an account screen for a project, but I'm still new to GUI's. This is my first time working with a JComboBox and I'm having a bit of trouble. I want to basically place the JComboBox ...
1
vote
1answer
41 views
Graphics2D not moving
I'm currently making a game but for some reason when some Graphics2D Components are not moving and the program ends up crashing. Is there some interference between the KeyListener and the moving? Or ...
-1
votes
1answer
37 views
NullPointerException continues
When I am trying to call JPanel panel2 of Panel2 class on triggering of action event from Next JButton of Panel1 class, I am getting NullPointerException. How to resolve this? plzz help.
public class ...
0
votes
1answer
48 views
Uncompilable source code java.awt.Container.add
Okey, so i get a problem with my GUI. i get this error i have never gotten before when doing the exact same thing. I'm even using old code. and I'm doing an exam so I'm even more stressed since i ...
0
votes
4answers
55 views
Animated drawing of a successively complex image in Java
I am trying to draw an image on a JPanel that requires thousands of calculations, and I want to animate the progression of the drawing. I.e., instead of doing all 100K iterations of drawing in one go, ...
0
votes
2answers
48 views
Nullpointerexception with JPanel
When I m trying to call panel2 inside actionPerformed method, I m getting nullpointerexception. Plz help me in getting out of this silly prblm.
public class PanelEventTest implements ActionListener ...
0
votes
0answers
29 views
Drawing on top of IcePDF
I'm using icepdf to view a PDF document inside a JPanel, but I also need to be able to select an area (rectangle) from the document.
I made a class JPanel2 that overrides the paint method. I tried ...
0
votes
0answers
108 views
Combining JFrame and JPanel
I took some Java-swing programs from the internet and combined them. The result is this:
import java.awt.Container;
import java.awt.Cursor;
import java.awt.Graphics;
import ...
0
votes
1answer
47 views
Is it possible to overlay a JPanel on top of another? [duplicate]
I am attempting to overlay a smaller panel (sub) over a larger panel (parent). The dimensions of sub are smaller than that of parent.
JPanel sub = new JPanel();
JPanel parent = new CustomPanel();
I ...




