我的问题与How to pass mouse events to applications behind mine in C#/Vista?的要求完全相同,但我对透明Java UI也需要相同的问题。我可以使用6.0轻松创建透明的Java UI,但无法获得有关通过应用程序将事件传递给后面的任何应用程序(例如浏览器)的任何信息。
答案 0 :(得分:5)
我相信这会回答你的问题。要运行它,您将需要Java 6更新10及更高版本。 我在Windows Vista上测试了它
import java.awt.AlphaComposite;
import java.awt.Color;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Graphics2D;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class ClickThrough {
public static void main(String[] args) {
JFrame.setDefaultLookAndFeelDecorated(true);
JFrame f = new JFrame("Test");
f.setAlwaysOnTop(true);
Component c = new JPanel() {
@Override
public void paintComponent(Graphics g) {
Graphics2D g2 = (Graphics2D)g.create();
g2.setColor(Color.gray);
int w = getWidth();
int h = getHeight();
g2.fillRect(0, 0, w,h);
g2.setComposite(AlphaComposite.Clear);
g2.fillRect(w/4, h/4, w-2*(w/4), h-2*(h/4));
}
};
c.setPreferredSize(new Dimension(300, 300));
f.getContentPane().add(c);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.pack();
f.setVisible(true);
com.sun.awt.AWTUtilities.setWindowOpaque(f,false);
}
}
请注意,您需要具有未修饰的窗口或仅由Java装饰的窗口(不是默认的OS装饰),否则代码将无法工作。
答案 1 :(得分:2)
Savvas的回答甚至在使用Java 1.6.0_31的MacOS X 10.7.3上也得到了很好的帮助。谢谢! 唯一的事情:我还必须设置
f.setUndecorated(true);
答案 2 :(得分:2)
这不是答案,而是一个更新,它将危险问题更正为已接受的答案,并提供与Java 7 +兼容的示例
Per-Pixel alphering检查窗口中的每个像素以确定它是否透明。如果它是透明的,那么允许鼠标事件通过它,如果它不透明,鼠标事件将被窗口捕获。这通常是操作系统级问题。
您提供的示例实际上是在做一些非常危险的事情,首先它将半透明的颜色绘制到不透明的组件上,这意味着Swing不知道它实际上应该在组件下面绘制任何东西,并且还可能导致一些非常讨厌的绘画工件,因为Swing只知道不透明和透明的组件,它不知道半透明组件,所以你需要欺骗API。
执行自定义绘画时,您应始终致电super.paintComponent
以确保在绘画前正确设置Graphics
上下文。在您的情况下,您还应该使用setOpaque
使组件透明并将其传递给false
import java.awt.AlphaComposite;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Rectangle;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
public class TestFrame {
public static void main(String[] args) {
new TestFrame();
}
public TestFrame() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
ex.printStackTrace();
}
JFrame frame = new JFrame("Testing");
frame.setUndecorated(true);
frame.setAlwaysOnTop(true);
frame.setBackground(new Color(0, 0, 0, 0));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new TestPane());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
public class TestPane extends JPanel {
public TestPane() {
setOpaque(false);
}
@Override
public Dimension getPreferredSize() {
return new Dimension(200, 200);
}
protected void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2d = (Graphics2D) g.create();
g2d.setColor(Color.BLUE);
g2d.setComposite(AlphaComposite.SrcOver.derive(0.5f));
g2d.fill(new Rectangle(0, 0, getWidth(), getHeight()));
g2d.dispose();
}
}
}
答案 3 :(得分:0)
您可以尝试使用Robot类http://java.sun.com/javase/6/docs/api/java/awt/Robot.html,它允许您为低级操作系统指定系统事件,特别是鼠标事件等。