這篇文章給大家分享的是有關(guān)Qt中如何獲取桌面寬度高度的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
成都創(chuàng)新互聯(lián)專注于安多網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供安多營銷型網(wǎng)站建設(shè),安多網(wǎng)站制作、安多網(wǎng)頁設(shè)計、安多網(wǎng)站官網(wǎng)定制、小程序制作服務(wù),打造安多網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供安多網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
//桌面寬度高度 static int deskWidth(); static int deskHeight(); //程序文件名稱+當(dāng)前所在路徑 static QString appName(); static QString appPath(); //初始化隨機數(shù)種子 static void initRand();
int QUIHelper::deskWidth() { //沒有必要每次都獲取,只有當(dāng)變量為空時才去獲取一次 static int width = 0; if (width == 0) { width = qApp->desktop()->availableGeometry().width(); } return width; } int QUIHelper::deskHeight() { //沒有必要每次都獲取,只有當(dāng)變量為空時才去獲取一次 static int height = 0; if (height == 0) { height = qApp->desktop()->availableGeometry().height(); } return height; } QString QUIHelper::appName() { //沒有必要每次都獲取,只有當(dāng)變量為空時才去獲取一次 static QString name; if (name.isEmpty()) { name = qApp->applicationFilePath(); QStringList list = name.split("/"); name = list.at(list.count() - 1).split(".").at(0); } return name; } QString QUIHelper::appPath() { #ifdef Q_OS_ANDROID return QString("/sdcard/Android/%1").arg(appName()); #else return qApp->applicationDirPath(); #endif } void QUIHelper::initRand() { //初始化隨機數(shù)種子 QTime t = QTime::currentTime(); qsrand(t.msec() + t.second() * 1000); }
感謝各位的閱讀!關(guān)于“Qt中如何獲取桌面寬度高度”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!