Refactor css file.2

This commit is contained in:
Krad
2022-07-14 14:41:54 +08:00
parent 055cb7c7ae
commit 2eda2717e5
6 changed files with 13 additions and 24 deletions

View File

@@ -66,30 +66,25 @@ void AboutWidget::initUiWidget()
pCompanyCopyRight = new QLabel(this);
pCompanyCopyRight->setObjectName("normal");
pCompanyCopyRight->setText(tr("Copyright © 2017-2022 Zhejiang Equilibrium Nine Medical Equipment Co., Ltd. All Rights Reversed"));
pCompanyCopyRight->setContentsMargins(subContentMargin, 0, 0, 0);
pMainLayout->addWidget(pCompanyCopyRight);
pMainLayout->addSpacing(subContentSpacing);
pGuiVer = new QLabel(this);
pGuiVer->setText(QString(tr("GUI Software V%1")).arg(getGUIVersion()));
pGuiVer->setContentsMargins(subContentMargin, 0, 0, 0);
pMainLayout->addWidget(pGuiVer);
pEmbededSoftVer = new QLabel(this);
pEmbededSoftVer->setText(tr("Embedded Software %1, Data store Path:%2").arg(getEmbVersion(), getDataStorePath()));
pEmbededSoftVer->setContentsMargins(subContentMargin, 0, 0, 0);
pMainLayout->addWidget(pEmbededSoftVer);
pReconSotfVer = new QLabel(this);
pReconSotfVer->setText(tr("Reconstruction Software V1.2"));
pReconSotfVer->setContentsMargins(subContentMargin, 0, 0, 0);
pMainLayout->addWidget(pReconSotfVer);
pMainLayout->addSpacing(subContentSpacing);
pFEBVer = new QLabel(this);
pFEBVer->setText(tr("FEB Information"));
pFEBVer->setContentsMargins(subContentMargin, 0, 0, 0);
pMainLayout->addWidget(pFEBVer);
pMainLayout->addSpacing(subContentSpacing);
@@ -108,7 +103,6 @@ void AboutWidget::initUiWidget()
pDcmtkCopyright = new QLabel(this);
pDcmtkCopyright->setObjectName("normal");
pDcmtkCopyright->setText(tr("Copyright (c) 1994-2021, OFFIS e.V."));
pDcmtkCopyright->setContentsMargins(subContentMargin, 0, 0, 0);
pMainLayout->addWidget(pDcmtkCopyright);
pMainLayout->addSpacing(subContentSpacing);
@@ -118,7 +112,6 @@ void AboutWidget::initUiWidget()
pJsoncppCopyright = new QLabel(this);
pJsoncppCopyright->setObjectName("normal");
pJsoncppCopyright->setText(tr("Copyright (c) 2009-2017 Dave Gamble"));
pJsoncppCopyright->setContentsMargins(subContentMargin, 0, 0, 0);
pMainLayout->addWidget(pJsoncppCopyright);
pMainLayout->addSpacing(subContentSpacing);
pMainLayout->addStretch();