forked from openlp/openlp
Fix up the look and feel of the wizards after I messed it up with my changes for OS X
This commit is contained in:
parent
ba464e5faa
commit
53905dec21
@ -68,6 +68,8 @@ class Ui_FirstTimeWizard(object):
|
|||||||
first_time_wizard.setPixmap(QtGui.QWizard.BackgroundPixmap,
|
first_time_wizard.setPixmap(QtGui.QWizard.BackgroundPixmap,
|
||||||
QtGui.QPixmap(':/wizards/openlp-osx-wizard.png'))
|
QtGui.QPixmap(':/wizards/openlp-osx-wizard.png'))
|
||||||
first_time_wizard.resize(634, 386)
|
first_time_wizard.resize(634, 386)
|
||||||
|
else:
|
||||||
|
first_time_wizard.setWizardStyle(QtGui.QWizard.ModernStyle)
|
||||||
self.finish_button = self.button(QtGui.QWizard.FinishButton)
|
self.finish_button = self.button(QtGui.QWizard.FinishButton)
|
||||||
self.no_internet_finish_button = self.button(QtGui.QWizard.CustomButton1)
|
self.no_internet_finish_button = self.button(QtGui.QWizard.CustomButton1)
|
||||||
self.cancel_button = self.button(QtGui.QWizard.CancelButton)
|
self.cancel_button = self.button(QtGui.QWizard.CancelButton)
|
||||||
|
@ -53,6 +53,8 @@ class Ui_ThemeWizard(object):
|
|||||||
if is_macosx():
|
if is_macosx():
|
||||||
theme_wizard.setPixmap(QtGui.QWizard.BackgroundPixmap, QtGui.QPixmap(':/wizards/openlp-osx-wizard.png'))
|
theme_wizard.setPixmap(QtGui.QWizard.BackgroundPixmap, QtGui.QPixmap(':/wizards/openlp-osx-wizard.png'))
|
||||||
theme_wizard.resize(646, 400)
|
theme_wizard.resize(646, 400)
|
||||||
|
else:
|
||||||
|
theme_wizard.setWizardStyle(QtGui.QWizard.ModernStyle)
|
||||||
self.spacer = QtGui.QSpacerItem(10, 0, QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Minimum)
|
self.spacer = QtGui.QSpacerItem(10, 0, QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Minimum)
|
||||||
# Welcome Page
|
# Welcome Page
|
||||||
add_welcome_page(theme_wizard, ':/wizards/wizard_createtheme.bmp')
|
add_welcome_page(theme_wizard, ':/wizards/wizard_createtheme.bmp')
|
||||||
|
@ -125,6 +125,8 @@ class OpenLPWizard(QtGui.QWizard, RegistryProperties):
|
|||||||
QtGui.QWizard.NoBackButtonOnStartPage | QtGui.QWizard.NoBackButtonOnLastPage)
|
QtGui.QWizard.NoBackButtonOnStartPage | QtGui.QWizard.NoBackButtonOnLastPage)
|
||||||
if is_macosx():
|
if is_macosx():
|
||||||
self.setPixmap(QtGui.QWizard.BackgroundPixmap, QtGui.QPixmap(':/wizards/openlp-osx-wizard.png'))
|
self.setPixmap(QtGui.QWizard.BackgroundPixmap, QtGui.QPixmap(':/wizards/openlp-osx-wizard.png'))
|
||||||
|
else:
|
||||||
|
self.setWizardStyle(QtGui.QWizard.ModernStyle)
|
||||||
add_welcome_page(self, image)
|
add_welcome_page(self, image)
|
||||||
self.add_custom_pages()
|
self.add_custom_pages()
|
||||||
if self.with_progress_page:
|
if self.with_progress_page:
|
||||||
|
Loading…
Reference in New Issue
Block a user