Update wizard setup for Mac OSX on wizard pages

This commit is contained in:
Ken Roberts 2014-10-08 13:03:33 -07:00
parent 6a75726eed
commit 06da940310

View File

@ -242,8 +242,11 @@ class ConnectWelcomePage(ConnectBase):
"""
def __init__(self, parent, page):
super().__init__(parent, page)
self.setPixmap(QtGui.QWizard.WatermarkPixmap,
QtGui.QPixmap(':/wizards/wizard_createprojector.png'))
if is_macosx():
self.setPixmap(QtGui.QWizard.BackgroundPixmap, QtGui.QPixmap(':/wizards/openlp-osx-wizard.png'))
else:
self.setPixmap(QtGui.QWizard.WatermarkPixmap,
QtGui.QPixmap(':/wizards/wizard_createprojector.png'))
self.setObjectName('welcome_page')
self.myButtons = [QtGui.QWizard.Stretch,
QtGui.QWizard.NextButton]
@ -537,7 +540,10 @@ class ConnectFinishPage(ConnectBase):
def __init__(self, parent, page):
super().__init__(parent, page)
self.setObjectName('connect_finish_page')
self.setPixmap(QtGui.QWizard.WatermarkPixmap, QtGui.QPixmap(':/wizards/wizard_createprojector.png'))
if is_macosx():
self.setPixmap(QtGui.QWizard.BackgroundPixmap, QtGui.QPixmap(':/wizards/openlp-osx-wizard.png'))
else:
self.setPixmap(QtGui.QWizard.WatermarkPixmap, QtGui.QPixmap(':/wizards/wizard_createprojector.png'))
self.myButtons = [QtGui.QWizard.Stretch,
QtGui.QWizard.FinishButton]
self.isFinalPage()