1
vote
1answer
33 views

Changing JLabel icon dynamically after already adding to GUI?

I'm having trouble changing an icon deep in my GUI using Swing components. I'm creating a chess game for fun with Java and want the right side of the GUI to respond when a piece is taken by showing ...
0
votes
1answer
23 views

Scrollbars in JScrollPane don't refresh

I have a JPanel in a JScrollPane. When JPanel changes (in my case, I draw an image inside), the scroll bars are not refreshing accordingly. I need to move them sligthly or resize the whole frame and ...
0
votes
3answers
21 views

Align components on the page top left with GridBagLayout Manager

i am trying to make a login page just like facebook, but the code i have written is not showing it on the top left side instead it is showing at the centre of page, i am using GridBagLayout and ...
1
vote
1answer
42 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
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 ...
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
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
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
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 ...
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
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
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 ...
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
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
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);" ...
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. ...
-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
61 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
34 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
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 = ...
0
votes
1answer
41 views

overlapping JPanels in the GUI

I am using BorderLayout in my application. I have a main panel to which I add two JPanels at the center. I want one of them to be transparent. My code is : mainPanel = new JPanel(); ...
0
votes
3answers
52 views

Java: Add panel to existing panel after runtime

Im trying to add a NEW card to an existing JPanel(cardLayout) with the click of JButton and then goto that new card but i get Null exception as the new card is not registering. Ive tried searching ...
0
votes
1answer
24 views

Swing - Swapping and hiding glass pane does not work - glass pane remains visible

I am trying to build a Swing application that shows a login panel as a glasspane if no user is loggeg in. If i try to hide to login glass pane it remains visible, but won't react to any user ...
1
vote
2answers
66 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 ...
1
vote
2answers
23 views

Java redrawing duplicate image

So ive been doing a bit of java recently and i have run into a bit of a problem. I have been playing around with 2d drawing and added an image to the project. The problem is that when the window gets ...
0
votes
1answer
34 views

Does g.drawImage() render only the part of the image visible on a JPanel, or does it “keep in mind” the rest of the image?

Let's say we have the following code: (in a class that extends JPanel): public void paintComponent(Graphics g) { g.drawImage(image, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, null); } If dx1 and ...
0
votes
1answer
43 views

Creating a Wheel of Fortune-esque puzzle board using JPanel/JFrame Java

I was assigned a free-form Java coding assignment in my computer science class in which my group and I decided to make a Wheel of Fortune type game. I've been working on the GUI using JPaneland ...
3
votes
1answer
38 views

Java - Swapping multiple JFrames on button press

this is the first time I've had a look at JFrames and JPannels and I've come a little stuck. What I am trying to do is this, I wish to have an starting screen then based on the users button choice it ...
0
votes
1answer
53 views

Java Auto-“Refresh” Function

I am changing the color of a JPanel using a setColor and getColor method. Now I want to change it so you don't have to click the getColor Button in a function which is calling the getColor all 100ms. ...
-1
votes
1answer
45 views

JPanel Not Stretching To Fill Screen [closed]

So I am trying to make a panel that stretches across my entire programs with, and has about 20 pixels worth of height. For some reason there is only a small box that is the panel. Can anybody tell me ...
1
vote
1answer
101 views

Paint Component not working outside of Eclipse

I really don't understand this. When I run my program in Eclipse, it looks perfectly fine. It appears below: Chemistry program when run from Eclipse (note that I dragged something over to cover up ...
0
votes
0answers
31 views

Unable to view first JPanel added at the center of frame

Have a look at my code when I try to add a stage at the center of installer screen I get nothing on opening JFrame. I achieved same code by placing add() method in overriden setVisible() method, I ...
0
votes
2answers
39 views

Java layout center with two panels

In Java, when using the BorderLayout, is it possible to have two panels in the CENTER, but both be visible on the form. Here is my code: guiFrame.add(guiFieldsPanel, BorderLayout.CENTER); ...
0
votes
1answer
63 views

Java GridBagLayout and JPanel Error: cannot add to layout: constraint must be a string (or null) [duplicate]

I have researched this error and I cannot seem to find a solution. I am trying to create a grid of 800 JButtons with 40 columns and 20 rows. This will eventually be used to control a domino setting up ...
-3
votes
1answer
53 views

Showing picture in a panel [closed]

I want to show some images in a panel. To see all pictures - I have to scroll down. Every image has name bellow the picture. Now what classes and methods should I use?
0
votes
2answers
36 views

Having trouble adding graphics to JPanel

I have looked online, but I am still having trouble understanding how to add graphics to a JPanel Here is the code for my panel class: public class GamePanel extends JPanel { public ...
-1
votes
1answer
24 views

Positioning a Slider in a JPanel using Java

Ok, like with everything I find it easier to learn when jumping into the deep end (Java, PHP, Air Traffic Controlling) I just try not to kill anybody in the process; however, I cannot find any ...

1 2 3 4 5 43