JPen 接触式设备访问库开源项目

我要开发同款
匿名用户2009年03月14日
42阅读
开发技术Java
所属分类其他开源、硬件驱动/工具
授权协议LGPL

作品详情

JPen是一个用来访问笔触式、触摸屏等接触式设备的Java类库。

示例代码:

import javax.swing.JFrame;import javax.swing.JLabel;import jpen.demo.StatusReport;import jpen.event.PenListener;import jpen.PButtonEvent;import jpen.PenManager;import jpen.PKindEvent;import jpen.PLevelEvent;import jpen.PScrollEvent;public class JPenExampleimplements PenListener{public static void main(String... args) throws Throwable{new JPenExample();}JPenExample(){JLabel l=new JLabel("Move the pen or mouse over me!");PenManager pm=new PenManager(l);System.out.println(new StatusReport(pm));pm.pen.addListener(this);JFrame f=new JFrame("JPen Example");f.getContentPane().add(l);f.setSize(300, 300);f.setVisible(true);}//@Overridepublic void penButtonEvent(PButtonEvent ev) {System.out.println(ev);}//@Overridepublic void penKindEvent(PKindEvent ev) {System.out.println(ev);}//@Overridepublic void penLevelEvent(PLevelEvent ev) {System.out.println(ev);}//@Overridepublic void penScrollEvent(PScrollEvent ev) {System.out.println(ev);}//@Overridepublic void penTock(long availableMillis) {System.out.println("TOCK - available period fraction: "+availableMillis);}}
声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论