java应用程序的多点触摸事件到鼠标事件
我有一个丰富复杂的 Java Swing 应用程序。我希望将多点触摸事件转换为 Swing 应用程序的鼠标事件。
有没有一种方法可以在不显着改变现有 Java 应用程序的情况下做到这一点?
I have a rich complex Java Swing Application. I would like the multi touch events to be converted into Mouse events for the Swing Applications.
Is there a way to do it without changing significantly the existing Java Application ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当我做了一些听起来与您所要求的类似的事情时,我最终使用 java.awt.Robot 类根据触摸通知创建鼠标单击。不过,我并没有使用 mt4j,而是使用了一个不太成熟的专有多点触摸屏 API。
When I did something that sounds similar to what you're asking, I ended up using the java.awt.Robot class to create mouse clicks according to the touch notifications. I was not using mt4j, though, but rather a proprietary multitouch screen's API that wasn't especially mature.