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.
6
votes
3answers
10k views
Draw a line in a JPanel with button click in Java
I want to draw a line in a JPanel.
This is my GUI and I want a line in the JPanel in white.
I find many examples but the problem is the how to use it.
In many exmples, always they draw in a JFrame ...
1
vote
1answer
524 views
JComponents not showing up with picture background?
Ok so in my last post I asked how to set the background, now that it is set and everything, my components are not showing up. I have no idea what to do. I tried a few methods but none of them proved ...
5
votes
2answers
1k views
Java: maintaining aspect ratio of JPanel background image
I have a JPanel with a painted background image and a layout manager holding other smaller images, all of this inside a JFrame. The background image is pretty big and I want to be able to have it ...
135
votes
10answers
343k views
Java Swing: how to add an image to a JPanel?
I have a JPanel to which I'd like to add JPEG and PNG images that I generate on the fly.
All the examples I've seen so far in the Swing Tutorials, specially in the Swing examples use ImageIcons.
I'm ...
4
votes
1answer
350 views
Program not accessing method paintComponent() of extended JPanel class
This is the JFrame
package client.connection;
import java.awt.Dimension;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import javax.swing.JFrame;
class ...
1
vote
2answers
2k views
Drawing a rectangle that won't disappear in next paint
I trying to create a JPanel that draws rectangles. The Panel needs to draw alot of rectangles, but they dont move.
One solution to my problem was to create an list with all the rectangles i already ...
5
votes
1answer
2k views
JPanel repaint issue
I have a JFrame which contains 2 JPanel subclass and 2 JLabel in BorderLayout. One of the JPanel contains JButtons and the other is used for displaying graphics. The JLabels are in north and south, ...
25
votes
4answers
18k 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 ...
3
votes
3answers
5k views
Drawing rectangle on a JPanel
I want to draw a recangle on a JPanel. Am able to draw with the following code.
public class DrawingColor extends JFrame
{
public static void main(String[] args)
{
DrawingColor d = ...
2
votes
3answers
1k views
Only allowing numbers and a symbol (-) to be typed into a JTextField
I'm trying to create a math quiz and I only want the user to be able to enter numbers whether they're negative or positive. Is there any way to do so? I've thought of using Regular Expressions but ...
5
votes
1answer
1k views
Image resizing and displaying in a JPanel or a JLabel without loss of quality
I'm developing a java program to capture employee images at the time of registration using a webcam. I can obtain the picture without any problem, and save it in my C: drive but upon retrieval of the ...
1
vote
3answers
4k views
Slide JPanel Content in a JForm on Java
I have a question. I want to make a swing form that, when clicking in a button he slides a panel (with his content) to the left so the panel on the right replaces it with a smooth effect.
I Have ...
5
votes
4answers
1k views
Sending messages between two JPanel objects
I have a Java JFrame containing a JPanel. Within that JPanel, there are two separate JPanels. When the user clicks a button in the first JPanel, a message needs to be sent to the other JPanel ...
2
votes
1answer
331 views
Java Container remove method not working correctly
i hava added 1.TextArea 2.TextField
then i start adding JButton successively on container...,now by using JRadioButton i want to remove JButton from container using this code
i=0;
k=0;
...
0
votes
2answers
1k views
Does adding a JLabel to a JPanel “hide” the JPanel?
If I have a few JPanels in a GridLayout, each one with a MouseAdapter, and then create JLabels (with text) and add to each one of the JPanels. Note the JLabels have no listeners.
If I render this and ...
20
votes
5answers
45k views
Java Swing - how to show a panel on top of another panel?
I wish to have an internal (non window) dialog to ask for member input. I would like the dialog to be placed centrally on an existing JPanel.
I have looked at layeredpanes and these seem unusable due ...
5
votes
3answers
15k views
How to include custom panel with NetBeans GUI Builder?
I have written a class that extends JPanel. Is it possible to use this in the NetBeans GUI Builder and have it survive all of the automatic code generation?
I have used the customised code option in ...
2
votes
2answers
529 views
How to add JPanel by clicking JButton?
I'm trying to create a small GUI, it has 2 JButtons, and 2 JPanels with some drawing animation on each of them. By default it must show first JPanel, and by clicking on second JButton I want to see my ...
8
votes
2answers
295 views
FlowLayout on top of GridLayout not working
I'm trying to create a hangman game and so far it's coming along GREAT, but the layout design just doesn't seem to fall into place! The alphabet is supposed to end up in a FlowLayout order on top of ...
6
votes
1answer
2k views
JPanel which one of Listeners is proper for visibility is changed
Please are there some rulles, good/bad experiences with AncestorListener, ComponentListener or HierarchyListener listening for visibility of changes for JPanel, JComponents,
Can we talking one of ...
6
votes
3answers
12k views
Convert JPanel to image
Is there a way to convert a JPanel (that has not yet been displayed) to a BufferedImage?
thanks,
Jeff
3
votes
4answers
807 views
Using addMouseListener() and paintComponent() for JPanel
This is a follow-up to my previous question. I've simplified things as much as I could, and it still doesn't work! Although the good thing I got around using getGraphics().
A detailed explanation on ...
4
votes
3answers
226 views
Why to add JPanel to a JLabel, under what circumstance, this situation can arise?
Today while surfing through various questions, I encountered one QUESTION, this seems to me a bit weird, why would one wants to add a JPanel to a JLabel, are there any genuine reasons as to such ...
2
votes
2answers
5k views
JPanel with image background
How to put image background on JPANEL?
JPanel pDraw = new JPanel(new GridLayout(ROWS,COLS,2,2));
pDraw.setPreferredSize(new Dimension(600,600)); //size of the JPanel
pDraw.setBackground(Color.RED); ...
1
vote
2answers
3k views
Drawing rectangles on a JPanel
I have a JScrollPane and on top of it I have a JPanel named 'panel1'.
I want some rectangles to be drawn on this JPanel.
I have a class named DrawRectPanel which extends JPanel and does all the ...
6
votes
1answer
26k views
Java GUI repaint() problem?
I have a JFrame. This JFrame contains a JButton. I click the JButton and 10 JTextFields are created.
the problem:
I cannot see them until "I force a repaint()" by resizing the window. Only then do I ...
5
votes
1answer
1k views
how to trigger an action in parent JPanel when a component in a child JPanel is updated (Java Swing)
I am trying to build an MVC application in Java Swing. I have a JPanel that contains four JComboBoxes and this JPanel is embedded into a parent JPanel. The parent JPanel has other controls in ...
4
votes
2answers
270 views
Convert a JPanel to an image in a JScrollPane
I want to convert an JPanel to an image. I used the following method:
public BufferedImage createImage(){
int w = getWidth();
int h = getHeight();
BufferedImage bi = new BufferedImage(w, ...
4
votes
1answer
351 views
Incorrect behavior of JPanel#paintChildren(Graphics) when a JMenu is present?
What I want to do:
Create a JPanel's subclass to draw a simple overlay on top of contained components.
Why don't I use JLayeredPane?
See JComponent#isOptimizedDrawingEnabled().
When a JMenu is ...
3
votes
2answers
7k views
JPanel background image
This is my code, it indeed finds the image so that is not my concern, my concern is how to make that image be the background of the panel. I'm trying to work with Graphics but i doesnt work, any ...
2
votes
2answers
3k views
How to right-justify icon in a JLabel?
For a JLabel with icon, if you setHorizontalTextPosition(SwingConstants.LEADING), the icon is painted right after text, no matter how wide the label is.
This is particularly bad for a list, as the ...
1
vote
3answers
396 views
Place JLabel on top of JLabel with image in
I am pretty sure that this question has been asked before, but my case is slightly different as in i am trying to place a JLabel on top of a JLabel acting as a background, I want to display changing ...
0
votes
2answers
2k views
Adding background image to JPanel on button action
What is the best way to add a background image to a JPanel/JLabel when a JButton is called? I know how to get the JButton action and such. I just can't figure out or find a way to get the background ...
19
votes
12answers
54k 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.
...
2
votes
3answers
96 views
How to change the dimension of a component in a JFrame
Suppose I have a JPanel in a JFrame. When I invoke a method that changes the preferred size of that JPanel, it does not change.
The code looks something like this:
public class SomePanel extends ...
3
votes
3answers
1k views
JScrollPane resize containing JPanel when scrollbars appear
I have a small problem when using JScrollPane in my Java application.
I have a JScrollPane containing a JPanel.
This JPanel is dynamically updated with buttons (vertically ordered) that can be of any ...
2
votes
3answers
407 views
.drawLine() issues and buffered image
I have a paint programme and i have all the buttons and sliders done however i am having a problem with the actual painting itself. When I drag the cursor across the screen instead of an unbroken ...
2
votes
1answer
431 views
Not showing graphics in JPanel which is added to another JPanel
When adding a JPanel that has graphics to a JFrame, it's working fine. But when I try to add a JPanel in which I have added another JPanel with graphics, its not showing in the JFrame. Please see ...
2
votes
1answer
516 views
How does one make a component in the .CENTER of a Borderlayout occupy all center space and resize with the app?
My app/JFrame, using Borderlayout, has a toolbar at the top or north, a statusbar at the bottom or south and a JPanel.JTabbedPane.JScrollPane.JTable in the center. The JPanel is always a fixed size ...
1
vote
1answer
299 views
How to Change java Cardlayout from another separate class
Please I have been trying to switch CardLayout from another class (JPanel) which is one of the card on the CardLayout, I have search and made research about this for a very long time but found nothing ...
-1
votes
2answers
1k views
Java: Add Background image to frame [duplicate]
Possible Duplicate:
java swing background image
drawing your own buffered image on frame
I am trying to add a back ground image to my frame, but nothing that I have done works.
I ...
11
votes
4answers
4k views
Java - Vertical “FlowLayout” with Horizontal Scrolling
As described in the title, I've been trying to set up sort of a vertical flow layout with horizontal scrolling. The components within the layout will be JLabels. Let me draw a picture:
...
10
votes
6answers
10k views
What is the relation between ContentPane and JPanel?
I found one example in which buttons are added to panels (instances of JPanel) then panels are added to the the containers (instances generated by getContentPane) and then containers are, by the ...
6
votes
2answers
614 views
How to overlay, resize and centre a component on a JPanel?
I've spent a while reading and experimenting here, and come up with a few approaches, but not got any of them to work completely yet, so I would like to know what more experienced Swing programmers ...
4
votes
3answers
12k views
Making a JPanel manually resizable
I have a JFrame with BorderLayout as the layout manager.
In the south border, I have a JPanel, I want this JPanel's size to be adjustable by the user, i.e. the user can click on the edge of the ...
5
votes
1answer
3k 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
2answers
887 views
Can I create a BufferedImage from a JPanel without rendering in a JFrame?
Is it possible to create a BufferedImage from a JPanel without first rendering it in a JFrame? I've searched everywhere I can think of and cannot find an answer. Can anyone help?
Here is some sample ...
4
votes
4answers
2k views
Can't a Swing component be added to multiple containers?
I'm trying (testing something else) to add one JButton reference into two JPanels to test it, and it disappears from the first panel it was added to!
So, can't a Swing component be added to multiple ...
3
votes
1answer
486 views
Translucent components inside JPanel
I have class MyPanel that extends from JPanel. MyPanel class has JLabel component which holds an icon.
My question is how can i paint/render this JLabel component to get translucent effect (see ...
3
votes
3answers
3k views
JTable: Buttons in Custom Panel in Cell
I want to be able to have a JPanel in a cell with a JButton that does some work when clicked.
I looked for howtos about Cell Editors, but all examples talk about replacing the cell with another ...
