Replace the splash screen and about us image with a temporary gradient until the official one has been finalized. (#1642)

Signed-off-by: daimini <82231674+AMZN-daimini@users.noreply.github.com>
This commit is contained in:
Danilo Aimini
2021-06-29 08:54:40 -07:00
committed by GitHub
parent 75e7472cda
commit b1f54a2090
8 changed files with 345 additions and 297 deletions
+3 -3
View File
@@ -36,11 +36,11 @@ CStartupLogoDialog::CStartupLogoDialog(QString versionText, QString richTextCopy
s_pLogoWindow = this;
m_backgroundImage = QPixmap(QStringLiteral(":/StartupLogoDialog/splashscreen_1_27.png"));
m_backgroundImage = QPixmap(QStringLiteral(":/StartupLogoDialog/splashscreen_background_gradient.jpg"));
setFixedSize(QSize(600, 300));
// Prepare background image
QImage backgroundImage(QStringLiteral(":/StartupLogoDialog/splashscreen_1_27.png"));
QImage backgroundImage(QStringLiteral(":/StartupLogoDialog/splashscreen_background_gradient.jpg"));
m_backgroundImage = QPixmap::fromImage(backgroundImage.scaled(m_enforcedWidth, m_enforcedHeight, Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
// Draw the Open 3D Engine logo from svg
@@ -55,7 +55,7 @@ CStartupLogoDialog::CStartupLogoDialog(QString versionText, QString richTextCopy
setStyleSheet( "CStartupLogoDialog > QLabel { background: transparent; color: 'white' }\
CStartupLogoDialog > QLabel#copyrightNotice { color: #AAAAAA; font-size: 9px; } ");
m_ui->m_TransparentVersion->setText(QString("BETA - ") + versionText);
m_ui->m_TransparentVersion->setText(versionText);
}
CStartupLogoDialog::~CStartupLogoDialog()