Qt4界面没指针

时间:2021-06-19 19:27:00

#include <QtGui/QApplication>
#include "stackwidget.h"
#include <QWSServer>
int main(int argc, char *argv[])
{

QApplication a(argc, argv);
QWSServer::setCursorVisible(false);
StackWidget w;
w.showFullScreen();

return a.exec();
}

在QApplication实例后打入
QWSServer::setCursorVisible(false);
在PC上编译出现:undefined reference to 'QWSServer::setCursorVisible(bool)' collect2:id returned 1 exit status错误,不要急,编译到arm上是可以用的,因为这涉及到-qws的client和server的问题了。

同时注意下w.showFullScreen是全屏的意思。