diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py index 427c6e509..255859abe 100644 --- a/openlp/core/ui/servicemanager.py +++ b/openlp/core/ui/servicemanager.py @@ -891,10 +891,8 @@ class ServiceManager(QtGui.QWidget): ``expand`` Override the default expand settings. (Tristate) """ - if expand == None: - expand = self.expandTabs - log.debug(u'addServiceItem') - if expand == None: + # if not passed set to config value + if expand is None: expand = self.expandTabs sitem = self.findServiceItem()[0] item.render() diff --git a/openlp/core/ui/themeform.py b/openlp/core/ui/themeform.py index 92dd76b29..ff57ecd56 100644 --- a/openlp/core/ui/themeform.py +++ b/openlp/core/ui/themeform.py @@ -31,11 +31,11 @@ from PyQt4 import QtCore, QtGui from openlp.core.lib import translate, BackgroundType, BackgroundGradientType from openlp.core.utils import get_images_filter -from themedialog import Ui_ThemeDialog +from themewizard import Ui_ThemeWizard log = logging.getLogger(__name__) -class ThemeForm(QtGui.QWizard, Ui_ThemeDialog): +class ThemeForm(QtGui.QWizard, Ui_ThemeWizard): """ This is the Bible Import Wizard, which allows easy importing of Bibles into OpenLP from other formats like OSIS, CSV and OpenSong. @@ -159,8 +159,6 @@ class ThemeForm(QtGui.QWizard, Ui_ThemeDialog): u'shadowSizeSpinBox', self.shadowSizeSpinBox) self.mainAreaPage.registerField( u'footerSizeSpinBox', self.footerSizeSpinBox) -# self.areaPositionPage.registerField( -# u'mainDefaultPosition', self.mainDefaultPositionCheckBox) self.areaPositionPage.registerField( u'mainPositionX', self.mainXSpinBox) self.areaPositionPage.registerField( @@ -169,8 +167,6 @@ class ThemeForm(QtGui.QWizard, Ui_ThemeDialog): u'mainPositionWidth', self.mainWidthSpinBox) self.areaPositionPage.registerField( u'mainPositionHeight', self.mainHeightSpinBox) -# self.areaPositionPage.registerField( -# u'footerDefaultPosition', self.footerDefaultPositionCheckBox) self.areaPositionPage.registerField( u'footerPositionX', self.footerXSpinBox) self.areaPositionPage.registerField( diff --git a/openlp/core/ui/themedialog.py b/openlp/core/ui/themewizard.py similarity index 50% rename from openlp/core/ui/themedialog.py rename to openlp/core/ui/themewizard.py index 400e3ba32..b3af9df98 100644 --- a/openlp/core/ui/themedialog.py +++ b/openlp/core/ui/themewizard.py @@ -1,142 +1,159 @@ # -*- coding: utf-8 -*- +# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4 -# Form implementation generated from reading ui file 'themedialog.ui' -# -# Created: Mon Nov 8 06:09:19 2010 -# by: PyQt4 UI code generator 4.7.4 -# -# WARNING! All changes made in this file will be lost! +############################################################################### +# OpenLP - Open Source Lyrics Projection # +# --------------------------------------------------------------------------- # +# Copyright (c) 2008-2010 Raoul Snyman # +# Portions copyright (c) 2008-2010 Tim Bentley, Jonathan Corwin, Michael # +# Gorven, Scott Guerrieri, Meinert Jordan, Andreas Preikschat, Christian # +# Richter, Philip Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, # +# Carsten Tinggaard, Frode Woldsund # +# --------------------------------------------------------------------------- # +# This program is free software; you can redistribute it and/or modify it # +# under the terms of the GNU General Public License as published by the Free # +# Software Foundation; version 2 of the License. # +# # +# This program is distributed in the hope that it will be useful, but WITHOUT # +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # +# more details. # +# # +# You should have received a copy of the GNU General Public License along # +# with this program; if not, write to the Free Software Foundation, Inc., 59 # +# Temple Place, Suite 330, Boston, MA 02111-1307 USA # +############################################################################### from PyQt4 import QtCore, QtGui -class Ui_ThemeDialog(object): - def setupUi(self, ThemeDialog): - ThemeDialog.setObjectName("ThemeDialog") - ThemeDialog.resize(550, 386) - ThemeDialog.setModal(True) - ThemeDialog.setWizardStyle(QtGui.QWizard.ModernStyle) - ThemeDialog.setOptions(QtGui.QWizard.IndependentPages|QtGui.QWizard.NoBackButtonOnStartPage) +from openlp.core.lib import translate, build_icon + +class Ui_ThemeWizard(object): + def setupUi(self, ThemeWizard): + ThemeWizard.setObjectName(u'ThemeWizard') + ThemeWizard.resize(550, 386) + ThemeWizard.setModal(True) + ThemeWizard.setWizardStyle(QtGui.QWizard.ModernStyle) + ThemeWizard.setOptions(QtGui.QWizard.IndependentPages|QtGui.QWizard.NoBackButtonOnStartPage) self.welcomePage = QtGui.QWizardPage() - self.welcomePage.setTitle("") - self.welcomePage.setSubTitle("") - self.welcomePage.setObjectName("welcomePage") + self.welcomePage.setTitle(u'') + self.welcomePage.setSubTitle(u'') + self.welcomePage.setObjectName(u'welcomePage') self.welcomeLayout = QtGui.QHBoxLayout(self.welcomePage) self.welcomeLayout.setSpacing(8) self.welcomeLayout.setMargin(0) - self.welcomeLayout.setObjectName("welcomeLayout") + self.welcomeLayout.setObjectName(u'welcomeLayout') self.importBibleImage = QtGui.QLabel(self.welcomePage) self.importBibleImage.setMinimumSize(QtCore.QSize(163, 0)) self.importBibleImage.setMaximumSize(QtCore.QSize(163, 16777215)) self.importBibleImage.setLineWidth(0) - self.importBibleImage.setText("") - self.importBibleImage.setPixmap(QtGui.QPixmap(":/wizards/wizard_importbible.bmp")) + self.importBibleImage.setText(u'') + self.importBibleImage.setPixmap(QtGui.QPixmap(u':/wizards/wizard_importbible.bmp')) self.importBibleImage.setIndent(0) - self.importBibleImage.setObjectName("importBibleImage") + self.importBibleImage.setObjectName(u'importBibleImage') self.welcomeLayout.addWidget(self.importBibleImage) self.welcomePageLayout = QtGui.QVBoxLayout() self.welcomePageLayout.setSpacing(8) - self.welcomePageLayout.setObjectName("welcomePageLayout") + self.welcomePageLayout.setObjectName(u'welcomePageLayout') self.titleLabel = QtGui.QLabel(self.welcomePage) - self.titleLabel.setObjectName("titleLabel") + self.titleLabel.setObjectName(u'titleLabel') self.welcomePageLayout.addWidget(self.titleLabel) spacerItem = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Fixed) self.welcomePageLayout.addItem(spacerItem) self.informationLabel = QtGui.QLabel(self.welcomePage) self.informationLabel.setWordWrap(True) self.informationLabel.setMargin(10) - self.informationLabel.setObjectName("informationLabel") + self.informationLabel.setObjectName(u'informationLabel') self.welcomePageLayout.addWidget(self.informationLabel) spacerItem1 = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) self.welcomePageLayout.addItem(spacerItem1) self.welcomeLayout.addLayout(self.welcomePageLayout) - ThemeDialog.addPage(self.welcomePage) + ThemeWizard.addPage(self.welcomePage) self.backgroundPage = QtGui.QWizardPage() - self.backgroundPage.setObjectName("backgroundPage") + self.backgroundPage.setObjectName(u'backgroundPage') self.backgroundLayout = QtGui.QFormLayout(self.backgroundPage) self.backgroundLayout.setFieldGrowthPolicy(QtGui.QFormLayout.ExpandingFieldsGrow) self.backgroundLayout.setLabelAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter) self.backgroundLayout.setMargin(20) self.backgroundLayout.setSpacing(8) - self.backgroundLayout.setObjectName("backgroundLayout") + self.backgroundLayout.setObjectName(u'backgroundLayout') self.backgroundTypeLabel = QtGui.QLabel(self.backgroundPage) - self.backgroundTypeLabel.setObjectName("backgroundTypeLabel") + self.backgroundTypeLabel.setObjectName(u'backgroundTypeLabel') self.backgroundLayout.setWidget(0, QtGui.QFormLayout.LabelRole, self.backgroundTypeLabel) self.backgroundTypeComboBox = QtGui.QComboBox(self.backgroundPage) - self.backgroundTypeComboBox.setObjectName("backgroundTypeComboBox") - self.backgroundTypeComboBox.addItem("") - self.backgroundTypeComboBox.addItem("") - self.backgroundTypeComboBox.addItem("") + self.backgroundTypeComboBox.setObjectName(u'backgroundTypeComboBox') + self.backgroundTypeComboBox.addItem(u'') + self.backgroundTypeComboBox.addItem(u'') + self.backgroundTypeComboBox.addItem(u'') self.backgroundLayout.setWidget(0, QtGui.QFormLayout.FieldRole, self.backgroundTypeComboBox) self.color1Label = QtGui.QLabel(self.backgroundPage) - self.color1Label.setObjectName("color1Label") + self.color1Label.setObjectName(u'color1Label') self.backgroundLayout.setWidget(1, QtGui.QFormLayout.LabelRole, self.color1Label) self.color1PushButton = QtGui.QPushButton(self.backgroundPage) - self.color1PushButton.setText("") - self.color1PushButton.setObjectName("color1PushButton") + self.color1PushButton.setText(u'') + self.color1PushButton.setObjectName(u'color1PushButton') self.backgroundLayout.setWidget(1, QtGui.QFormLayout.FieldRole, self.color1PushButton) self.color2Label = QtGui.QLabel(self.backgroundPage) - self.color2Label.setObjectName("color2Label") + self.color2Label.setObjectName(u'color2Label') self.backgroundLayout.setWidget(2, QtGui.QFormLayout.LabelRole, self.color2Label) self.color2PushButton = QtGui.QPushButton(self.backgroundPage) - self.color2PushButton.setText("") - self.color2PushButton.setObjectName("color2PushButton") + self.color2PushButton.setText(u'') + self.color2PushButton.setObjectName(u'color2PushButton') self.backgroundLayout.setWidget(2, QtGui.QFormLayout.FieldRole, self.color2PushButton) self.imageLabel = QtGui.QLabel(self.backgroundPage) - self.imageLabel.setObjectName("imageLabel") + self.imageLabel.setObjectName(u'imageLabel') self.backgroundLayout.setWidget(3, QtGui.QFormLayout.LabelRole, self.imageLabel) self.imageLayout = QtGui.QHBoxLayout() self.imageLayout.setSpacing(8) - self.imageLayout.setObjectName("imageLayout") + self.imageLayout.setObjectName(u'imageLayout') self.imageLineEdit = QtGui.QLineEdit(self.backgroundPage) - self.imageLineEdit.setObjectName("imageLineEdit") + self.imageLineEdit.setObjectName(u'imageLineEdit') self.imageLayout.addWidget(self.imageLineEdit) self.imageBrowseButton = QtGui.QToolButton(self.backgroundPage) - self.imageBrowseButton.setText("") - icon = QtGui.QIcon() - icon.addPixmap(QtGui.QPixmap(":/general/general_open.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.imageBrowseButton.setIcon(icon) - self.imageBrowseButton.setObjectName("imageBrowseButton") + self.imageBrowseButton.setText(u'') + self.imageBrowseButton.setIcon(build_icon(u':/general/general_open.png')) + self.imageBrowseButton.setObjectName(u'imageBrowseButton') self.imageLayout.addWidget(self.imageBrowseButton) self.backgroundLayout.setLayout(3, QtGui.QFormLayout.FieldRole, self.imageLayout) self.gradientLabel = QtGui.QLabel(self.backgroundPage) - self.gradientLabel.setObjectName("gradientLabel") + self.gradientLabel.setObjectName(u'gradientLabel') self.backgroundLayout.setWidget(4, QtGui.QFormLayout.LabelRole, self.gradientLabel) self.gradientComboBox = QtGui.QComboBox(self.backgroundPage) - self.gradientComboBox.setObjectName("gradientComboBox") - self.gradientComboBox.addItem("") - self.gradientComboBox.addItem("") - self.gradientComboBox.addItem("") - self.gradientComboBox.addItem("") - self.gradientComboBox.addItem("") + self.gradientComboBox.setObjectName(u'gradientComboBox') + self.gradientComboBox.addItem(u'') + self.gradientComboBox.addItem(u'') + self.gradientComboBox.addItem(u'') + self.gradientComboBox.addItem(u'') + self.gradientComboBox.addItem(u'') self.backgroundLayout.setWidget(4, QtGui.QFormLayout.FieldRole, self.gradientComboBox) - ThemeDialog.addPage(self.backgroundPage) + ThemeWizard.addPage(self.backgroundPage) self.mainAreaPage = QtGui.QWizardPage() - self.mainAreaPage.setObjectName("mainAreaPage") + self.mainAreaPage.setObjectName(u'mainAreaPage') self.formLayout = QtGui.QFormLayout(self.mainAreaPage) self.formLayout.setFormAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignTop) self.formLayout.setContentsMargins(-1, 20, 20, 20) self.formLayout.setSpacing(8) - self.formLayout.setObjectName("formLayout") + self.formLayout.setObjectName(u'formLayout') self.mainFontLabel = QtGui.QLabel(self.mainAreaPage) - self.mainFontLabel.setObjectName("mainFontLabel") + self.mainFontLabel.setObjectName(u'mainFontLabel') self.formLayout.setWidget(0, QtGui.QFormLayout.LabelRole, self.mainFontLabel) self.mainFontComboBox = QtGui.QFontComboBox(self.mainAreaPage) - self.mainFontComboBox.setObjectName("mainFontComboBox") + self.mainFontComboBox.setObjectName(u'mainFontComboBox') self.formLayout.setWidget(0, QtGui.QFormLayout.FieldRole, self.mainFontComboBox) self.mainColorLabel = QtGui.QLabel(self.mainAreaPage) - self.mainColorLabel.setObjectName("mainColorLabel") + self.mainColorLabel.setObjectName(u'mainColorLabel') self.formLayout.setWidget(1, QtGui.QFormLayout.LabelRole, self.mainColorLabel) self.mainColorPushButton = QtGui.QPushButton(self.mainAreaPage) - self.mainColorPushButton.setText("") - self.mainColorPushButton.setObjectName("mainColorPushButton") + self.mainColorPushButton.setText(u'') + self.mainColorPushButton.setObjectName(u'mainColorPushButton') self.formLayout.setWidget(1, QtGui.QFormLayout.FieldRole, self.mainColorPushButton) self.mainSizeLabel = QtGui.QLabel(self.mainAreaPage) - self.mainSizeLabel.setObjectName("mainSizeLabel") + self.mainSizeLabel.setObjectName(u'mainSizeLabel') self.formLayout.setWidget(2, QtGui.QFormLayout.LabelRole, self.mainSizeLabel) self.mainSizeLayout = QtGui.QHBoxLayout() self.mainSizeLayout.setSpacing(8) self.mainSizeLayout.setMargin(0) - self.mainSizeLayout.setObjectName("mainSizeLayout") + self.mainSizeLayout.setObjectName(u'mainSizeLayout') self.mainSizeSpinBox = QtGui.QSpinBox(self.mainAreaPage) sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Fixed) sizePolicy.setHorizontalStretch(0) @@ -145,84 +162,84 @@ class Ui_ThemeDialog(object): self.mainSizeSpinBox.setSizePolicy(sizePolicy) self.mainSizeSpinBox.setMinimumSize(QtCore.QSize(70, 0)) self.mainSizeSpinBox.setMaximum(999) - self.mainSizeSpinBox.setProperty("value", 16) - self.mainSizeSpinBox.setObjectName("mainSizeSpinBox") + self.mainSizeSpinBox.setProperty(u'value', 16) + self.mainSizeSpinBox.setObjectName(u'mainSizeSpinBox') self.mainSizeLayout.addWidget(self.mainSizeSpinBox) self.mainLineCountLabel = QtGui.QLabel(self.mainAreaPage) - self.mainLineCountLabel.setObjectName("mainLineCountLabel") + self.mainLineCountLabel.setObjectName(u'mainLineCountLabel') self.mainSizeLayout.addWidget(self.mainLineCountLabel) self.formLayout.setLayout(2, QtGui.QFormLayout.FieldRole, self.mainSizeLayout) self.lineSpacingLabel = QtGui.QLabel(self.mainAreaPage) - self.lineSpacingLabel.setObjectName("lineSpacingLabel") + self.lineSpacingLabel.setObjectName(u'lineSpacingLabel') self.formLayout.setWidget(3, QtGui.QFormLayout.LabelRole, self.lineSpacingLabel) self.lineSpacingSpinBox = QtGui.QSpinBox(self.mainAreaPage) self.lineSpacingSpinBox.setMinimum(-50) self.lineSpacingSpinBox.setMaximum(50) - self.lineSpacingSpinBox.setObjectName("lineSpacingSpinBox") + self.lineSpacingSpinBox.setObjectName(u'lineSpacingSpinBox') self.formLayout.setWidget(3, QtGui.QFormLayout.FieldRole, self.lineSpacingSpinBox) self.outlineCheckBox = QtGui.QCheckBox(self.mainAreaPage) - self.outlineCheckBox.setObjectName("outlineCheckBox") + self.outlineCheckBox.setObjectName(u'outlineCheckBox') self.formLayout.setWidget(4, QtGui.QFormLayout.LabelRole, self.outlineCheckBox) self.outlineLayout = QtGui.QHBoxLayout() - self.outlineLayout.setObjectName("outlineLayout") + self.outlineLayout.setObjectName(u'outlineLayout') self.outlineColorPushButton = QtGui.QPushButton(self.mainAreaPage) self.outlineColorPushButton.setEnabled(True) - self.outlineColorPushButton.setText("") - self.outlineColorPushButton.setObjectName("outlineColorPushButton") + self.outlineColorPushButton.setText(u'') + self.outlineColorPushButton.setObjectName(u'outlineColorPushButton') self.outlineLayout.addWidget(self.outlineColorPushButton) self.outlineSizeLabel = QtGui.QLabel(self.mainAreaPage) - self.outlineSizeLabel.setObjectName("outlineSizeLabel") + self.outlineSizeLabel.setObjectName(u'outlineSizeLabel') self.outlineLayout.addWidget(self.outlineSizeLabel) self.outlineSizeSpinBox = QtGui.QSpinBox(self.mainAreaPage) - self.outlineSizeSpinBox.setObjectName("outlineSizeSpinBox") + self.outlineSizeSpinBox.setObjectName(u'outlineSizeSpinBox') self.outlineLayout.addWidget(self.outlineSizeSpinBox) self.formLayout.setLayout(4, QtGui.QFormLayout.FieldRole, self.outlineLayout) self.shadowCheckBox = QtGui.QCheckBox(self.mainAreaPage) - self.shadowCheckBox.setObjectName("shadowCheckBox") + self.shadowCheckBox.setObjectName(u'shadowCheckBox') self.formLayout.setWidget(5, QtGui.QFormLayout.LabelRole, self.shadowCheckBox) self.shadowLayout = QtGui.QHBoxLayout() - self.shadowLayout.setObjectName("shadowLayout") + self.shadowLayout.setObjectName(u'shadowLayout') self.shadowColorPushButton = QtGui.QPushButton(self.mainAreaPage) self.shadowColorPushButton.setEnabled(True) - self.shadowColorPushButton.setText("") - self.shadowColorPushButton.setObjectName("shadowColorPushButton") + self.shadowColorPushButton.setText(u'') + self.shadowColorPushButton.setObjectName(u'shadowColorPushButton') self.shadowLayout.addWidget(self.shadowColorPushButton) self.shadowSizeLabel = QtGui.QLabel(self.mainAreaPage) - self.shadowSizeLabel.setObjectName("shadowSizeLabel") + self.shadowSizeLabel.setObjectName(u'shadowSizeLabel') self.shadowLayout.addWidget(self.shadowSizeLabel) self.shadowSizeSpinBox = QtGui.QSpinBox(self.mainAreaPage) - self.shadowSizeSpinBox.setObjectName("shadowSizeSpinBox") + self.shadowSizeSpinBox.setObjectName(u'shadowSizeSpinBox') self.shadowLayout.addWidget(self.shadowSizeSpinBox) self.formLayout.setLayout(5, QtGui.QFormLayout.FieldRole, self.shadowLayout) self.boldCheckBox = QtGui.QCheckBox(self.mainAreaPage) - self.boldCheckBox.setObjectName("boldCheckBox") + self.boldCheckBox.setObjectName(u'boldCheckBox') self.formLayout.setWidget(6, QtGui.QFormLayout.FieldRole, self.boldCheckBox) self.italicsCheckBox = QtGui.QCheckBox(self.mainAreaPage) - self.italicsCheckBox.setObjectName("italicsCheckBox") + self.italicsCheckBox.setObjectName(u'italicsCheckBox') self.formLayout.setWidget(7, QtGui.QFormLayout.FieldRole, self.italicsCheckBox) - ThemeDialog.addPage(self.mainAreaPage) + ThemeWizard.addPage(self.mainAreaPage) self.footerAreaPage = QtGui.QWizardPage() - self.footerAreaPage.setObjectName("footerAreaPage") + self.footerAreaPage.setObjectName(u'footerAreaPage') self.footerLayout = QtGui.QFormLayout(self.footerAreaPage) self.footerLayout.setFieldGrowthPolicy(QtGui.QFormLayout.ExpandingFieldsGrow) self.footerLayout.setContentsMargins(50, 20, 20, 20) self.footerLayout.setSpacing(8) - self.footerLayout.setObjectName("footerLayout") + self.footerLayout.setObjectName(u'footerLayout') self.footerFontLabel = QtGui.QLabel(self.footerAreaPage) - self.footerFontLabel.setObjectName("footerFontLabel") + self.footerFontLabel.setObjectName(u'footerFontLabel') self.footerLayout.setWidget(0, QtGui.QFormLayout.LabelRole, self.footerFontLabel) self.footerFontComboBox = QtGui.QFontComboBox(self.footerAreaPage) - self.footerFontComboBox.setObjectName("footerFontComboBox") + self.footerFontComboBox.setObjectName(u'footerFontComboBox') self.footerLayout.setWidget(0, QtGui.QFormLayout.FieldRole, self.footerFontComboBox) self.footerColorLabel = QtGui.QLabel(self.footerAreaPage) - self.footerColorLabel.setObjectName("footerColorLabel") + self.footerColorLabel.setObjectName(u'footerColorLabel') self.footerLayout.setWidget(1, QtGui.QFormLayout.LabelRole, self.footerColorLabel) self.footerColorPushButton = QtGui.QPushButton(self.footerAreaPage) - self.footerColorPushButton.setText("") - self.footerColorPushButton.setObjectName("footerColorPushButton") + self.footerColorPushButton.setText(u'') + self.footerColorPushButton.setObjectName(u'footerColorPushButton') self.footerLayout.setWidget(1, QtGui.QFormLayout.FieldRole, self.footerColorPushButton) self.footerSizeLabel = QtGui.QLabel(self.footerAreaPage) - self.footerSizeLabel.setObjectName("footerSizeLabel") + self.footerSizeLabel.setObjectName(u'footerSizeLabel') self.footerLayout.setWidget(2, QtGui.QFormLayout.LabelRole, self.footerSizeLabel) self.footerSizeSpinBox = QtGui.QSpinBox(self.footerAreaPage) sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Fixed) @@ -232,58 +249,58 @@ class Ui_ThemeDialog(object): self.footerSizeSpinBox.setSizePolicy(sizePolicy) self.footerSizeSpinBox.setMinimumSize(QtCore.QSize(70, 0)) self.footerSizeSpinBox.setMaximum(999) - self.footerSizeSpinBox.setProperty("value", 10) - self.footerSizeSpinBox.setObjectName("footerSizeSpinBox") + self.footerSizeSpinBox.setProperty(u'value', 10) + self.footerSizeSpinBox.setObjectName(u'footerSizeSpinBox') self.footerLayout.setWidget(2, QtGui.QFormLayout.FieldRole, self.footerSizeSpinBox) - ThemeDialog.addPage(self.footerAreaPage) + ThemeWizard.addPage(self.footerAreaPage) self.alignmentPage = QtGui.QWizardPage() - self.alignmentPage.setObjectName("alignmentPage") + self.alignmentPage.setObjectName(u'alignmentPage') self.formLayout_2 = QtGui.QFormLayout(self.alignmentPage) self.formLayout_2.setMargin(20) - self.formLayout_2.setObjectName("formLayout_2") + self.formLayout_2.setObjectName(u'formLayout_2') self.horizontalLabel = QtGui.QLabel(self.alignmentPage) - self.horizontalLabel.setObjectName("horizontalLabel") + self.horizontalLabel.setObjectName(u'horizontalLabel') self.formLayout_2.setWidget(0, QtGui.QFormLayout.LabelRole, self.horizontalLabel) self.horizontalComboBox = QtGui.QComboBox(self.alignmentPage) self.horizontalComboBox.setEditable(False) - self.horizontalComboBox.setObjectName("horizontalComboBox") - self.horizontalComboBox.addItem("") - self.horizontalComboBox.addItem("") - self.horizontalComboBox.addItem("") + self.horizontalComboBox.setObjectName(u'horizontalComboBox') + self.horizontalComboBox.addItem(u'') + self.horizontalComboBox.addItem(u'') + self.horizontalComboBox.addItem(u'') self.formLayout_2.setWidget(0, QtGui.QFormLayout.FieldRole, self.horizontalComboBox) self.verticalLabel = QtGui.QLabel(self.alignmentPage) - self.verticalLabel.setObjectName("verticalLabel") + self.verticalLabel.setObjectName(u'verticalLabel') self.formLayout_2.setWidget(1, QtGui.QFormLayout.LabelRole, self.verticalLabel) self.verticalComboBox = QtGui.QComboBox(self.alignmentPage) - self.verticalComboBox.setObjectName("verticalComboBox") - self.verticalComboBox.addItem("") - self.verticalComboBox.addItem("") - self.verticalComboBox.addItem("") + self.verticalComboBox.setObjectName(u'verticalComboBox') + self.verticalComboBox.addItem(u'') + self.verticalComboBox.addItem(u'') + self.verticalComboBox.addItem(u'') self.formLayout_2.setWidget(1, QtGui.QFormLayout.FieldRole, self.verticalComboBox) self.transitionsCheckBox = QtGui.QCheckBox(self.alignmentPage) - self.transitionsCheckBox.setObjectName("transitionsCheckBox") + self.transitionsCheckBox.setObjectName(u'transitionsCheckBox') self.formLayout_2.setWidget(2, QtGui.QFormLayout.FieldRole, self.transitionsCheckBox) - ThemeDialog.addPage(self.alignmentPage) + ThemeWizard.addPage(self.alignmentPage) self.areaPositionPage = QtGui.QWizardPage() - self.areaPositionPage.setObjectName("areaPositionPage") + self.areaPositionPage.setObjectName(u'areaPositionPage') self.gridLayout_2 = QtGui.QGridLayout(self.areaPositionPage) self.gridLayout_2.setMargin(20) self.gridLayout_2.setSpacing(8) - self.gridLayout_2.setObjectName("gridLayout_2") + self.gridLayout_2.setObjectName(u'gridLayout_2') self.mainPositionGroupBox = QtGui.QGroupBox(self.areaPositionPage) self.mainPositionGroupBox.setMinimumSize(QtCore.QSize(248, 0)) - self.mainPositionGroupBox.setObjectName("mainPositionGroupBox") + self.mainPositionGroupBox.setObjectName(u'mainPositionGroupBox') self.mainPositionLayout = QtGui.QFormLayout(self.mainPositionGroupBox) self.mainPositionLayout.setMargin(8) self.mainPositionLayout.setSpacing(8) - self.mainPositionLayout.setObjectName("mainPositionLayout") + self.mainPositionLayout.setObjectName(u'mainPositionLayout') self.mainDefaultPositionCheckBox = QtGui.QCheckBox(self.mainPositionGroupBox) self.mainDefaultPositionCheckBox.setChecked(True) self.mainDefaultPositionCheckBox.setTristate(False) - self.mainDefaultPositionCheckBox.setObjectName("mainDefaultPositionCheckBox") + self.mainDefaultPositionCheckBox.setObjectName(u'mainDefaultPositionCheckBox') self.mainPositionLayout.setWidget(0, QtGui.QFormLayout.FieldRole, self.mainDefaultPositionCheckBox) self.nainXLabel = QtGui.QLabel(self.mainPositionGroupBox) - self.nainXLabel.setObjectName("nainXLabel") + self.nainXLabel.setObjectName(u'nainXLabel') self.mainPositionLayout.setWidget(1, QtGui.QFormLayout.LabelRole, self.nainXLabel) self.mainXSpinBox = QtGui.QSpinBox(self.mainPositionGroupBox) self.mainXSpinBox.setEnabled(False) @@ -294,8 +311,8 @@ class Ui_ThemeDialog(object): self.mainXSpinBox.setSizePolicy(sizePolicy) self.mainXSpinBox.setMinimumSize(QtCore.QSize(78, 0)) self.mainXSpinBox.setMaximum(9999) - self.mainXSpinBox.setProperty("value", 0) - self.mainXSpinBox.setObjectName("mainXSpinBox") + self.mainXSpinBox.setProperty(u'value', 0) + self.mainXSpinBox.setObjectName(u'mainXSpinBox') self.mainPositionLayout.setWidget(1, QtGui.QFormLayout.FieldRole, self.mainXSpinBox) self.mainYSpinBox = QtGui.QSpinBox(self.mainPositionGroupBox) self.mainYSpinBox.setEnabled(False) @@ -306,10 +323,10 @@ class Ui_ThemeDialog(object): self.mainYSpinBox.setSizePolicy(sizePolicy) self.mainYSpinBox.setMinimumSize(QtCore.QSize(78, 0)) self.mainYSpinBox.setMaximum(9999) - self.mainYSpinBox.setObjectName("mainYSpinBox") + self.mainYSpinBox.setObjectName(u'mainYSpinBox') self.mainPositionLayout.setWidget(2, QtGui.QFormLayout.FieldRole, self.mainYSpinBox) self.mainYLabel = QtGui.QLabel(self.mainPositionGroupBox) - self.mainYLabel.setObjectName("mainYLabel") + self.mainYLabel.setObjectName(u'mainYLabel') self.mainPositionLayout.setWidget(2, QtGui.QFormLayout.LabelRole, self.mainYLabel) self.mainWidthSpinBox = QtGui.QSpinBox(self.mainPositionGroupBox) self.mainWidthSpinBox.setEnabled(False) @@ -320,10 +337,10 @@ class Ui_ThemeDialog(object): self.mainWidthSpinBox.setSizePolicy(sizePolicy) self.mainWidthSpinBox.setMinimumSize(QtCore.QSize(78, 0)) self.mainWidthSpinBox.setMaximum(9999) - self.mainWidthSpinBox.setObjectName("mainWidthSpinBox") + self.mainWidthSpinBox.setObjectName(u'mainWidthSpinBox') self.mainPositionLayout.setWidget(3, QtGui.QFormLayout.FieldRole, self.mainWidthSpinBox) self.mainWidthLabel = QtGui.QLabel(self.mainPositionGroupBox) - self.mainWidthLabel.setObjectName("mainWidthLabel") + self.mainWidthLabel.setObjectName(u'mainWidthLabel') self.mainPositionLayout.setWidget(3, QtGui.QFormLayout.LabelRole, self.mainWidthLabel) self.mainHeightSpinBox = QtGui.QSpinBox(self.mainPositionGroupBox) self.mainHeightSpinBox.setEnabled(False) @@ -334,21 +351,21 @@ class Ui_ThemeDialog(object): self.mainHeightSpinBox.setSizePolicy(sizePolicy) self.mainHeightSpinBox.setMinimumSize(QtCore.QSize(78, 0)) self.mainHeightSpinBox.setMaximum(9999) - self.mainHeightSpinBox.setObjectName("mainHeightSpinBox") + self.mainHeightSpinBox.setObjectName(u'mainHeightSpinBox') self.mainPositionLayout.setWidget(4, QtGui.QFormLayout.FieldRole, self.mainHeightSpinBox) self.mainHeightLabel = QtGui.QLabel(self.mainPositionGroupBox) - self.mainHeightLabel.setObjectName("mainHeightLabel") + self.mainHeightLabel.setObjectName(u'mainHeightLabel') self.mainPositionLayout.setWidget(4, QtGui.QFormLayout.LabelRole, self.mainHeightLabel) self.gridLayout_2.addWidget(self.mainPositionGroupBox, 1, 0, 1, 1) self.footerPositionGroupBox = QtGui.QGroupBox(self.areaPositionPage) self.footerPositionGroupBox.setMinimumSize(QtCore.QSize(248, 0)) - self.footerPositionGroupBox.setObjectName("footerPositionGroupBox") + self.footerPositionGroupBox.setObjectName(u'footerPositionGroupBox') self.footerPositionLayout = QtGui.QFormLayout(self.footerPositionGroupBox) self.footerPositionLayout.setMargin(8) self.footerPositionLayout.setSpacing(8) - self.footerPositionLayout.setObjectName("footerPositionLayout") + self.footerPositionLayout.setObjectName(u'footerPositionLayout') self.footerXLabel = QtGui.QLabel(self.footerPositionGroupBox) - self.footerXLabel.setObjectName("footerXLabel") + self.footerXLabel.setObjectName(u'footerXLabel') self.footerPositionLayout.setWidget(1, QtGui.QFormLayout.LabelRole, self.footerXLabel) self.footerXSpinBox = QtGui.QSpinBox(self.footerPositionGroupBox) self.footerXSpinBox.setEnabled(False) @@ -359,11 +376,11 @@ class Ui_ThemeDialog(object): self.footerXSpinBox.setSizePolicy(sizePolicy) self.footerXSpinBox.setMinimumSize(QtCore.QSize(78, 0)) self.footerXSpinBox.setMaximum(9999) - self.footerXSpinBox.setProperty("value", 0) - self.footerXSpinBox.setObjectName("footerXSpinBox") + self.footerXSpinBox.setProperty(u'value', 0) + self.footerXSpinBox.setObjectName(u'footerXSpinBox') self.footerPositionLayout.setWidget(1, QtGui.QFormLayout.FieldRole, self.footerXSpinBox) self.footerYLabel = QtGui.QLabel(self.footerPositionGroupBox) - self.footerYLabel.setObjectName("footerYLabel") + self.footerYLabel.setObjectName(u'footerYLabel') self.footerPositionLayout.setWidget(2, QtGui.QFormLayout.LabelRole, self.footerYLabel) self.footerYSpinBox = QtGui.QSpinBox(self.footerPositionGroupBox) self.footerYSpinBox.setEnabled(False) @@ -374,52 +391,52 @@ class Ui_ThemeDialog(object): self.footerYSpinBox.setSizePolicy(sizePolicy) self.footerYSpinBox.setMinimumSize(QtCore.QSize(78, 0)) self.footerYSpinBox.setMaximum(9999) - self.footerYSpinBox.setProperty("value", 0) - self.footerYSpinBox.setObjectName("footerYSpinBox") + self.footerYSpinBox.setProperty(u'value', 0) + self.footerYSpinBox.setObjectName(u'footerYSpinBox') self.footerPositionLayout.setWidget(2, QtGui.QFormLayout.FieldRole, self.footerYSpinBox) self.footerWidthLabel = QtGui.QLabel(self.footerPositionGroupBox) - self.footerWidthLabel.setObjectName("footerWidthLabel") + self.footerWidthLabel.setObjectName(u'footerWidthLabel') self.footerPositionLayout.setWidget(3, QtGui.QFormLayout.LabelRole, self.footerWidthLabel) self.footerWidthSpinBox = QtGui.QSpinBox(self.footerPositionGroupBox) self.footerWidthSpinBox.setEnabled(False) self.footerWidthSpinBox.setMinimumSize(QtCore.QSize(78, 0)) self.footerWidthSpinBox.setMaximum(9999) - self.footerWidthSpinBox.setObjectName("footerWidthSpinBox") + self.footerWidthSpinBox.setObjectName(u'footerWidthSpinBox') self.footerPositionLayout.setWidget(3, QtGui.QFormLayout.FieldRole, self.footerWidthSpinBox) self.footerHeightLabel = QtGui.QLabel(self.footerPositionGroupBox) - self.footerHeightLabel.setObjectName("footerHeightLabel") + self.footerHeightLabel.setObjectName(u'footerHeightLabel') self.footerPositionLayout.setWidget(4, QtGui.QFormLayout.LabelRole, self.footerHeightLabel) self.footerHeightSpinBox = QtGui.QSpinBox(self.footerPositionGroupBox) self.footerHeightSpinBox.setEnabled(False) self.footerHeightSpinBox.setMinimumSize(QtCore.QSize(78, 0)) self.footerHeightSpinBox.setMaximum(9999) - self.footerHeightSpinBox.setObjectName("footerHeightSpinBox") + self.footerHeightSpinBox.setObjectName(u'footerHeightSpinBox') self.footerPositionLayout.setWidget(4, QtGui.QFormLayout.FieldRole, self.footerHeightSpinBox) self.footerDefaultPositionCheckBox = QtGui.QCheckBox(self.footerPositionGroupBox) self.footerDefaultPositionCheckBox.setChecked(True) - self.footerDefaultPositionCheckBox.setObjectName("footerDefaultPositionCheckBox") + self.footerDefaultPositionCheckBox.setObjectName(u'footerDefaultPositionCheckBox') self.footerPositionLayout.setWidget(0, QtGui.QFormLayout.FieldRole, self.footerDefaultPositionCheckBox) self.gridLayout_2.addWidget(self.footerPositionGroupBox, 1, 1, 1, 1) - ThemeDialog.addPage(self.areaPositionPage) + ThemeWizard.addPage(self.areaPositionPage) self.previewPage = QtGui.QWizardPage() - self.previewPage.setObjectName("previewPage") + self.previewPage.setObjectName(u'previewPage') self.themeNameLabel = QtGui.QLabel(self.previewPage) self.themeNameLabel.setGeometry(QtCore.QRect(20, 10, 82, 16)) self.themeNameLabel.setTextFormat(QtCore.Qt.PlainText) - self.themeNameLabel.setObjectName("themeNameLabel") + self.themeNameLabel.setObjectName(u'themeNameLabel') self.previewLabel = QtGui.QLabel(self.previewPage) self.previewLabel.setGeometry(QtCore.QRect(250, 60, 48, 16)) self.previewLabel.setAlignment(QtCore.Qt.AlignCenter) - self.previewLabel.setObjectName("previewLabel") + self.previewLabel.setObjectName(u'previewLabel') self.themeNameEdit = QtGui.QLineEdit(self.previewPage) self.themeNameEdit.setGeometry(QtCore.QRect(117, 4, 351, 23)) - self.themeNameEdit.setObjectName("themeNameEdit") + self.themeNameEdit.setObjectName(u'themeNameEdit') self.groupBox = QtGui.QGroupBox(self.previewPage) self.groupBox.setGeometry(QtCore.QRect(40, 80, 464, 214)) - self.groupBox.setTitle("") - self.groupBox.setObjectName("groupBox") + self.groupBox.setTitle(u'') + self.groupBox.setObjectName(u'groupBox') self.horizontalLayout = QtGui.QHBoxLayout(self.groupBox) - self.horizontalLayout.setObjectName("horizontalLayout") + self.horizontalLayout.setObjectName(u'horizontalLayout') spacerItem2 = QtGui.QSpacerItem(58, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem2) self.previewBoxLabel = QtGui.QLabel(self.groupBox) @@ -432,99 +449,99 @@ class Ui_ThemeDialog(object): self.previewBoxLabel.setFrameShape(QtGui.QFrame.WinPanel) self.previewBoxLabel.setFrameShadow(QtGui.QFrame.Sunken) self.previewBoxLabel.setLineWidth(1) - self.previewBoxLabel.setText("") + self.previewBoxLabel.setText(u'') self.previewBoxLabel.setScaledContents(True) - self.previewBoxLabel.setObjectName("previewBoxLabel") + self.previewBoxLabel.setObjectName(u'previewBoxLabel') self.horizontalLayout.addWidget(self.previewBoxLabel) spacerItem3 = QtGui.QSpacerItem(78, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem3) - ThemeDialog.addPage(self.previewPage) + ThemeWizard.addPage(self.previewPage) self.themeNameLabel.setBuddy(self.themeNameEdit) - self.retranslateUi(ThemeDialog) - QtCore.QObject.connect(ThemeDialog, QtCore.SIGNAL("accepted()"), ThemeDialog.accept) - QtCore.QMetaObject.connectSlotsByName(ThemeDialog) + self.retranslateUi(ThemeWizard) + QtCore.QObject.connect(ThemeWizard, QtCore.SIGNAL(u'accepted()'), ThemeWizard.accept) + QtCore.QMetaObject.connectSlotsByName(ThemeWizard) - def retranslateUi(self, ThemeDialog): - ThemeDialog.setWindowTitle(QtGui.QApplication.translate("ThemeDialog", "Theme Wizard", None, QtGui.QApplication.UnicodeUTF8)) - self.titleLabel.setText(QtGui.QApplication.translate("ThemeDialog", "\n" -"\n" -"

Welcome to the Theme Wizard

", None, QtGui.QApplication.UnicodeUTF8)) - self.informationLabel.setText(QtGui.QApplication.translate("ThemeDialog", "This wizard will help you to maintain Themes . Click the next button below to start the process by setting up your background.", None, QtGui.QApplication.UnicodeUTF8)) - self.backgroundPage.setTitle(QtGui.QApplication.translate("ThemeDialog", "Set Up Background", None, QtGui.QApplication.UnicodeUTF8)) - self.backgroundPage.setSubTitle(QtGui.QApplication.translate("ThemeDialog", "Set up your theme\'s background according to the parameters below.", None, QtGui.QApplication.UnicodeUTF8)) - self.backgroundTypeLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Background type:", None, QtGui.QApplication.UnicodeUTF8)) - self.backgroundTypeComboBox.setItemText(0, QtGui.QApplication.translate("ThemeDialog", "Solid Color", None, QtGui.QApplication.UnicodeUTF8)) - self.backgroundTypeComboBox.setItemText(1, QtGui.QApplication.translate("ThemeDialog", "Gradient", None, QtGui.QApplication.UnicodeUTF8)) - self.backgroundTypeComboBox.setItemText(2, QtGui.QApplication.translate("ThemeDialog", "Image", None, QtGui.QApplication.UnicodeUTF8)) - self.color1Label.setText(QtGui.QApplication.translate("ThemeDialog", "", None, QtGui.QApplication.UnicodeUTF8)) - self.color2Label.setText(QtGui.QApplication.translate("ThemeDialog", "", None, QtGui.QApplication.UnicodeUTF8)) - self.imageLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Image:", None, QtGui.QApplication.UnicodeUTF8)) - self.gradientLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Gradient:", None, QtGui.QApplication.UnicodeUTF8)) - self.gradientComboBox.setItemText(0, QtGui.QApplication.translate("ThemeDialog", "Horizontal", None, QtGui.QApplication.UnicodeUTF8)) - self.gradientComboBox.setItemText(1, QtGui.QApplication.translate("ThemeDialog", "Vertical", None, QtGui.QApplication.UnicodeUTF8)) - self.gradientComboBox.setItemText(2, QtGui.QApplication.translate("ThemeDialog", "Circular", None, QtGui.QApplication.UnicodeUTF8)) - self.gradientComboBox.setItemText(3, QtGui.QApplication.translate("ThemeDialog", "Top Left - Bottom Right", None, QtGui.QApplication.UnicodeUTF8)) - self.gradientComboBox.setItemText(4, QtGui.QApplication.translate("ThemeDialog", "Bottom Left - Top Right", None, QtGui.QApplication.UnicodeUTF8)) - self.mainAreaPage.setTitle(QtGui.QApplication.translate("ThemeDialog", "Main Area Font Details", None, QtGui.QApplication.UnicodeUTF8)) - self.mainAreaPage.setSubTitle(QtGui.QApplication.translate("ThemeDialog", "Define the font and display characteristics for the Display text", None, QtGui.QApplication.UnicodeUTF8)) - self.mainFontLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Font:", None, QtGui.QApplication.UnicodeUTF8)) - self.mainColorLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Color:", None, QtGui.QApplication.UnicodeUTF8)) - self.mainSizeLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Size:", None, QtGui.QApplication.UnicodeUTF8)) - self.mainSizeSpinBox.setSuffix(QtGui.QApplication.translate("ThemeDialog", "pt", None, QtGui.QApplication.UnicodeUTF8)) - self.mainLineCountLabel.setText(QtGui.QApplication.translate("ThemeDialog", "(%d lines per slide)", None, QtGui.QApplication.UnicodeUTF8)) - self.lineSpacingLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Line Spacing:", None, QtGui.QApplication.UnicodeUTF8)) - self.lineSpacingSpinBox.setSuffix(QtGui.QApplication.translate("ThemeDialog", "pt", None, QtGui.QApplication.UnicodeUTF8)) - self.outlineCheckBox.setText(QtGui.QApplication.translate("ThemeDialog", "&Outline:", None, QtGui.QApplication.UnicodeUTF8)) - self.outlineSizeLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Size:", None, QtGui.QApplication.UnicodeUTF8)) - self.outlineSizeSpinBox.setSuffix(QtGui.QApplication.translate("ThemeDialog", "pt", None, QtGui.QApplication.UnicodeUTF8)) - self.shadowCheckBox.setText(QtGui.QApplication.translate("ThemeDialog", "&Shadow:", None, QtGui.QApplication.UnicodeUTF8)) - self.shadowSizeLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Size:", None, QtGui.QApplication.UnicodeUTF8)) - self.shadowSizeSpinBox.setSuffix(QtGui.QApplication.translate("ThemeDialog", "pt", None, QtGui.QApplication.UnicodeUTF8)) - self.boldCheckBox.setText(QtGui.QApplication.translate("ThemeDialog", "Bold Display", None, QtGui.QApplication.UnicodeUTF8)) - self.italicsCheckBox.setText(QtGui.QApplication.translate("ThemeDialog", "Italic Display", None, QtGui.QApplication.UnicodeUTF8)) - self.footerAreaPage.setTitle(QtGui.QApplication.translate("ThemeDialog", "Footer Area Font Details", None, QtGui.QApplication.UnicodeUTF8)) - self.footerAreaPage.setSubTitle(QtGui.QApplication.translate("ThemeDialog", "Define the font and display characteristics for the Footer text", None, QtGui.QApplication.UnicodeUTF8)) - self.footerFontLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Font:", None, QtGui.QApplication.UnicodeUTF8)) - self.footerColorLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Color:", None, QtGui.QApplication.UnicodeUTF8)) - self.footerSizeLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Size:", None, QtGui.QApplication.UnicodeUTF8)) - self.footerSizeSpinBox.setSuffix(QtGui.QApplication.translate("ThemeDialog", "pt", None, QtGui.QApplication.UnicodeUTF8)) - self.alignmentPage.setTitle(QtGui.QApplication.translate("ThemeDialog", "Text Formatting Details", None, QtGui.QApplication.UnicodeUTF8)) - self.alignmentPage.setSubTitle(QtGui.QApplication.translate("ThemeDialog", "Allows additional display formatting information to be defined", None, QtGui.QApplication.UnicodeUTF8)) - self.horizontalLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Horizontal Align:", None, QtGui.QApplication.UnicodeUTF8)) - self.horizontalComboBox.setItemText(0, QtGui.QApplication.translate("ThemeDialog", "Left", None, QtGui.QApplication.UnicodeUTF8)) - self.horizontalComboBox.setItemText(1, QtGui.QApplication.translate("ThemeDialog", "Right", None, QtGui.QApplication.UnicodeUTF8)) - self.horizontalComboBox.setItemText(2, QtGui.QApplication.translate("ThemeDialog", "Center", None, QtGui.QApplication.UnicodeUTF8)) - self.verticalLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Vertcal Align:", None, QtGui.QApplication.UnicodeUTF8)) - self.verticalComboBox.setItemText(0, QtGui.QApplication.translate("ThemeDialog", "Top", None, QtGui.QApplication.UnicodeUTF8)) - self.verticalComboBox.setItemText(1, QtGui.QApplication.translate("ThemeDialog", "Middle", None, QtGui.QApplication.UnicodeUTF8)) - self.verticalComboBox.setItemText(2, QtGui.QApplication.translate("ThemeDialog", "Bottom", None, QtGui.QApplication.UnicodeUTF8)) - self.transitionsCheckBox.setText(QtGui.QApplication.translate("ThemeDialog", "Transitions", None, QtGui.QApplication.UnicodeUTF8)) - self.areaPositionPage.setTitle(QtGui.QApplication.translate("ThemeDialog", "Output Area Locations", None, QtGui.QApplication.UnicodeUTF8)) - self.areaPositionPage.setSubTitle(QtGui.QApplication.translate("ThemeDialog", "Allows you to change and move the Main and Footer areas.", None, QtGui.QApplication.UnicodeUTF8)) - self.mainPositionGroupBox.setTitle(QtGui.QApplication.translate("ThemeDialog", "&Main Area", None, QtGui.QApplication.UnicodeUTF8)) - self.mainDefaultPositionCheckBox.setText(QtGui.QApplication.translate("ThemeDialog", "&Use default location", None, QtGui.QApplication.UnicodeUTF8)) - self.nainXLabel.setText(QtGui.QApplication.translate("ThemeDialog", "X position:", None, QtGui.QApplication.UnicodeUTF8)) - self.mainXSpinBox.setSuffix(QtGui.QApplication.translate("ThemeDialog", "px", None, QtGui.QApplication.UnicodeUTF8)) - self.mainYSpinBox.setSuffix(QtGui.QApplication.translate("ThemeDialog", "px", None, QtGui.QApplication.UnicodeUTF8)) - self.mainYLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Y position:", None, QtGui.QApplication.UnicodeUTF8)) - self.mainWidthSpinBox.setSuffix(QtGui.QApplication.translate("ThemeDialog", "px", None, QtGui.QApplication.UnicodeUTF8)) - self.mainWidthLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Width:", None, QtGui.QApplication.UnicodeUTF8)) - self.mainHeightSpinBox.setSuffix(QtGui.QApplication.translate("ThemeDialog", "px", None, QtGui.QApplication.UnicodeUTF8)) - self.mainHeightLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Height:", None, QtGui.QApplication.UnicodeUTF8)) - self.footerPositionGroupBox.setTitle(QtGui.QApplication.translate("ThemeDialog", "Footer Area", None, QtGui.QApplication.UnicodeUTF8)) - self.footerXLabel.setText(QtGui.QApplication.translate("ThemeDialog", "X position:", None, QtGui.QApplication.UnicodeUTF8)) - self.footerXSpinBox.setSuffix(QtGui.QApplication.translate("ThemeDialog", "px", None, QtGui.QApplication.UnicodeUTF8)) - self.footerYLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Y position:", None, QtGui.QApplication.UnicodeUTF8)) - self.footerYSpinBox.setSuffix(QtGui.QApplication.translate("ThemeDialog", "px", None, QtGui.QApplication.UnicodeUTF8)) - self.footerWidthLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Width:", None, QtGui.QApplication.UnicodeUTF8)) - self.footerWidthSpinBox.setSuffix(QtGui.QApplication.translate("ThemeDialog", "px", None, QtGui.QApplication.UnicodeUTF8)) - self.footerHeightLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Height:", None, QtGui.QApplication.UnicodeUTF8)) - self.footerHeightSpinBox.setSuffix(QtGui.QApplication.translate("ThemeDialog", "px", None, QtGui.QApplication.UnicodeUTF8)) - self.footerDefaultPositionCheckBox.setText(QtGui.QApplication.translate("ThemeDialog", "Use default location", None, QtGui.QApplication.UnicodeUTF8)) - self.previewPage.setTitle(QtGui.QApplication.translate("ThemeDialog", "Save and Preview", None, QtGui.QApplication.UnicodeUTF8)) - self.previewPage.setSubTitle(QtGui.QApplication.translate("ThemeDialog", "View the theme and save it replacing the current one or change the name to create a new theme", None, QtGui.QApplication.UnicodeUTF8)) - self.themeNameLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Theme name:", None, QtGui.QApplication.UnicodeUTF8)) - self.previewLabel.setText(QtGui.QApplication.translate("ThemeDialog", "Preview", None, QtGui.QApplication.UnicodeUTF8)) + def retranslateUi(self, ThemeWizard): + ThemeWizard.setWindowTitle(translate('OpenLP.ThemeForm', 'Theme Wizard')) + self.titleLabel.setText(translate('OpenLP.ThemeForm', '\n' +'\n' +'

Welcome to the Theme Wizard

')) + self.informationLabel.setText(translate('OpenLP.ThemeForm', 'This wizard will help you to maintain Themes . Click the next button below to start the process by setting up your background.')) + self.backgroundPage.setTitle(translate('OpenLP.ThemeForm', 'Set Up Background')) + self.backgroundPage.setSubTitle(translate('OpenLP.ThemeForm', 'Set up your theme\'s background according to the parameters below.')) + self.backgroundTypeLabel.setText(translate('OpenLP.ThemeForm', 'Background type:')) + self.backgroundTypeComboBox.setItemText(0, translate('OpenLP.ThemeForm', 'Solid Color')) + self.backgroundTypeComboBox.setItemText(1, translate('OpenLP.ThemeForm', 'Gradient')) + self.backgroundTypeComboBox.setItemText(2, translate('OpenLP.ThemeForm', 'Image')) + self.color1Label.setText(translate('OpenLP.ThemeForm', '')) + self.color2Label.setText(translate('OpenLP.ThemeForm', '')) + self.imageLabel.setText(translate('OpenLP.ThemeForm', 'Image:')) + self.gradientLabel.setText(translate('OpenLP.ThemeForm', 'Gradient:')) + self.gradientComboBox.setItemText(0, translate('OpenLP.ThemeForm', 'Horizontal')) + self.gradientComboBox.setItemText(1, translate('OpenLP.ThemeForm', 'Vertical')) + self.gradientComboBox.setItemText(2, translate('OpenLP.ThemeForm', 'Circular')) + self.gradientComboBox.setItemText(3, translate('OpenLP.ThemeForm', 'Top Left - Bottom Right')) + self.gradientComboBox.setItemText(4, translate('OpenLP.ThemeForm', 'Bottom Left - Top Right')) + self.mainAreaPage.setTitle(translate('OpenLP.ThemeForm', 'Main Area Font Details')) + self.mainAreaPage.setSubTitle(translate('OpenLP.ThemeForm', 'Define the font and display characteristics for the Display text')) + self.mainFontLabel.setText(translate('OpenLP.ThemeForm', 'Font:')) + self.mainColorLabel.setText(translate('OpenLP.ThemeForm', 'Color:')) + self.mainSizeLabel.setText(translate('OpenLP.ThemeForm', 'Size:')) + self.mainSizeSpinBox.setSuffix(translate('OpenLP.ThemeForm', 'pt')) + self.mainLineCountLabel.setText(translate('OpenLP.ThemeForm', '(%d lines per slide)')) + self.lineSpacingLabel.setText(translate('OpenLP.ThemeForm', 'Line Spacing:')) + self.lineSpacingSpinBox.setSuffix(translate('OpenLP.ThemeForm', 'pt')) + self.outlineCheckBox.setText(translate('OpenLP.ThemeForm', '&Outline:')) + self.outlineSizeLabel.setText(translate('OpenLP.ThemeForm', 'Size:')) + self.outlineSizeSpinBox.setSuffix(translate('OpenLP.ThemeForm', 'pt')) + self.shadowCheckBox.setText(translate('OpenLP.ThemeForm', '&Shadow:')) + self.shadowSizeLabel.setText(translate('OpenLP.ThemeForm', 'Size:')) + self.shadowSizeSpinBox.setSuffix(translate('OpenLP.ThemeForm', 'pt')) + self.boldCheckBox.setText(translate('OpenLP.ThemeForm', 'Bold Display')) + self.italicsCheckBox.setText(translate('OpenLP.ThemeForm', 'Italic Display')) + self.footerAreaPage.setTitle(translate('OpenLP.ThemeForm', 'Footer Area Font Details')) + self.footerAreaPage.setSubTitle(translate('OpenLP.ThemeForm', 'Define the font and display characteristics for the Footer text')) + self.footerFontLabel.setText(translate('OpenLP.ThemeForm', 'Font:')) + self.footerColorLabel.setText(translate('OpenLP.ThemeForm', 'Color:')) + self.footerSizeLabel.setText(translate('OpenLP.ThemeForm', 'Size:')) + self.footerSizeSpinBox.setSuffix(translate('OpenLP.ThemeForm', 'pt')) + self.alignmentPage.setTitle(translate('OpenLP.ThemeForm', 'Text Formatting Details')) + self.alignmentPage.setSubTitle(translate('OpenLP.ThemeForm', 'Allows additional display formatting information to be defined')) + self.horizontalLabel.setText(translate('OpenLP.ThemeForm', 'Horizontal Align:')) + self.horizontalComboBox.setItemText(0, translate('OpenLP.ThemeForm', 'Left')) + self.horizontalComboBox.setItemText(1, translate('OpenLP.ThemeForm', 'Right')) + self.horizontalComboBox.setItemText(2, translate('OpenLP.ThemeForm', 'Center')) + self.verticalLabel.setText(translate('OpenLP.ThemeForm', 'Vertcal Align:')) + self.verticalComboBox.setItemText(0, translate('OpenLP.ThemeForm', 'Top')) + self.verticalComboBox.setItemText(1, translate('OpenLP.ThemeForm', 'Middle')) + self.verticalComboBox.setItemText(2, translate('OpenLP.ThemeForm', 'Bottom')) + self.transitionsCheckBox.setText(translate('OpenLP.ThemeForm', 'Transitions')) + self.areaPositionPage.setTitle(translate('OpenLP.ThemeForm', 'Output Area Locations')) + self.areaPositionPage.setSubTitle(translate('OpenLP.ThemeForm', 'Allows you to change and move the Main and Footer areas.')) + self.mainPositionGroupBox.setTitle(translate('OpenLP.ThemeForm', '&Main Area')) + self.mainDefaultPositionCheckBox.setText(translate('OpenLP.ThemeForm', '&Use default location')) + self.nainXLabel.setText(translate('OpenLP.ThemeForm', 'X position:')) + self.mainXSpinBox.setSuffix(translate('OpenLP.ThemeForm', 'px')) + self.mainYSpinBox.setSuffix(translate('OpenLP.ThemeForm', 'px')) + self.mainYLabel.setText(translate('OpenLP.ThemeForm', 'Y position:')) + self.mainWidthSpinBox.setSuffix(translate('OpenLP.ThemeForm', 'px')) + self.mainWidthLabel.setText(translate('OpenLP.ThemeForm', 'Width:')) + self.mainHeightSpinBox.setSuffix(translate('OpenLP.ThemeForm', 'px')) + self.mainHeightLabel.setText(translate('OpenLP.ThemeForm', 'Height:')) + self.footerPositionGroupBox.setTitle(translate('OpenLP.ThemeForm', 'Footer Area')) + self.footerXLabel.setText(translate('OpenLP.ThemeForm', 'X position:')) + self.footerXSpinBox.setSuffix(translate('OpenLP.ThemeForm', 'px')) + self.footerYLabel.setText(translate('OpenLP.ThemeForm', 'Y position:')) + self.footerYSpinBox.setSuffix(translate('OpenLP.ThemeForm', 'px')) + self.footerWidthLabel.setText(translate('OpenLP.ThemeForm', 'Width:')) + self.footerWidthSpinBox.setSuffix(translate('OpenLP.ThemeForm', 'px')) + self.footerHeightLabel.setText(translate('OpenLP.ThemeForm', 'Height:')) + self.footerHeightSpinBox.setSuffix(translate('OpenLP.ThemeForm', 'px')) + self.footerDefaultPositionCheckBox.setText(translate('OpenLP.ThemeForm', 'Use default location')) + self.previewPage.setTitle(translate('OpenLP.ThemeForm', 'Save and Preview')) + self.previewPage.setSubTitle(translate('OpenLP.ThemeForm', 'View the theme and save it replacing the current one or change the name to create a new theme')) + self.themeNameLabel.setText(translate('OpenLP.ThemeForm', 'Theme name:')) + self.previewLabel.setText(translate('OpenLP.ThemeForm', 'Preview')) diff --git a/resources/forms/themedialog.ui b/resources/forms/themewizard.ui similarity index 99% rename from resources/forms/themedialog.ui rename to resources/forms/themewizard.ui index 6e8559c23..4ca7271d3 100644 --- a/resources/forms/themedialog.ui +++ b/resources/forms/themewizard.ui @@ -1,7 +1,7 @@ - ThemeDialog - + ThemeWizard + 0 @@ -1109,9 +1109,9 @@ p, li { white-space: pre-wrap; } - ThemeDialog + ThemeWizard accepted() - ThemeDialog + ThemeWizard accept()