Qt隐藏鼠标(嵌入式)

嵌入式Qt程序一般不需要显示鼠标。

     参考http://hi.baidu.com/dreammerge/item/81c301e4dbc379a9c00d75c5

        用方法4:main()函数加入 #include <QWSServer>,实例化QApplication后,添加QWSServer::setCursorVisible(false);

      但是程序启动的时候还是会用难看的绿色小方框。

    修改Qt原码:src/gui/embedded/qwscursor_qws.cpp文件中
void QWSServerPrivate::initializeCursor()
函数
原来的:
     setCursor(QWSCursor::systemCursor(Qt::ArrowCursor)); 

     q->sendMouseEvent(QPoint(swidth/2,sheight/2), 0); 
修改为
     setCursor(QWSCursor::systemCursor(Qt::BlankCursor));    //gtremend

     q->sendMouseEvent(QPoint(swidth,sheight), 0);  //gt remend
重新编译原码

        移植到板子上上可能还会提示solidFill_setup(): Screen depth 15 not supported 之类的错误,在configure的时候不加-depths 16,18或-depths all之类的,然后编译就可以了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值