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. ...
1
vote
1answer
49 views

How to cancel a repaint of a JPanel?

I know that JPanel is, by default, automatically double-buffered. However, I have a particularly time-intensive painting operation in my panel, but the panel only needs to be repainted when the ...
1
vote
2answers
54 views

How to repaint GUI after a certain element was removed?

I'm making an app where a user would be able to add a button to the screen or remove it (I don't have those options implemented yet). So, for now I'm manually populating it with a for() loop and ...
0
votes
4answers
38 views

Having difficulty displaying JPanels that were added using for() loop and a method. Java

I modified my paint's method for loop that drew JPanels squares to where the everything that has to do with the newly added JPanels is not within the for loop as it used to be, but rather in it's own ...
0
votes
0answers
23 views

Zoom custom panel with scroll

I have my BackgroundPanel, which extends JPanel. public static void main(String[] args) { JFrame frame = new JFrame(); frame.setSize(300, 200); BackgroundPanel bgPanel = new ...
0
votes
3answers
44 views

addMouseListener for a JPanel

Today I have a problem.. My program make a 8x8 grid and show the coord when I click on a JButton. BUT I refuse to use JButton and I need to go for JPanel.. But my addMouseListener isn't working so I ...
1
vote
2answers
59 views

Swing Panels Color Change

I am trying to launch multiple JFrames with a custom panel that I created called subpanel. [In case you are wondering about the naming, I have another class called masterpanel, which contains a button ...
0
votes
2answers
43 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
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
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
63 views

Printing multiple components

I am trying to send a JTable and a JPanel to the printer in a single print job like this : PrintRequestAttributeSet attr = new HashPrintRequestAttributeSet(); ...
0
votes
1answer
74 views

Frame and Canvas grow larger than specified

I have no idea why I am getting an extra-large window, this is making me run hoops to fit my sprites in the game-window. The constructor should make it so all the subcomponents fit into eachother, but ...
0
votes
2answers
117 views

Replace Component in GridBagLayout

I created a Class that extends from JPanel which layout property is GridBagLayout. I basically need to display an array of JLabels (grid) but i'm not able to replace a component once it's created. ...
0
votes
0answers
63 views

paint() method in java hides my panels [closed]

I have a JFrame and 2 JPanels and i like my paint method to draw in the second JPanel. The method is in the JFrame class and when I execute the program it hides all of my buttons or text areas in the ...
-1
votes
2answers
224 views

JPanel gradient background

I googled but could find no correct answer. I have a JPanel and I want it to have a gradient that comes from top to bottom. I'm just going to use two colors. How can I achieve this?
1
vote
2answers
74 views

How to get a JPanel to show over the others in the same area

So I am writing a little app that needs to have one JPanel be added to the same area as another and have one show up when it's needed - AKA when a button is pressed, one disappears and the other shows ...
0
votes
1answer
93 views

Make a circle travel along a semi-circular path, like a sun [closed]

I have made a 'sun' which is a small yellow orb, and know want to animate it so that it 'rises' and 'sets' over a 'skyline'. I know I have to use a timer for the animation, but I don't know how to ...
0
votes
1answer
270 views

Custom FocusTraversalPolicy class Java Swing

I'm working on setting new tab orders for multiple Panels accross an application. I want to create a new class that will allow me to handle to sorting much in the same way as the deprecated ...
-2
votes
1answer
210 views

my java calculator is compling perfectly -why it is not working? [closed]

import java.awt.*; import java.awt.event.*; import javax.swing.*; import java.math.*; class calculatorpanel extends JPanel { private JButton display; private JPanel panel; private ...
-1
votes
1answer
216 views

How to embed a jframe in an eclipse view [duplicate]

Possible Duplicate: Any way to embed a Swing JFrame in the AWT Frame from the SWT_AWT bridge? I have an RCP application with many views. I have a class which extends JPanel and draws some ...
2
votes
2answers
60 views

Unable to get rid of drawn lines

I found similar problems on the internet but the solutions provided didn't work. I want to clear the JPanel. To do that I call repaint()(from the clear() method) with a flag set to false to avoid ...
1
vote
2answers
135 views

Switching panels with MenuBar

I have written some code which is designed to create a table and display the clipboard data (which will be copied from excel) in that table. So i have one menu item in the menu bar "Import from ...
2
votes
2answers
122 views

Ways to Draw and Redraw / update just the Content (not the background) components of JPanel?

I am creating a graph plotter that plots (draws) datapoints & lines based on periodically updating data points. I am using a JPanel inside a JFrame as the drawing canvas. The JPanel contains the ...
1
vote
1answer
285 views

Drag and Drop of JPanel wont drop

I'm basically trying to drag and drop a JPanel which contains a Jlabel: Here is a sample of the drag and drop code I have implemented: public class TestDragAndDropPanel extends JPanel{ private ...
0
votes
4answers
261 views

How can I fade in a JPanel & children?

I know that I can fade in a panel, by adding the alpha value to the background color & a timer. But how can I fade in a panel with child components (like a JLabel)? EDIT _fadeTimer = new ...
3
votes
4answers
806 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 ...
2
votes
1answer
114 views

Adding an instance of a panel from another class to a parent panel

Is something wrong with the construction of this class? I am trying to add an instance of it to a JPanel in another class: public class calculator2 extends JPanel { public calculator2() { ...
3
votes
3answers
1k views

paintComponent() vs paint() and JPanel vs Canvas in a paintbrush-type GUI

I got some interesting ideas and criticism from this, this and this posts (see last post for the code of the GUI in question). Nevertheless, I'm still quite confused about some things. Mainly, what is ...
4
votes
1answer
426 views

MouseEvent on JPanel - wrong coordinate

I have written the following micro-paintbrush program in Java: import java.awt.BorderLayout; import java.awt.Color; import java.awt.Container; import java.awt.Graphics; import java.awt.GridLayout; ...
3
votes
3answers
774 views

setPreferredSize does not work

Code: import java.awt.Dimension; import javax.swing.*; public class Game extends JFrame { private static final long serialVersionUID = -7919358146481096788L; JPanel a = new JPanel(); ...
0
votes
2answers
263 views

Content in JPanel won't appear

There is no errors but when I Run it the content that I added into the JPanel won't appear, only the one not inside the JPanel appear. import javax.swing.*; import java.awt.*; public class ...
-1
votes
1answer
115 views

Display the list box over the below text field controls [closed]

Actually I am creating one panel A and including the text fields and list box and then created another panel B and insert A panel to B. Now I have to enter the some text field, but the below list box ...
1
vote
1answer
348 views

Adding JPanel to Canvas

Since JPanel and Canvas are both same-level components, the solution would probably be some sort of a 'hack'. This question says that you won't be able to add the lightweight component to the ...
2
votes
1answer
59 views

Swing Method error

I'm having a problem. I'm reading data from a socket, and when I read some meaningful data to my app I call a method to repaint the screen with the swing objects I want. This method works all right ...
0
votes
1answer
144 views

How to save a scrollable JPanel as a jpeg image (not as a snapshot)

How is it possible to store a JPanel as a jpeg image the solutions I could search takes a snapshot of the display, this does not capture all the contents of the JPanel as part of it is hidden. Is ...
5
votes
1answer
758 views

Add a background image to JPanel with rounded corners

I've just recently extended JPanel for use in a project which we want to appear to be more "3D". That's my bosses' way of requiring shadowing and rounded corners on components. That's been ...
1
vote
3answers
1k views

how to delete all rows in jtable?

i have one problem to delete the all rows in my table ,i have one Jpanel which have jtable, when i select the row it will display the corresponding row value ,and when i click another button on ...
2
votes
1answer
63 views

Drawing rectangle that is some percent of drawing-panel

I want to draw rectangle that is only specified percent high of panel im drawing it on, and when i resize the panel it should resize itself. But my problem is that drawRect() accepts only integers so ...
2
votes
4answers
854 views

Two JPanels in JFrame , One under other

I've got two panels in my frame, and I would like to set them one under other, and this first should have size like 9/10*screen frame, and this second 1/10. I've tried with GridLayout (2 rows and ...
0
votes
2answers
486 views

Navigating between multiple panels

Can anyone tell me how to go about coding for navigation between multiple JPanel classes taking the event trigger from JButton from the objects (panels) themselves? I have read about CardLayout. The ...
0
votes
2answers
99 views

Fullscreen possibilities?

I am finding it hard to convert my JPanel into a lwjgl fullscreen display? is there another way or a guide on what you need to change: This is what i am currently calling it with: public void ...
1
vote
1answer
271 views

Jbutton, JPanel, JFrame and IllegalArgumentException: adding a window to a container

I have a JFrame and multiple JPanels, all called from public class ProcessedFinal extends JFrame, in here, i have all my action listeners including the IAgreeJB. When i click the iagreeJB the ...
0
votes
2answers
194 views

How to create a new canvas on JPanel?

i'm making an MSPaint like application on java, but i'm stuck on create a new canvas (a white background JPanel) My Code is this: public void creaLienzo(){ BufferedImage canvas=new ...
-1
votes
2answers
460 views

How do I change this Java Applet to use JPanel?

How to change it to JPanel, this code is in Java Applet how do I change it? import java.applet.Applet; import java.awt.*; import java.awt.event.*; import java.util.Random; import ...
1
vote
0answers
239 views

Adding Graphics to a JButton

I am building a Sudoku game and I am trying to add different graphics to each button. The problem I am having is getting the graphics to look right. I have edited this to show what I have gotten ...
0
votes
0answers
236 views

How to use FontMetrics?

Can someone explain to me how to use FontMetrics in a JPanel? I need to figure out the width and height in pixels of a String when using drawString() to paint it on a JPanel Thanks!
0
votes
1answer
97 views

Is it worth it to convert all of my JComponents to AWT components?

I have a relatively large program that I'm working on that's about half finished. So far, all I have used for graphics are things like JFrame, JPanel, and a myriad of JComponents. In the future, I ...
1
vote
2answers
1k views

Adding some JPanels (one below another) in JPanel

I'd like to add some panels (with different height) to another JPanel (which is in a JScrollPane) as in this image: Which layout should I use?
0
votes
1answer
420 views

Draw on JPanel and then save to a file, but saved file is all white

I'm a new poster to stackoverflow, but I've always read the posts for inspiration and I am happy to be a part of the community. I am drawing an image to a JPanel and then I wish to save that image to ...
1
vote
2answers
923 views

Java GUI (SWING/AWT) - Empty Frame - Components not showing

I'm trying to create (hand-coded) a GUI similair to the GUI shown below, however, only an empty frame shows. Mock GUI: I've used various layouts and SWING/AWT components to create the GUI and 4 ...

1 2