C++ (Qt)int main( int argc, char ** argv ){ QApplication app( argc, argv ); app.changeOverrideCursor( Qt::BlankCursor ); // loading... app.restoreOverrideCursor(); return app.exec();
void QApplication::changeOverrideCursor ( const QCursor & cursor ) [static]Changes the currently active application override cursor to cursor.This function has no effect if setOverrideCursor() was not called.
C++ (Qt)int main( int argc, char ** argv ){ QApplication app( argc, argv ); app.setOverrideCursor( Qt::BlankCursor ); // loading... return app.exec();}
C++ (Qt) QPixmap pix(32, 32); pix.fill(Qt::transparent); a.setOverrideCursor(QCursor(pix));