Qt窗体常用属性设置

01 显示屏尺寸:

QDesktopWidget 获取系统屏幕大小

QDesktopWidget* pDesktopWidget = QApplication::desktop();
    
//获取可用桌面大小
QRect deskRect = QApplication::desktop()->availableGeometry();
//获取主屏幕分辨率
QRect screenRect = QApplication::desktop()->screenGeometry();
//获取屏幕数量
int nScreenCount = QApplication::desktop()->screenCount();

QDesktopWidget 提供了详细的位置信息,其能够自动返回窗口在用户窗口的位置和应用程序窗口的位置

QScreen* screen = QGuiApplication::primaryScreen();
QRect rectangle = screen->geometry();

Qt5开始,QDesktopWidget官方不建议使用,改为QScreen。
Qt 6.0 及之后版本,QDesktopWidget 已从QtWidgets 模块中被彻底移除。

 Qt5开始,QDesktopWidget官方不建议使用,改为QScreen。

#include
#include
 
//单屏幕
QScreen* screen = QGuiApplication::primaryScreen();  //获取主屏幕

//多屏幕
QList screenList =  QGuiApplication::screens();  //多显示器
QList rectList;
for(int i = 0; i < screenList.size(); i++){
	rectList.append(screenList.at(i).geometry());  //分辨率大小
}

如果是多屏幕,其每个屏幕的rect是不一样的,起始坐标不同,第一个屏幕的起始坐标是(0, 0),第二个屏幕的起始坐标是(1920, 0)。

geometry() 与 availableGeometry() 的区别

QScreen* screen = QGuiApplication::primaryScreen();

QRect rect1 = screen->geometry();
qDebug() << "rect1" << rect1.size().width() << rect1.size().height();
qDebug() << rect1.topLeft();
qDebug() << rect1.bottomRight();

QRect rect2 = screen->availableGeometry();
qDebug() << "rect2" << rect2.size().width() << rect2.size().height();
qDebug() << rect2.topLeft();
qDebug() << rect2.bottomRight();
  • geometry()返回的是屏幕的大小,即屏幕分辨率大小,包括屏幕下方的工具栏(1090*1080)
  • availableGeometry()返回可用屏幕的大小,不包括屏幕下方的工具栏(1090*1040)

02 调整窗口大小和初始位置:

resize方法调整窗口大小,move方法调整窗口初始位置。

void Main_window::setWindowProperty() {
    QScreen* screen = QGuiApplication::primaryScreen();
    QRect rectangle = screen->geometry();
    const int width{rectangle.width()};
    const int height{rectangle.height()};

    resize(width * 5 / 7, height * 5 / 7);
    move(width / 7, height / 7);
}

setFixed***方法设置窗体固定尺寸: 

setFixedHeight(int )
setFixedSize(const QSize&)
setFixedSize(int, int )
setFixedWidth(int )

全屏

全屏显示:

setWindowFlags(Qt::Window);
showFullScreen();

退出全屏:

setWindowFlags(Qt::Widget);
showNormal();

软件打开时QMainWindow设置格式

若窗口打开时太小,则需设置最小宽高进行限制:

    showNormal();//正常 showMaximized(); showMinimized(); showFullScreen();
	setWindowFlags(Qt::WindowMaximizeButtonHint|Qt::WindowCloseButtonHint|Qt::WindowMinimizeButtonHint);
	//setWindowFlags(Qt::Window | Qt::FramelessWindowHint | Qt::WindowSystemMenuHint);

你可能感兴趣的:(C&C++,Qt&Pyside,开发语言,C++,Qt)