diff --git a/View/about_window.py b/View/about_window.py index 4a914ca..d5a719d 100644 --- a/View/about_window.py +++ b/View/about_window.py @@ -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 ") + 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") diff --git a/logos/AcouSed.png b/logos/AcouSed.png new file mode 100644 index 0000000..a8a2926 Binary files /dev/null and b/logos/AcouSed.png differ diff --git a/logos/BlocMarque-INRAE-Inter.jpg b/logos/BlocMarque-INRAE-Inter.jpg new file mode 100644 index 0000000..5898cfc Binary files /dev/null and b/logos/BlocMarque-INRAE-Inter.jpg differ diff --git a/logos/CNR.png b/logos/CNR.png new file mode 100644 index 0000000..8f66fba Binary files /dev/null and b/logos/CNR.png differ diff --git a/logos/EDF.png b/logos/EDF.png new file mode 100644 index 0000000..fccdfa5 Binary files /dev/null and b/logos/EDF.png differ diff --git a/logos/OSR.png b/logos/OSR.png new file mode 100644 index 0000000..0037f09 Binary files /dev/null and b/logos/OSR.png differ diff --git a/logos/Ubertone.jpeg b/logos/Ubertone.jpeg new file mode 100644 index 0000000..0d3e2f0 Binary files /dev/null and b/logos/Ubertone.jpeg differ