mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-04 23:39:02 +00:00
36 lines
1.4 KiB
Python
36 lines
1.4 KiB
Python
|
#!/usr/bin/env python
|
||
|
# Unit Name: about_box
|
||
|
# Created By: Virgil Dupras
|
||
|
# Created On: 2009-05-09
|
||
|
# $Id$
|
||
|
# Copyright 2009 Hardcoded Software (http://www.hardcoded.net)
|
||
|
|
||
|
from PyQt4.QtCore import Qt, QCoreApplication, SIGNAL
|
||
|
from PyQt4.QtGui import QDialog, QDialogButtonBox, QPixmap
|
||
|
|
||
|
from about_box_ui import Ui_AboutBox
|
||
|
|
||
|
class AboutBox(QDialog, Ui_AboutBox):
|
||
|
def __init__(self, parent, app):
|
||
|
flags = Qt.CustomizeWindowHint | Qt.WindowTitleHint | Qt.WindowSystemMenuHint | Qt.MSWindowsFixedSizeDialogHint
|
||
|
QDialog.__init__(self, parent, flags)
|
||
|
self.app = app
|
||
|
self._setupUi()
|
||
|
|
||
|
self.connect(self.buttonBox, SIGNAL('clicked(QAbstractButton*)'), self.buttonClicked)
|
||
|
|
||
|
def _setupUi(self):
|
||
|
self.setupUi(self)
|
||
|
# Stuff that can't be done in the Designer
|
||
|
self.setWindowTitle(u"About %s" % QCoreApplication.instance().applicationName())
|
||
|
self.nameLabel.setText(QCoreApplication.instance().applicationName())
|
||
|
self.versionLabel.setText('Version ' + QCoreApplication.instance().applicationVersion())
|
||
|
self.logoLabel.setPixmap(QPixmap(':/%s_big' % self.app.LOGO_NAME))
|
||
|
self.registerButton = self.buttonBox.addButton("Register", QDialogButtonBox.ActionRole)
|
||
|
|
||
|
#--- Events
|
||
|
def buttonClicked(self, button):
|
||
|
if button is self.registerButton:
|
||
|
self.app.ask_for_reg_code()
|
||
|
|