hyperlink of git deposit is added in about window
parent
1c409531a1
commit
477ad00cf8
|
|
@ -31,13 +31,13 @@ class AboutWindow(QDialog):
|
|||
|
||||
super().__init__()
|
||||
|
||||
self.logo_path = "./Logo"
|
||||
self.logo_AcouSed = QPixmap(self.logo_path + "/" + "Logo_AcouSed_AboutAcouSedWindow.png")
|
||||
self.logo_path = "./logos"
|
||||
self.logo_AcouSed = QPixmap(self.logo_path + "/" + "AcouSed.png")
|
||||
self.logo_AcouSed.scaled(16, 16, Qt.KeepAspectRatio, Qt.SmoothTransformation)
|
||||
|
||||
self.logo_INRAE = QPixmap(self.logo_path + "/" + "BlocMarque-INRAE-Inter.jpg")
|
||||
|
||||
self.setGeometry(400, 200, 300, 200)
|
||||
self.setGeometry(400, 200, 350, 200)
|
||||
|
||||
self.setWindowTitle("About AcouSed")
|
||||
|
||||
|
|
@ -51,7 +51,7 @@ class AboutWindow(QDialog):
|
|||
|
||||
self.label_logo_AcouSed = QLabel()
|
||||
self.label_logo_AcouSed.setPixmap(self.logo_AcouSed.scaledToHeight(128, Qt.SmoothTransformation))
|
||||
self.gridLayout.addWidget(self.label_logo_AcouSed, 0, 0, 3, 1, Qt.AlignCenter)
|
||||
self.gridLayout.addWidget(self.label_logo_AcouSed, 0, 0, 5, 1, Qt.AlignCenter)
|
||||
|
||||
self.label_acoused = QLabel()
|
||||
self.label_acoused.setText("Acoused 2.0")
|
||||
|
|
@ -70,7 +70,13 @@ class AboutWindow(QDialog):
|
|||
self.label_contact = QLabel()
|
||||
self.label_contact.setText("Contact : celine.berni@inrae.fr \n"
|
||||
" jerome.lecoz@inrae.fr")
|
||||
self.gridLayout.addWidget(self.label_contact, 3, 1, 1, 1, Qt.AlignLeft)
|
||||
self.gridLayout.addWidget(self.label_contact, 3, 1, 1, 1, Qt.AlignCenter)
|
||||
|
||||
self.label_link = QLabel()
|
||||
self.label_link.setText("< a href = https://forgemia.inra.fr/theophile.terraz/acoused > "
|
||||
"https://forgemia.inra.fr/theophile.terraz/acoused </a>")
|
||||
self.label_link.setOpenExternalLinks(True)
|
||||
self.gridLayout.addWidget(self.label_link, 4, 1, 1, 1, Qt.AlignCenter)
|
||||
|
||||
# ----------------------------------------------------------
|
||||
|
||||
|
|
@ -179,7 +185,7 @@ class Support(QDialog):
|
|||
|
||||
super().__init__()
|
||||
|
||||
self.logo_path = "./Logo"
|
||||
self.logo_path = "./logos"
|
||||
|
||||
self.logo_OSR = QPixmap(self.logo_path + '/' + "OSR.png")
|
||||
self.logo_CNR = QPixmap(self.logo_path + '/' + "CNR.png")
|
||||
|
|
|
|||
Binary file not shown.
|
After Width: | Height: | Size: 43 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 54 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 35 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 6.9 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 4.4 KiB |
Loading…
Reference in New Issue