Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
hi:
I build qt5 on a ARM platform, and need to hide the cursor
we use QWSServer::setCursorVisible(false) to hide the cursor in qt 4.8 , which function in qt5?
thanks
find the solution:
QCursor cursor(Qt::BlankCursor); QApplication::setOverrideCursor(cursor); QApplication::changeOverrideCursor(cursor);