qt判断窗口最大化、最小化、是否可见

窗口是否最大化

1
this->window()->isMaximized()

窗口是否最小化

1
this->window()->isMinimized()

窗口是否显示

1
this->window()->isVisible()