Exemplo n.º 1
0
 def on_actionAbout_triggered(self):
     """
     Slot documentation goes here.
     """
     aboutDialog = AboutDialog(self)
     if aboutDialog.exec_() == QDialog.Accepted:
         print 'ok'
Exemplo n.º 2
0
 def about(self):
     dialog = AboutDialog(self.AppContext.get_resource('About.txt'),
                          version=self.version)
     dialog.exec_()
Exemplo n.º 3
0
 def openAboutDialog(self):
     ad = AboutDialog(self)
     ad.exec_()
Exemplo n.º 4
0
 def on_about_clicked(self):
     about_dialog = AboutDialog()
     about_dialog.exec_()
Exemplo n.º 5
0
 def on_about(self):
     dialog = AboutDialog(self)
     dialog.exec_()
Exemplo n.º 6
0
 def on_about_clicked(self):
     about_dialog = AboutDialog()
     about_dialog.exec_()
Exemplo n.º 7
0
 def aboutdialog(self):
     aboutdialogWindow = AboutDialog()
     aboutdialogWindow.show()
     aboutdialogWindow.exec_()
Exemplo n.º 8
0
 def webViewBridgeSlot_about(self):
     aboutDialog = AboutDialog()
     aboutDialog.exec_()
Exemplo n.º 9
0
 def about(self):
     dialog = AboutDialog()
     dialog.exec_()