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.
0
votes
2answers
45 views
JPanel within JPanel
Is it possible to have a panel within a panel in one method in Java?
Like If I created a JPanel within a method called, CreatePanel, could I add another one below it? I'm trying to add two or ...
0
votes
2answers
93 views
Drawing Sierpinski Triangle fractal - Java
My program runs and successfully draws the Sierpinski Triangle. However, it only appears for a short while and then disappears. Why is this?
Here's my program (2 classes). This is fully compilable ...
1
vote
1answer
28 views
Box laying out components strangely
I am writing a gui for a game I am making in java, and I have this code:
private JLabel label = new JLabel("Enter New Level Name");
private JTextField field = new JTextField();
private static JButton ...
-1
votes
1answer
123 views
Drawing Line, Arc etc. Anywhere in the Code Java
I am kind of newbie in Java and in my program, I have to draw some lines, arcs etc. in a function different from paintComponent() in some cases in a class that extends JPanel.
I generally work with ...
0
votes
0answers
24 views
Add JPanel to a JPanel
I'm trying to add a JPanel to a currently existing JPanel. The currently existing JPanel has a ton of images on it, and I'm trying to load another JPanel and place it on the screen at my desired ...
1
vote
1answer
39 views
Is there a Panel Listener in Java?
I have a custom JFrame Class and I want to add a listener that does the following:
If the content pane of my Frame is Panel1, the Frame should be resizable with setResizable(true), and if the content ...
-1
votes
1answer
54 views
painting multiple images to a jpanel
I'm having an issue with drawing multiple images from objects on to a custom JPanel. I've been able to successfully paint one image representation of an object on the JPanel. Adding more objects ...
0
votes
0answers
24 views
Simplest process for switching displayed classes that extend JPanel in JApplet
I have several classes which extend jpanel, many of which have parameters in their constructors. Each already contains components, and they need to handle information and pass this information ...
-5
votes
1answer
39 views
What is the skeleton to a fullscreen program in Java [closed]
Please do NOT link me to the main tutorial, i didn't understand it.
All I want is a simple Fullscreen JPanel.
EDIT: i am talking about this:http://docs.oracle.com/javase/tutorial/extra/fullscreen/
...
0
votes
1answer
36 views
Zooming in and out a panel using jscrollbar in java
Input :- ArrayList of point2d of a geometrical shape
and transformin it as:
private void SetScale1(Graphics2D gr, int gr_width , int gr_height, double left_x , double right_x , double top_y , double ...
2
votes
1answer
53 views
Center alignment of buttons in JPanel
How do I align the buttons (S, S, D & D and A, U, D & d) to the middle of the panels (the blue and red)? The panels can grow (height not width), but the buttons should stay in the middle and ...
1
vote
1answer
40 views
making a JPanel into a JOptionPane.OK_OPTION
currently i have a class which extends JPanel and basically shows some information about an object passed into its constructor. There are various labels and Image icons on the screen and has a ...
-1
votes
1answer
67 views
Changing visible JPanels in a JFrame from another class
I have a class named Window that extends JFrame and sets up the basic layout. To that JFrame I want to add different JPanels and a seperate class named Tracking is deciding which JPanel is being ...
0
votes
1answer
100 views
JScrollPane inside JPanel inside a JTabbedPane is not scrolling
I have this JPanel called CatalogPane, which is of size 800 by 600, which is inside a JTabbedPane inside a JFrame called BookFrame. So inside the CatalogPane, I created a JPanel called bookDisplay ...
1
vote
1answer
62 views
How to save scrollable jpanel into pdf or any format
I have a jpanel within jscrollpane, I want to export all the contents of jpanel (which include some label,textarea) to pdf format. currently I am using this code on a jbutton:
Document document = new ...
1
vote
1answer
33 views
Java JPanel wont scroll
I'm trying to make image scrollable using jPanel and jFrame in java. I'm draw my image in drawQuestion class then I add drawQuestion to jScrollPanel and It doesn't scroll. Please Tell me where my ...
0
votes
1answer
28 views
My screen will not repaint despite the rectangle being clicked
I have my code set up to where the Boolean boxDetect will be set to true if the mouse is clicked within the Rectangle startButton. The rest is just formatting nothing special! This is the initial ...
0
votes
1answer
60 views
Two JFrames with grids in one class
I'm trying to program a battleship game, and using an if statement to call the class BatShip3, which will generate two JFrames with clickable grids for battleship placement. I've tried implementing my ...
0
votes
1answer
48 views
Closing background JFrame after showConfirmDialog
I am trying to write a very simple Blackjack game.
This is the class that is supposed to show the currently drawn card:
import javax.imageio.ImageIO;
import javax.swing.*;
import java.awt.*;
import ...
0
votes
3answers
61 views
swing component not visible
Ive been trying for 2 days to make an app and I'm stuck in the incipient phase, i.e. the UI. Swing is so difficult that I can't even display the components. Can anyone help me, please?
I have a ...
0
votes
1answer
41 views
JPanel size issue
I have Added two JPanels into a JPanel with GridBagLayout. Now the issue is :
When the main panel loads it shows the upper panel bit above the actual place it should be and when data from db loads ...
0
votes
1answer
69 views
JTextArea Doesn't Show Up on JPanel inside JTabbedPane
I have a JTextArea that sits inside a JScrollPane which in turn sits inside a JPanel and that in turn sits inside a Tab of a JTabbedPane.
I know that text gets added to my JTextArea, but when I move ...
0
votes
1answer
48 views
JPanel for GUI Application
So im teaching myself Java and ran into a bit of a stall. For one of the exercises, here is the instructions which I can't get my head around. Any help with explanation would be appreciated. Here is ...
0
votes
2answers
82 views
add mouseListener to an array of JPanels
i have an 2D array with JPanels and i want to add a mouseListener in every JPanel in the array so i use 2 for loops to add them ,but i want to pass the variables i used in for loops in every ...
0
votes
1answer
57 views
Multiple Jpanel keylistener space
I have a frame which contains 4 different panels.One panels contains a music player which on pressing space key start playing the music while other 3 panels contains textfields and some submit ...
0
votes
0answers
29 views
Flickering JPanel with JScrollPane when JDialog exist
I have a gallery application is made of Java Swing.
I display each image using a JLabel.
I use a JDialog to display a preview of the selected image.
But, when there are a lot of pictures, and I try ...
0
votes
0answers
15 views
Some problems caused of painting on jpanel which is situated on another jpanel
I have a frame, in which I've located an object which extends JPanel, on which I've organised the animation using a Image [] and MediaTracker.
This object LiquidAnimation has a paint() method and ...
0
votes
1answer
72 views
Trying to draw lines with JPanel
I am trying to draw lines using JPanel and I have hit somewhat of a wall. I can get two sides down but once it comes to subtracting from the x cord it all goes wrong.
package GUIstuff;
import ...
0
votes
1answer
36 views
Repainting not updating?
As of now, I am trying to work to create a JAVA version of uno that my teacher calls "Singles". Currently, I'm simply trying to get a working deck in which I can remove cards.
My issue currently, ...
0
votes
1answer
105 views
Netbeans: Cannot add custom JPanel in Swing Editor
I'm having an issue with adding a custom JPanel to a JFrame in the Netbeans Swing Editor.
To rule out other issues, I made a brand new JFrame, and tried to drag my JPanel in (the JPanel is even in ...
2
votes
2answers
62 views
Using MouseListener to select a range of cells in a grid
Linked post: How to use MouseListener to find a specific cell in a grid
I am trying to create a Battleships game, with a 10x10 grid made up of 100 cells. The Grid extends JPanel and the Cell also ...
5
votes
3answers
89 views
How to use MouseListener to find a specific cell in a grid
I'm trying to create a Java game with a 10 x 10 grid made up of cells.
The Grid looks liks this:
public class Grid extends JPanel implements MouseListener {
public static final int GRID_SIZE = ...
1
vote
2answers
82 views
How to get Current JPanel from Button Click
On the event of clicking a button how would I get the JPanel it is in currently?
I know how to make a button and add an actionlistener and do event handling. I don't know how to select the current ...
0
votes
1answer
46 views
Switching JPanels - Doesn't switch when clicking button
I've made a program and i'm having difficulty with switching JPanels on the click of a button.
There are four buttons> "Time" "Hotels Menu" "Price" and "Exit"
Exit was simple to do.
The rest need ...
0
votes
0answers
45 views
Does Jpanel can be set using float or double coordinates
I am working on a swing project in which i have to Zoom-in and Zoom-out the Jpanel and its children.The Zoom ratio is +20% for Zoom-In and -20% for Zoom-Out.
Right now i am just rounding off whatever ...
0
votes
1answer
42 views
Can't see all the text in a java frame
I have a problem I can't fix. I am really new in programming.
The main frame (glavnoOkno) opens normal. When the button on the main frame is clicked new frame opens. And you can't see all the text or ...
0
votes
2answers
81 views
Unable to remove JLabel from JPanel after adding programmatically
I have a class called LMSPanel that extends JPanel. This class has the two following methods:
/**
* A method to add an informative temporary label to the Panel until
* the second Sensor is added.
...
0
votes
1answer
46 views
Top layer in JLayeredPane not displaying
I'm trying to create a panel that uses a JLayeredPane to have a panel centered above another, larger panel. I can't seem to get the smaller panel to display though. Any ideas as to what I'm doing ...
0
votes
1answer
49 views
Drawing a class that extends JPanel
I have a class that extends JPanel, it contains a draw(Graphics page) method to draw itself.. if I am building a test driver and want to display it on the frame what should I use.. I'm confused ...
0
votes
1answer
64 views
How to combine paintComponent(Graphics g) with MouseListener and MouseMotionListener
So, I'm trying to combine the use of paintComponent() as well as the use of MouseListener and MouseActionListener, but i get a lot of errors when I run it, and it does not work liek i want it. In this ...
0
votes
0answers
53 views
jpanel zoom view,resize and relocate components
Is it possible to zoom the panel and manually re-size the buttons inside the panel and somehow relocate its point in regards to the zoom scale or zoomed view?
Maybe with this code:
for(int ...
1
vote
2answers
68 views
CardLayout, in JFrame or JPanel?
I have to make a game for school and I've been having some trouble with switching JPanels with a click on the JButton. I want to use a CardLayout, but I'm new to Java which makes it very hard. My goal ...
0
votes
1answer
46 views
Listeners for JButtton defined in another class and used in JFrame
I am working on from. Here in this frame on Button click of 'add Record' I add a panel to Jframe which is defined by extending JPanel class. Now I want that on button click of 'save' created in Panel, ...
0
votes
1answer
76 views
Not able to create a login form in java Swing
I have to create a basic Login Form in Swing on JButton ActionListner. So i wrote the following code:
private void Balance() throws IOException {
getContentPane().removeAll();
JPanel test = new ...
-1
votes
1answer
63 views
Dynamically adding panel to JFrame
I am working on form. I have created following to frames in two different files.
I want to add panel to follwoing class's frame. But I got following exception:
" Exception in thread ...
0
votes
1answer
65 views
How to display evolving BufferedImage on a JPanel
I need to display evolving BufferedImages on a JPanel. The code is structured in the following format and I have compiled a SSCCE as below.
The following classes are in SSCCE1 project in Eclipse
...
1
vote
2answers
78 views
Infinite background for game
I am working on a Java project to simulate the flight of a helicopter in a frame. The helicopter moves on the screen using the arrow keys. I want the helicopter to be able to move infinitely, that is, ...
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
67 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 ...







