mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-05 07:49:02 +00:00
e9a97afdf8
--HG-- extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%402
46 lines
1.6 KiB
Python
46 lines
1.6 KiB
Python
#!/usr/bin/env python
|
|
# Unit Name: reg_demo_dialog
|
|
# Created By: Virgil Dupras
|
|
# Created On: 2009-05-10
|
|
# $Id$
|
|
# Copyright 2009 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
from PyQt4.QtCore import SIGNAL, Qt, QUrl, QCoreApplication
|
|
from PyQt4.QtGui import QDialog, QMessageBox, QDesktopServices
|
|
|
|
from reg_demo_dialog_ui import Ui_RegDemoDialog
|
|
|
|
class RegDemoDialog(QDialog, Ui_RegDemoDialog):
|
|
def __init__(self, parent, reg):
|
|
flags = Qt.CustomizeWindowHint | Qt.WindowTitleHint | Qt.WindowSystemMenuHint
|
|
QDialog.__init__(self, parent, flags)
|
|
self.reg = reg
|
|
self._setupUi()
|
|
|
|
self.connect(self.enterCodeButton, SIGNAL('clicked()'), self.enterCodeClicked)
|
|
self.connect(self.purchaseButton, SIGNAL('clicked()'), self.purchaseClicked)
|
|
|
|
def _setupUi(self):
|
|
self.setupUi(self)
|
|
# Stuff that can't be setup in the Designer
|
|
appname = QCoreApplication.instance().applicationName()
|
|
title = self.windowTitle()
|
|
title = title.replace('$appname', appname)
|
|
self.setWindowTitle(title)
|
|
title = self.titleLabel.text()
|
|
title = title.replace('$appname', appname)
|
|
self.titleLabel.setText(title)
|
|
desc = self.demoDescLabel.text()
|
|
desc = desc.replace('$appname', appname)
|
|
self.demoDescLabel.setText(desc)
|
|
|
|
#--- Events
|
|
def enterCodeClicked(self):
|
|
if self.reg.ask_for_code():
|
|
self.accept()
|
|
|
|
def purchaseClicked(self):
|
|
url = QUrl('http://www.hardcoded.net/purchase.htm')
|
|
QDesktopServices.openUrl(url)
|
|
|