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
0answers
5 views
Java Media Framework stop or hide video in JPanel
I got problem with JMF I try play movie, and on keyPressed I want to stop playing movie, and back to main program.
This is my function to play movie:
public void grajFilm(boolean czyGrac){
URL ...
0
votes
1answer
32 views
Adjusting GUI JPanels to fit
So for this program, I am trying to have a JToolBar on the left, and this spectrum panel on the right side. I am currently adding using a BorderLayout, but as you can see, the spectrum (in cyan) I add ...
1
vote
1answer
37 views
JScrollPane containing a JPanel won't scroll
I have a JScrollPane which contains a JPanel which contains a collection of JPanels.
The collection size can be changed which is why I have it in a JScrollPane.
For some reason, no matter what I do, ...
0
votes
1answer
22 views
accessing gridLayout grids
So I'm using borderLayout panel with a girdLayout for the Center Position, I have added some objects to my gridLayout but latter on I would like to add some more information to the same grids.
...
0
votes
0answers
7 views
event listener logic with remove and add JPanel components
I'm trying to understand sample puzzle code from http://zetcode.com/tutorials/javaswingtutorial/puzzle/ where a picture is cropped into smaller images and displayed on buttons with one corner image ...
0
votes
0answers
34 views
JPanel Wont Load Image
So I can't really figure out why I can't load an image into this JPanel....The code is kinda long, but I have it commented, so it should be fairly simple to deduce whats going on. Can anybody help? I ...
0
votes
2answers
55 views
JPanel - positioning element
I have a problem with setting position for one of the elements (the image). I cannot align it to right-bottom of the screen. I tried to use different layouts but I can't make it to work exactly like I ...
0
votes
1answer
21 views
Can't add a panel (so background) to my JFrame
I have a JPanel that I use as a background which name is BackgroundPanel. And I am designing my main JFrame with NetBeans, and adding BackgroundPanel like that.
public class Main extends ...
0
votes
1answer
41 views
Java program with multiple windows(JPanel), how to connect them to JFrame
I have a library application that permits users to log in, and many other things.
I don't really know how to make multiple windows (views), such as a login, and if it is succesfull, closing the ...
0
votes
3answers
33 views
Aligning Shape's Center to JPanel's Center
I have been trying to align my java2d shape's center to the JPanel's center with no success. I was able to do it for an image and many 2D shapes like parallelogram using getBounds method but not for ...
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 = ...
-1
votes
0answers
15 views
Remove scrollbar from jQuery Jpanel plugin
I want to remove the vertical scrollbar from JPanel Jquery plugin.
Does anyone know how to remove it completely?
0
votes
3answers
36 views
How to rescale painted contents of JPanel
I have a window which contains upper JPanel where figures are painted and the lower JPanel where figures are listed in the JList the list looks like:
[minature][figure.toString()]
The minature is ...
0
votes
3answers
23 views
Java Layer JPanels
I need to layer JPanels but I don't know how. I have 3 panels, the first is for the background, the second is for a Character/Sprite to move around and layers the first panel(background, and the third ...
0
votes
1answer
21 views
Catch action events from a JPanel component in a JFrame parent window
How to catch action events from a JPanel component in a JFrame parent window in Java Swing?
I'm having a hard time trying to make a custom Component in Swing.
The idea I got is making a custom ...
0
votes
0answers
4 views
Giving a JPanel priority focus
I have a JPanel that is using a KeyListener as the content pane as the window; however, there are buttons and text fields in a grid layout on top of the JPanel.
How do I prioritize the focus of the ...
3
votes
1answer
36 views
My Swing GUI does not update. Why?
So, I am making a GUI in which the user has the ability to add or remove panels. To simulate that, I made a TimerTask which takes the name of the target JPanel and the parent which contains the ...
0
votes
0answers
38 views
“Refresh” a JFrame with setLayout(null)
I am trying to get the JFrame to refresh as I want to add a JPanel onto a JFrame after it had been set visible. invalidate() then validate() then repaint() won't work as I don't have a layout manager.
...
0
votes
2answers
48 views
Drawing line between two JPanels
I want to draw lines between two JPanels ; please verify my code as its giving an NULL pointer Exception at
"g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);"
...
-1
votes
0answers
31 views
Animated Gifs in JPanel [duplicate]
I'm new at doing pop-up screens with Java (just stared learning a couple of days ago) so I'm not really sure how to add an animated gif into the JPanel. Right now I'm working on a code and it only ...
0
votes
3answers
47 views
When does a JTabbedPane component get its size?
I need to know the size of a JPanel when I add it to a JTabbedPane to compute other values. If I call the add(Component) method, when does the Component get its size?
For example,
JTabbedPane ...
-6
votes
1answer
49 views
JButton that will use another JButton [closed]
package QADev_AcctReset;
import java.awt.Color;
import java.awt.Font;
import java.awt.Image;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import ...
1
vote
2answers
60 views
Why does GridBagLayout provide strange result?
I want the various components to spread out and fill the entire window.
Have you tried anything else? Yes, I tried GridLayout but then the buttons look huge. I also tried pack() which made the ...
0
votes
1answer
27 views
JAVA cannot see added components to panel
Task: Delete several controls from panel, then add new ones.
Problem: after completing several methods, old controls disappear, but I cannot see new ones.
code:
public void StartGame() {
...
1
vote
2answers
37 views
Exiting out of one of two JFrame exits out of both
I have two seperate JFrames but when i click the X in the topright of one, it will exit out of the other also. I have an "exit" button near the bottom to do setVisible(false), but i still have the ...
3
votes
1answer
34 views
JPanels keep appearing as little squares no matter what size I set
I have a JFrame class with a BorderLayout that holds another class (ScorePanel) which extends JPanel. This is the relevant code for the JFrame class, a method not called by the constructor that sets ...
0
votes
3answers
50 views
Void not allowed here
I'm trying to work out a way of creating a JTextfield dynamically without assigning it to a variable.
panel.add(new JTextField("hello"));
The code above works just fine, but when I try and ...
1
vote
2answers
32 views
Java - JPanel with background image AND normal functionality
I've been looking around and working on making a JPanel able to have an image background. I know there is a ton of information reguarding this ( example 1 and example 2 ). Neither of these are exactly ...
0
votes
1answer
31 views
I need to split my panels 2 times and Im not sure how to do it
OK I have a frame with dimensions 1280x720. I need to split that up and create one side on the left that is 1000x720 and the right side 280x720. The panel that now is 1000x720 I need to split it again ...
2
votes
1answer
30 views
JPanel does not appear in window unless I resize the window
I am new to GUI in java, and have been using this video to learn. When I run the program, the window is blank until I resize it.
public class GUIProgram extends JFrame
{
int screenWidth = ...
-1
votes
1answer
19 views
Trying to use Mouselistener to add labels to JPanel
So, I'm trying to make it so that when either "First name" or "Last name" are selected and a mouse is pressed in palettePane,a label with my first or last name appears at the mouseX or mouseY. This is ...
0
votes
1answer
29 views
Where should I put these fields in the MVC model?
Let's say I have three classes: JPSModel, JPSView extends JPanel, and JPSController. JPSView overrides paintComponent(), which draws an image at a certain zoomFactor at position (renderPositionX, ...
1
vote
1answer
26 views
JPanel additional column on GUI upon run?
Been working on a school project in which my group and I are making a Wheel of Fortune game with a GUI and all. When making the panel for the puzzle to be displayed, I'm running into the problem of an ...
1
vote
1answer
16 views
jPanelMenu runs and creates an extra <div class=“jPanelMenu-panel”>
I'm attempting to implement jPanelMenu on my site but after menu is triggered there is extra space between the jPanelMenu-menu and jPanelMenu-panel.
I checked it out with Firebug and when
`<body ...
1
vote
2answers
63 views
passing data between JPanels
I'm making Tetris in Java and would like to have the game play on the left and scoring, buttons, and nextPiece on the right, like so:
You'll notice that the score on the Game Panel is updating, but ...
-1
votes
1answer
27 views
Images replacement
How would i go about replacing the image called hangmanImg every time it go's through the loop?
public void postImg() {
String imgName = Integer.toString(numError);
String hangmanImg = ...
3
votes
3answers
7k views
Java Swing - JLabel Location
I have problem while setting the Jlabel location.
I set the content pane to some JPanel, I created and tried to add my JLabel.
JLabel mainTitle = new JLabel("SomeApp");
mainTitle.setFont(new ...
1
vote
2answers
65 views
JPanel appearing to be two times bigger than set resolution
I must say I tried everything and I can't understand what's wrong with my code.
In my SIView class I create MainFrame which extends JFrame with specified resolution (let's say X,Y).
Then I create ...
0
votes
1answer
482 views
SetFocusable method or Focusing Components Java
I came across this code:
public class Board extends JPanel implements ActionListener{
public Board(){
setFocusable(true);
}
}
If I setFocusable to be true, what exactly does the ...
0
votes
3answers
155 views
Trouble creating JLabel inside JPanel
So, I don't understant why the last part doesn't add to my interface. I tried different approaches but none seems to work. I can't add 1024 labels to my panel this way. Did I do something wrong or is ...
0
votes
1answer
104 views
How to get a jpg inline with a grid layout
This i believe is pretty simple maybe im just looking at it differently, i have a jpg of a normal battleships layout, i also have a actual grid i done with a Jpanel, in order to make my game more ...
0
votes
1answer
71 views
Updating JPanel's within a JScrollPane not working
I created a JScrollPane and want to display a different JPanel within that JScrollPane depending on input I get from the user. For some reason, my JScrollPane remains blank and never paints what is ...
1
vote
2answers
57 views
Why is there no output on my second JButton?
so i want my second JButton to print the reverse of the first one.
1-10 and 10-1.
But i cant figure out whats missing in my second button.
Also, how do i setback the value of the buttons so u can ...
0
votes
2answers
147 views
How to draw different objects with paintComponent()?
I am trying to draw several things inside a JPanel. I am drawing shapes (works), and I also want to fill the JPanel with a picture.
But paintComponent() only takes one argument. And this gets ...
-2
votes
2answers
82 views
Why is there a file permission error?
I am getting a file permmission error when I use my Java applet on my website.
The error is:
access denied ("java.io.FilePermision""image.png""read")
0
votes
4answers
169 views
Java Change shape of JPanel
I'm trying to do something which I'd think would be fairly easy but can't find a straight forward answer to. Basically I want to change a JPanel's default shape to a circular shape (or any other shape ...
2
votes
1answer
206 views
Java - [Var Type] Cannot be resolved
I've been troubling over this error for the last half an hour. JPanel cannot be resolved to a type But yet, I've imported javax.swing.JPanel;, and I can't see another reason why this is being caused. ...
0
votes
2answers
102 views
g.drawLine doing nothing
This is my code so far with some print lines just to make sure it was actually even going into the method. For some reason NOTHING is being drawn on the canvas, I have a program similar to this as far ...
0
votes
1answer
42 views
Re-position and change buttons to images?
I am trying to re-position the button so that it is in the bottom right corner of the frame, but everything I try such as setLocation and setBounds, don't seem to do anything. Also, how would I change ...
0
votes
1answer
57 views
Scrollable BackGround Image with text input fields using Java
I'm pretty new to Java and have been stuck for hours trying to figure out how to do the following...
I would like to create a Java program that shows a panel (has a background image that is ...





