zoukankan      html  css  js  c++  java
  • QT 同时支持鼠标和触摸屏

    现在 如果我要使用鼠标
    导入环境变量
    export QWS_MOUSE_PROTO=MouseMan:/dev/input/mice
    使用触摸屏,导入环境变量
    export QWS_MOUSE_PROTO=Tslib:/dev/input/touchscreen0

    如果想同时两个都支持 

    export QWS_MOUSE_PROTO=MouseMan:/dev/input/mice;

    export QWS_MOUSE_PROTO=Tslib:/dev/input/touchscreen0:$QWS_MOUSE_PROTO;

    鼠标环境变量也可以这样设置:export QWS_MOUSE_PROTO=intelliMouse:/dev/mouse1 但插拔后就不可以使用了,可以用下面的参数替代解决鼠标插拔的问题

    但是用脚本启动应用程序的时候,鼠标无法使用,可以换用export QWS_MOUSE_PROTO=intelliMouse:/dev/mouse0或者mice

     http://www.qtcn.org/bbs/read.php?tid=23609

  • 相关阅读:
    JSTL和EL
    JSP
    Servlet基础知识
    JSON基础知识
    jQuery基础知识
    ajax基础知识
    索引实战
    反射
    设计模式
    JVM的异常处理
  • 原文地址:https://www.cnblogs.com/leaven/p/1886774.html
Copyright © 2011-2022 走看看