I want to create a JFrame that is completely transparent. Now imagine that I size the JFrame to be the exact size of a game client (or any other application). How would I make it so that when I click on the transparent JFrame, the mouse press on the JFrame is somehow transferred to the game client.
Clicks on JFrame -> something (?) -> The window under JFrame gets clicked
If you want me to clarify please ask. Thanks!
Note: for those of you wondering, I'm not making a key logger or anything that is harmful in any way.
Edit: I get a StackOverflowError with this code at one of the last lines that says super.dispatchEvent(evt);
package mtus.personal.record;
import java.awt.AWTEvent;
import java.awt.EventQueue;
import java.awt.Toolkit;
import java.awt.Window;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import javax.swing.JFrame;
public class TransparentWindowTest
{
public static void main(String[] args)
{
final CustomEventQueue queue = new CustomEventQueue();
Toolkit.getDefaultToolkit().getSystemEventQueue().push(queue);
JFrame frame = new JFrame("Test");
frame.setSize(1000, 600);
frame.setUndecorated(true);
frame.addMouseListener(new MouseListener()
{
@Override
public void mouseClicked(MouseEvent evt)
{
queue.dispatchEvent(evt);
}
@Override
public void mouseEntered(MouseEvent evt)
{
}
@Override
public void mouseExited(MouseEvent evt)
{
}
@Override
public void mousePressed(MouseEvent evt)
{
}
@Override
public void mouseReleased(MouseEvent evt)
{
}
});
try
{
Class<?> awtUtilitiesClass = Class.forName("com.sun.awt.AWTUtilities");
Method mSetWindowOpacity = awtUtilitiesClass.getMethod("setWindowOpacity", Window.class, float.class);
mSetWindowOpacity.invoke(null, frame, Float.valueOf(0.1f));
} catch (NoSuchMethodException ex)
{
ex.printStackTrace();
} catch (SecurityException ex)
{
ex.printStackTrace();
} catch (ClassNotFoundException ex)
{
ex.printStackTrace();
} catch (IllegalAccessException ex)
{
ex.printStackTrace();
} catch (IllegalArgumentException ex)
{
ex.printStackTrace();
} catch (InvocationTargetException ex)
{
ex.printStackTrace();
}
frame.setVisible(true);
}
private static class CustomEventQueue extends EventQueue
{
@Override
public void dispatchEvent(AWTEvent evt)
{
super.dispatchEvent(evt);
}
}
}
MouseListener. – fireshadow52 Jan 8 '12 at 6:09