The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
21 views

How to convert JGraph to a glass pane?

I have a class :public class GraphEditorPane extends JGraph and I am using this "GraphEditorPane" as follows : public JScrollPane getGraphPaneScrollPane() { if (graphPaneScrollPane == null) { ...
0
votes
1answer
37 views

JFrame Glasspane is also over JDialog but shouldn't

I have a JFrame (undecorated) with a Glasspane. This Frame opens a JDialog (also undecorated and has also a glassPane) and hides itself (setVisible(false)). The Glasspanes are set with ...
0
votes
0answers
17 views

Java glasspane with Gephi API

To the best of my knowledge Gephi's API does not support listeners on nodes nor drawing on top of the graph that you can produce. To "fix" that I thought about using a GlassPane on top of the JPanel ...
0
votes
1answer
26 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 ...
-4
votes
0answers
33 views

Can anyone tell me what is the exact use of GlassPane in java [closed]

As a beginner I am very much curious to know what is the exact use of GlassPane and how does it works. What references will be useful for me Thanks in advance....:D
0
votes
0answers
57 views

Glass Pane over an Applet

Ok so I created a Loader for a game that uses an applet as I was curious how to draw OVER an applet and not directly on it. Problem: After Loading the applet into the JFrame, the GlassPane does NOT ...
1
vote
1answer
22 views

Icon is not set right on GlassPane

I have a class that sets warning icons behind a textField when the input is different from what i expect form the user. For textfield this class works perfect, but when i'm trying to use it with a ...
0
votes
2answers
67 views

Glass pane disapear after repaint

I have problem with glass pane. When I first show my panel everything is OK. But when I want to repaint this panel because components should change (method createPanel() ) then glass panel dissapear. ...
0
votes
1answer
70 views

New invisible layer in JPanel

I would like to ask for help. I want something like this: http://docs.oracle.com/javase/tutorial/uiswing/components/rootpane.html#glasspane I have this application with map and i want to have a ...
0
votes
0answers
74 views

Create blocking glass pane show method

I've created a modal dialog inside a JFrame using the glass pane. My display method is quite simple: it creates a JPanel as glass pane with some alpha background and adds the JLabel and an ok and ...
0
votes
2answers
115 views

Drawing on JPanel behind GlassPane when clicking on GlassPane

Okay So I looked through multiple forums and Google and couldn't find an answer to my specific problem. So I have two panels stacked on top of each other and the one on top is a glassPane. When you ...
0
votes
2answers
124 views

Setting background image and greyed GlassPane in Java (Swing)

I'm struggling with two Java GUI things at the moment. This is the situation: I'm designing a word game using Swing components. I have a main JFrame where everything is placed (my GUI class extends ...
0
votes
1answer
94 views

Drawing on a JPanel without repainting background

I have an algorithm that displays pretty fractals on a JPanel. I want to be able to show gridline 'crosshairs' on the fractal panel whenever a user hovers his mouse on the panel. I have achieved this ...
-1
votes
1answer
142 views

Drawing directly on glasspane: not working

I am developing an app using Swing. While user interact with the app, help data may become available in a closed section of the screen, and I'd like to draw a small arrow pointing to that section when ...
0
votes
1answer
89 views

Swing: Paint over all other components and preserve events

What I am trying to do: draw a vertical line and a horizontal line that are perpendicular to each other and meet where the mouse points. A sort of cursor tracker. My structure: JFrame -> CustomPanel ...
5
votes
3answers
642 views

placing a transparent JPanel on top of another JPanel not working

I am trying to place a JPanel on top of another JPanel which contains a JTextArea and a button and i want to the upper apnel to be transparent. I have tried it by making the setOpaque(false) of the ...
1
vote
1answer
93 views

Mouse resize cursors don't work when using glass pane

In the below example, I have a table. If you hover the mouse over the table header column edges, the cursor changes to the resize cursor symbol. However, if you uncomment the line below to set the ...
1
vote
1answer
178 views

Why does Canvas as contentPane not paint opaque components that are added to the JFrame glasspane

Okay I have a Canvas (I am using this because it can implement BufferedStrategy). I add my Canvas to my JFrame contentPane and than add HUDPanel ( which is a JPanel consisting of 2 other JPanels - ...
1
vote
2answers
312 views

How to click through JGlassPane With MouseListener to UI behind it

I have a JFrame and a bunch of JComponents on top of the JFrame. I need to make use of the JGlassPane and I used this implementation to set it up. JPanel glass = new JPanel(); ...
2
votes
2answers
124 views

Secure Desktop Mode effect for java application

Does anyone now how to achieve a "Secure-Desktop Mode" (effect) such as one gets from the Windows Vista/7 UAC consent-blocks? I assume it is some function which will remove pixels here-and-there (and ...
1
vote
4answers
292 views

Showing GlassPane before entering loop

(In my applicaton with Swing GUI) I want to display GlassPane during some work performed in a loop or method, which is called after clicking JButton. For example: (action performed after clicking a ...
1
vote
1answer
118 views

Form Glass Pane in LWUIT

I'm trying to make a waiting screen using Form Glass Pane in LWUIT, the following is the code that I'm using public class LoadingGlassPane implements Painter { public static boolean isShown = ...
0
votes
2answers
332 views

JLayeredPane with transparent layer causes incorrect drawing

I have a JLayeredPane that has two layers. The top level is fully transparent and acts as a glass pane that captures mouse events and then dispatches them to the pane beneath it. The bottom layer does ...
1
vote
2answers
151 views

Swing: GlassPane prevents mouse pointer from changing

I have a JTabbedPane with some tabs and a lot of unused extra space next to the tabs. So I'm trying to use it and place some buttons there (like in Eclipse). I put the buttons on a GlassPane: ...
4
votes
2answers
262 views

Inner-Transparent Selection Window in Java using GlassPane

I am trying to achieve the following http://www.qksnap.com/i/3hunq/4ld0v/screenshot.png I am currently able to draw rectangles successfully on a semi-transparent glasspane background using the ...
2
votes
2answers
150 views

Java Swing - Flashing icon not showing up

I am trying to flash the icon to the user using a GlassPane. I am running a javax.swing.Timer which basically performs this: for (int i = 0; i < 3; i++) { ...
1
vote
1answer
234 views

Introducing JLayeredPane to an existing JFrame

I've been staring at Oracle's JLayeredPane tutorials but they are laid out in a manner that is confusing to me and doesn't get at what I am trying to do. I have an application that up to now has had ...
0
votes
1answer
351 views

Java Swing GlassPane functionality for individual panels?

I have built a simple interface that fills my entire JFrame. I am using a version of the class FinalGlassPane discovered on the internet here. This glass pane has no regular event listeners, but it ...
0
votes
0answers
127 views

Transparent Glass Pane with Ability to Interact with JPanel Underneath.

For this program, I am making an interactive plot from scratch using Java Graphics. It's a radial plot.I am currently trying to draw a circle overlay using the Java glass pane and am having some ...
2
votes
3answers
696 views

GlassPane is not showing up on JFrame

I have been trying to implement a GlassPane for my games' in-game HUD, but right now I cant seem to get the JFrame to set my GlassPane as its own i;ve used setGlassPane() and Ive been reading up a few ...
0
votes
2answers
864 views

JWebBrowser (extends JPanel) Showing Above Glass Pane

I am using the DJ Native Swing API to be able to use JWebBrowser. public class GUI extends JPanel { Robot robot; JComponent glassPane; public GUI(final Bot bot) { super(new ...
1
vote
0answers
202 views

Setting waitcursor on glasspane doesn't work in Dialog

I have an app that sometimes kicks off a long-running process in a background thread. If it does this from the main app, I set the wait cursor like this: oldCursor = ...
0
votes
1answer
211 views

JFilechooser “Look In” Drop down Does Not Appear on Frame GlassPane

So I have been having some problems with the JFilechooser in my swing app, and my troubleshooting hasn't been getting me anywhere. I have be able to embed the file chooser into a panel inside my ...
0
votes
2answers
340 views

JTabbedPane spacing

Original Top tab orientation setting: Problematic Right tab orientation setting: From the GUI above, my JTabbedPane (the blue colour tab on the right) is overlapping the "Quit" button (which is ...
4
votes
1answer
455 views

Calculator application including keyboard input in java swing

I have a calculator application in java swing, which is working properly with mouse click input. Now I want it to read input using keyboard button stroke. I had heard about the glass pane in java ...
3
votes
1answer
93 views

How is it possible to paint more than one rectangle on a glass pane?

I am trying to paint a series of rectangles on the glass pane as described in here. the thing is that only the last element from my list is being displayed on the pane. Does anyone how to be able to ...
2
votes
2answers
337 views

Java Glass Pain (that wasn't a typo)

I had a different problem first, so I made this post: Java JPanel mouse listener doesn't work over its components The answers led me to arrive at a java GlassPane. I saw the other posts on SO ...
2
votes
3answers
195 views

For glasspane purposes, why are input elements in Swing seemingly not considered part of a JPanel?

By input elements I mean things like JSpinners and JComboxBoxes. My glasspane is passed a JPanel containing JSpinners, JComboBoxes and for the most part, JLabels. The glasspane has a MouseListener ...
-1
votes
1answer
355 views

how to draw line on glasspane?

Please can anyone help me on this. I have this jtable and I want to draw a line on it in any directions. I've also read about glasspane which made it possilbe but I couldn't manage to do it. Can ...
2
votes
3answers
2k views

Wait cursor and disable java application

I want to have the user press a button to kick off a background thread. While the thread is processing, I want two things to happen: 1) A WAIT_CURSOR should be displayed. 2) The application should ...
2
votes
1answer
498 views

Java GUI, creating piano keys using JButton

I'm trying to create a simple piano application using Java, and I'm stuck at creating the keys. So what I have is a bunch of (Black) JButtons on top of (White) JButtons, but whenever I click the ...
3
votes
1answer
595 views

Layering multiple GlassPane's in a Root Container

Is it possible to add multiple GlassPanes for a single JFrame, or do I have to use the uncomfortable LayeredPane with the Opacity attribute. I have attached some code that shows what I want to do ...
0
votes
1answer
213 views

Problems with InfiniteProgressDemo

I have implemented a small example using InfiniteProgressDemo and works perfectly, showing the "loading wheel" rotating at the center of the frame. Now I have ported it to my program. I have a button ...
1
vote
1answer
1k views

How to set postion to a glass pane in a JFrame and JPanel

I want to show a glasspane over my JFrame. I could do that and now my problem is, the glasspane is visible on the top left corner. I want to know how to set glass pane's position as I want(A given ...
1
vote
2answers
701 views

Java Swing GlassPane Drag Performance

I'm trying to do a visual drag and drop in my Swing application using a GlassPane, but am running into the problem that the drag image lags behind the mouse pointer, sometimes considerably. How do I ...
1
vote
1answer
230 views

Draw Image of Userinterface onto Glasspane

I'm trying to draw a modified version of my GUI onto the Glasspane. My idea is to have a panel where I override the paint function, but when I trysomething like glass = frame.getGlasspane(); ...
1
vote
2answers
684 views

Creating glasspane

I have a question. Can I create glasspane in body MousePressed ? If yes anyone can write me how? I mean that I press mouse button and glass pane is visible and I can painting on him. EDIT Ok I have ...
2
votes
1answer
2k views

Java Glass pane

Hello I have a problem. I want to ask you how I can implement glassPane to paint on it. I mean, if I click mouse button, in mouseClicked event create my transparent glass pane, becouse i Want to see ...
3
votes
1answer
943 views

glassPane is not blocking input

I've build a small GUI game in java and at some point I'm using a glassPane to temporarily block all mouseinput. I've used the glassPane before without any problems but this time it won't block the ...
0
votes
1answer
245 views

moving glass pane between frames

I'm dragging component from one frame in main monitor to another frame in secondary monitor ,and while I'm dragging it the component painted in glasspane, I can see the glasspane over the main ...

1 2