Tagged Questions

5
votes
1answer
31 views

When using MigLayout, how would a 3rd int parameter to `add` affect layout?

For example: layeredPane.setLayout(new MigLayout()); layeredPane.add(component, "pos 50 50, width 100, height 100", 0); The 0 in this case does affect the component's layering, but I can't seem to ...
4
votes
1answer
71 views

How do I go about implementing a tray that appears on controls?

I have a screen like so: +--------+---------------------+ |___A____| | |________| JComponent I am | |________| drawing on | |________| __ __ | ...
3
votes
3answers
104 views

How can I place a component in a JLayeredPane right below an existing component?

I have a JTextField, and right below it I want to show a JLabel placed in a JLayeredPane (I will use it for autosuggestions later on). How can I place my JLabel in JLayeredPane right below the ...
3
votes
1answer
374 views

Drawing in JLayeredPane over exising JPanels

I am working on developing a Chess game. I want to have the board Container utilize a GridLayout to display an 8x8 grid of JPanels. (This will make functions such as highlighting selected squares and ...
3
votes
1answer
232 views

JTable inside JLayeredPane inside JScrollPane - how do you get it to work?

I want to put objects coming out of a JTable, layered on top of it, so using a JLayeredPane seems natural. However, getting this to paint properly, do the headers properly etc is very hard. How do I ...
3
votes
1answer
254 views

JMenuItems painting over higher components in JLayeredPane

I have a set of JMenuItems in a JPanel on one layer of a JLayeredPane, and an emulated cursor painted in a JPanel on a higher layer. When the menu items repaint, they paint over the emulated cursor ...
3
votes
1answer
743 views

Use case of Glass Pane vs. Layered Pane

I've always been a little fuzzy on the difference between the glass pane and a layered pane. Is the glass pane essentially just "the very top layer of the root pane," or does it behave differently? ...
2
votes
1answer
61 views

Is this the proper way to overlay multiple components in one panel?

I'm trying to overlay a custom transparency over the top of a JPanel. I want both components to extend to the edge of the layered pane. I have overridden the paintComponent method of the top ...
2
votes
1answer
101 views

Graphics not showing in JLayeredPane (java swing)

I'm trying to gradually build up an image based on user inputs. What I'm trying to do is create a bunch of graphics and add them as layers however I'm having some issues as they won't show up. Here is ...
2
votes
1answer
182 views

Component layering Java Swing, Layers showing on hover

I have two JPanels layered on top of each other in the same container. I am using container.add(jpanel,0); and container.add(otherjpanel, 1). It works fine however in order for the top layer to show ...
2
votes
1answer
232 views

JScrollPane inside JLayeredPane no repaint?

This could be something very simple but I'm totally confused. I have a JScrollPane inside a JLayeredPane when I scroll in the pane the things above in the JLayeredPanedoesn’t get repainted at all. ...
2
votes
1answer
143 views

Grab focus to a JPanel in a JLayeredPane

I have a JLayeredPane with 2 layers the first layer is a JPanel Wrapping an Image. the second layer is another object which extends JPanel called ResizableRectangle and implements KeyListener. I've ...
2
votes
6answers
547 views

Making JButtons overlap

I'm creating a virtual piano type program in Java Swing. My area for the piano keys right now is a JPanel with a horizontal BoxLayout containing white JButtons as white keys. I want to add black ...
2
votes
1answer
290 views

JLayeredPane: what's the functional difference between depth and position?

I am working on a Connect Four game for a school Java project. I've got the 'how' of the JLayeredPane, and it is working as expected, but I'm not quite getting the 'why' behind a certain concept. ...
1
vote
1answer
77 views

Is repaint executing too slow?

I have the following: import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.JLayeredPane; import javax.swing.JFrame; import javax.swing.BorderFactory; import ...
1
vote
2answers
61 views

Adding a JPanel to a JLayeredPane causes paints and resizes to have no effect

I am trying to add a JPanel (well, several) to a JLayeredPane. However, when I do so, the paint component method of the JPanel seems to have no effect. An example is included below: import ...
1
vote
1answer
32 views

Java - disable DEFAULT_LAYER of JLayeredPane

I've got a JLayeredPane where my MODAL_LAYER is neatly covering the everything, and it's all generally going pretty well. But there's a fly in the soup - the layers underneath still have ...
1
vote
1answer
72 views

I try to paint on a jlayeredpane a sequence of image; i load this images in a class with a for iteration,but the images don't show up

this is the class who i use to load the images, i use the constructor to call the metod load who load the images in the array percorso. import java.awt.Component; import java.awt.Graphics; import ...
1
vote
2answers
35 views

No idea where compiler errors are forming when using JLayeredPane

So, in my last question ("Can't figure out how to overlap images in java") I was kindly advised to utilize layout managers and the JLayeredPane. However, after studying the demos, and forming my own ...
1
vote
3answers
67 views

Make jLayeredPanes “solid”

I have a GUI with a bunch of jPanels stacked on top of each other. Which one is "on top" is controlled by a jLayeredPane. However, when hovering over buttons and forms not on top, they become visible ...
1
vote
1answer
115 views

Displaying JLayeredPane in JScrollPane

This code shows me waveform inside of scrollPane: var scrollPane = new JScrollPane var waveform = new Waveform(trackModel) // JPanel with waveform scrollPane.setViewportView(waveform) And this ...
1
vote
2answers
124 views

Component overlaping in JLayeredPane

I have added two components in JLayeredPane. 1. JWebBrowser 2. JPanel I added JWebBrowser and JPanel in different layers. JWebBrowser is in 0 i.e bottom layer and JPanel is in 1st Layer. ...
1
vote
1answer
122 views

Java: jLayeredPane problem defining mouseAdapter for different layer components

I am using jLayeredPane in my Java GUI. I added some panels(jPanelsLayer1) on DEFAULT_LAYER of my jLayeredPane and also each jPanel has a MouseAdapter that Overrides mouseEntered and mouseExited for ...
1
vote
3answers
404 views

why is paintComponent() never called by repaint()?

I've been working on an program that draws custom JComponents onto a JLayeredPane however all calls to repaint() on the components seem to do nothing yet the paintComponent method is invoked ...
1
vote
3answers
474 views

Java Swing: Clearing custom painting from a JPanel overlayed with other JPanels in a JLayeredPane

I've got a JLayeredPane containing three JPanels, two of which overlap, that I'm painting shapes to. One of the two JPanels that overlap needs to have every shape drawn to it cleared without ...
1
vote
2answers
723 views

Java : JLayeredPane resize problem

I am writing a program GUI in java. I want to hava a JLayeredPane as ContentPane of my JFrame. On my JLayeredPane there are two layers : one layer a Canvas(canvas1) and another layer has a ...
1
vote
1answer
275 views

Which layout should I use to fill a JLayeredPane with JButtons in a order?

I want to fill the JLayeredPane in a order so that when it reaches the right margin it should then start from the next line ans fill the entire box with buttons. I want to design a Point Of Sale ...
1
vote
3answers
841 views

Swing: Showing a transparent Panel hovering over another Panel

I want to show a textArea showing some text (will show log lines) , and have an animated gif hoovering above it. I tried the solution described here , but all I get is a grey screen. Hints? public ...
1
vote
1answer
554 views

How to set a background color on a JLayeredPane?

I'm curious why calling setBackground(Color) on a JLayeredPane doesn't seem to actually set a background color. I would guess it has something to do with the JLayeredPane having to have a transparent ...
1
vote
2answers
277 views

Java swing jLayeredPane

I have an code that adds jbutton on the clicked place in the jLayeredpane on mouse click. Now the problem is on resize. When i dont change the size of jLayeredpane on runtime there is no problem. When ...
1
vote
3answers
181 views

Unable to set mouse cursor JLayeredPane

I'm running into a problem that I can't seem to figure out nor find the answer anywhere on the web. I've got a JLayeredPane and when it only has one child Panel I am able to correctly set the cursor ...
1
vote
2answers
3k views

adding JLayeredPane to JPanel

I am trying to add a JLayeredPane to a JPanel and then add an image (JLabel icon) and a button to the JLayeredPane, but neither show up. I've tested the image without the button and the layeredpane ...
1
vote
4answers
473 views

How to add a JLabel on the DRAG_LAYER under the mouseDragged event

I am currently working on a drag n drop application and I would really like to know what's happening inside the JLayeredPane and I get a particular program behaviour... Here's the deal: I have a ...
1
vote
1answer
343 views

Swing JLayeredPane.getLayer() - Documentation error or actual side effect?

I'm trying to figure something out about JLayeredPane in Swing. If anyone has used this class, feedback would be appreciated. The documentation for getLayer(JComponent c) states: Gets the layer ...
0
votes
2answers
47 views

Java GUI layaredPanes

Okey I have a class that prints the board and another class that prints the Chess how do I use the LayeredPane to merge them together like the example picture above? I been trying all day and ...
0
votes
0answers
81 views

Custom components won't paint in JLayeredPane

we're creating some school project in Java. What are we trying to do: there is JScrollPane as part of the GUI, containing JLayeredPane (let's say "MapPane"). MapPane contains the map of the country ...
0
votes
2answers
180 views

Using GridBagLayout in a JLayeredPane

I am attempting to have a small floating "widget" of sorts in the top right of a JPanel. It's a fixed-size component - think of the compass in a google maps sort of view, if that helps. I realize ...
0
votes
2answers
151 views

Dynamic GUI size

I have this problem with resizing some JPanels in a GUI application. The application has a main JLayeredPane which contains 2 other JPanels. In JPanel 1 I have a login form and a button. When I press ...
0
votes
1answer
72 views

Typecast String to JLayeredPane

Is there a way to typecast String type to JLayeredPane? Following is the code I am using: private static void build_tables() { String sql="SELECT * FROM pos_tables WHERE pos_company_id='" ...
0
votes
1answer
399 views

Java: JLayeredPane in Netbeans

I am using netbeans IDE to develop a GUI for a java program. I want to use a JLayeredPane in my GUI. I added a JPanel(jPanel5) and a Canvas(canvas) on two layers to my jLayeredPane and This code is ...
0
votes
1answer
378 views

JDesktopPane and JInternalFrame help!

Greetings, I have a question with regards to limiting duplicate JInternalFrames to a JDesktopPane. Basically, adding an instance JInternalFrame to the JDesktopPane is comprehensive. But limiting ...
0
votes
1answer
194 views

Java LayeredPanes

i am constructing an application where i have a scrollpane added to a layered pane and the layered pane added to a JInternalFrame, the scrollpane content is a custom JComponent the problem is nothing ...
0
votes
1answer
113 views

Is there a limit to the amount of layers for a JLayeredPane in java?

I have a java application for an ATC. I just got started with the GUI. First I have a Mainframe, a JLayeredPane on this mainframe, and panels with labels(having ImageIcons) inside them on the ...
0
votes
1answer
310 views

Transarent background over heavyweight components

I've got a problem. In LayeredPane I have 2 components: heavyweight coponent and JComponent(or any other what I could draw text in) that is placed above the first one. I'd like JComponent to have ...
0
votes
1answer
240 views

Adding a JTable to a layeredPane

Can we add a JTable to a JLayeredPane in Java?
0
votes
2answers
751 views

Java Swing NullPointerException when drawing

I'm using a custom JLayeredPane. I have several Shapes which needed to be drawn on different layers in the JLayeredPane. To test this I create a JPanel and ask its graphics. Then I draw a test ...
0
votes
1answer
653 views

Java: Draw Lines on a JMF Lightweight_Rendered Player

I've got a problem: I have a JMF-Videoplayer in my application and I want to draw on it (while the video continues). The Problem I've got is that I use a JLayeredPane where I add the ...