调整增加阴影后动画过渡页大小

This commit is contained in:
lixueman 2022-10-12 15:07:53 +08:00
parent 81ee93a7e6
commit 0f356b2d3c
1 changed files with 3 additions and 3 deletions

View File

@ -1278,7 +1278,7 @@ void MainWindow::on_minMaxChangeButton_clicked()
m_maxAnimation->setDuration(1); m_maxAnimation->setDuration(1);
} else { } else {
m_animationPage->show(); m_animationPage->show();
m_animationPage->setGeometry(this->x(), this->y(), Style::m_minw, Style::m_minh); m_animationPage->setGeometry(this->x() + 5, this->y() + 5, Style::m_minw - 10, Style::m_minh - 10);
m_animationPage->raise(); m_animationPage->raise();
m_animationPage->repaint(); m_animationPage->repaint();
m_maxAnimation->setDuration(260); m_maxAnimation->setDuration(260);
@ -1289,7 +1289,7 @@ void MainWindow::on_minMaxChangeButton_clicked()
loop.exec(); loop.exec();
m_maxAnimation->setEasingCurve(QEasingCurve::OutExpo); m_maxAnimation->setEasingCurve(QEasingCurve::OutExpo);
// m_maxAnimation->setStartValue(QRect(Style::m_primaryScreenX, Style::m_primaryScreenY + Style::m_availableScreenHeight - Style::minh, Style::minw, Style::minh)); // m_maxAnimation->setStartValue(QRect(Style::m_primaryScreenX, Style::m_primaryScreenY + Style::m_availableScreenHeight - Style::minh, Style::minw, Style::minh));
m_maxAnimation->setStartValue(QRect(this->x(), this->y(), Style::m_minw, Style::m_minh)); m_maxAnimation->setStartValue(QRect(this->x() + 5, this->y() + 5, Style::m_minw - 10, Style::m_minh - 10));
m_maxAnimation->setEndValue(QRect(0, 0, Style::m_availableScreenWidth, Style::m_availableScreenHeight)); m_maxAnimation->setEndValue(QRect(0, 0, Style::m_availableScreenWidth, Style::m_availableScreenHeight));
m_maxAnimation->start(QAbstractAnimation::DeleteWhenStopped); m_maxAnimation->start(QAbstractAnimation::DeleteWhenStopped);
@ -1412,7 +1412,7 @@ void MainWindow::showNormalWindowSlot()
m_isFullScreen = false; m_isFullScreen = false;
m_minAnimation->setEasingCurve(QEasingCurve::OutExpo); m_minAnimation->setEasingCurve(QEasingCurve::OutExpo);
m_minAnimation->setStartValue(QRect(0, 0, Style::m_availableScreenWidth, Style::m_availableScreenHeight)); m_minAnimation->setStartValue(QRect(0, 0, Style::m_availableScreenWidth, Style::m_availableScreenHeight));
m_minAnimation->setEndValue(QRect(this->x(), this->y(), Style::m_minw, Style::m_minh)); m_minAnimation->setEndValue(QRect(this->x() + 5, this->y() + 5, Style::m_minw - 10, Style::m_minh - 10));
m_minAnimation->start(QAbstractAnimation::DeleteWhenStopped); m_minAnimation->start(QAbstractAnimation::DeleteWhenStopped);
m_fullWindow->hide(); m_fullWindow->hide();