def showQtAbout(self):
        """ Function to show About Box
		"""
        QMessageBox.aboutQt(self.aboutQtButton, "About PySide")
Exemple #2
0
 def on_action_about_qt_triggered(self):
     """Displays a dialog with information about Qt."""
     QMessageBox.aboutQt(self)
 def on_about_qt_btn_clicked(self):
     """ The `About Qt` button is pressed
     """
     # noinspection PyCallByClass
     QMessageBox.aboutQt(self, title=_("About Qt"))
Exemple #4
0
 def showQtAbout(self):
     """ Function to set Qt Button
     """
     QMessageBox.aboutQt(self.aboutQtButton)
Exemple #5
0
 def _actionAboutQt(self):
     QMessageBox.aboutQt(self)
 def showAboutQT(self):
     QMessageBox.aboutQt(self.aboutQTButton, "About QT")
	def showQtAbout(self):
		""" Function to show About Box
		"""
		QMessageBox.aboutQt(self.aboutQtButton, "About PySide")
Exemple #8
0
 def aboutQt(self):
     QMessageBox.aboutQt(self, title="Qt Version")
 def about_box_qt(self):
     QMessageBox.aboutQt(self, "About Qt")