From ae905abfde88ae1b8bd17557aeb65a4a75587fe9 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Sun, 29 Nov 2009 16:07:25 +0200 Subject: [PATCH] Spruced up the About page. Made a few configuration key changes. --- openlp.pyw | 28 +- openlp/core/ui/__init__.py | 2 +- openlp/core/ui/about.py | 202 --------- openlp/core/ui/aboutdialog.py | 543 +++++++++++++++++++++++++ openlp/core/ui/aboutform.py | 56 +++ openlp/core/ui/mainwindow.py | 8 +- openlp/core/utils/__init__.py | 2 +- resources/forms/about.ui | 275 +++++++++---- resources/images/openlp-2.qrc | 5 +- resources/images/openlp-about-logo.png | Bin 28928 -> 28481 bytes resources/images/openlp-about-logo.svg | 136 +++---- resources/images/system_close.png | Bin 0 -> 813 bytes resources/images/system_contribute.png | Bin 0 -> 822 bytes 13 files changed, 858 insertions(+), 399 deletions(-) delete mode 100644 openlp/core/ui/about.py create mode 100644 openlp/core/ui/aboutdialog.py create mode 100644 openlp/core/ui/aboutform.py create mode 100644 resources/images/system_close.png create mode 100644 resources/images/system_contribute.png diff --git a/openlp.pyw b/openlp.pyw index 1f819481f..43e8926cd 100755 --- a/openlp.pyw +++ b/openlp.pyw @@ -76,16 +76,24 @@ class OpenLP(QtGui.QApplication): filepath = os.path.abspath(os.path.join(filepath, u'version.txt')) fversion = None try: - fversion = open(filepath, 'r') + fversion = open(filepath, u'r') for line in fversion: - bits = unicode(line).split(u'-') - applicationVersion = {u'Full':unicode(line).rstrip(), - u'version':bits[0], u'build':bits[1]} - log.info(u'Openlp version %s build %s' % - (applicationVersion[u'version'],applicationVersion[u'build'] )) + full_version = unicode(line).rstrip() #\ + #.replace(u'\r', u'').replace(u'\n', u'') + bits = full_version.split(u'-') + app_version = { + u'full': full_version, + u'version': bits[0], + u'build': bits[1] + } + log.info(u'Openlp version %s build %s' % ( + app_version[u'version'], app_version[u'build'])) except: - applicationVersion = {u'Full':u'1.9.0-000', - u'version':u'1.9.0', u'build':u'000'} + app_version = { + u'full': u'1.9.0-000', + u'version': u'1.9.0', + u'build': u'000' + } finally: if fversion: fversion.close() @@ -98,7 +106,7 @@ class OpenLP(QtGui.QApplication): QtCore.QObject.connect(Receiver.get_receiver(), QtCore.SIGNAL(u'process_events'), self.processEvents) self.setApplicationName(u'OpenLP') - self.setApplicationVersion(applicationVersion[u'version']) + self.setApplicationVersion(app_version[u'version']) if os.name == u'nt': self.setStyleSheet(application_stylesheet) show_splash = str_to_bool(ConfigHelper.get_registry().get_value( @@ -117,7 +125,7 @@ class OpenLP(QtGui.QApplication): log.info(u'Screen %d found with resolution %s', screen, self.desktop().availableGeometry(screen)) # start the main app window - self.mainWindow = MainWindow(screens, applicationVersion) + self.mainWindow = MainWindow(screens, app_version) self.mainWindow.show() if show_splash: # now kill the splashscreen diff --git a/openlp/core/ui/__init__.py b/openlp/core/ui/__init__.py index caa3440c6..ac2a3dce1 100644 --- a/openlp/core/ui/__init__.py +++ b/openlp/core/ui/__init__.py @@ -30,7 +30,7 @@ from splashscreen import SplashScreen from alertstab import AlertsTab from generaltab import GeneralTab from themestab import ThemesTab -from about import AboutForm +from aboutform import AboutForm from alertform import AlertForm from pluginform import PluginForm from settingsform import SettingsForm diff --git a/openlp/core/ui/about.py b/openlp/core/ui/about.py deleted file mode 100644 index 3cc487bea..000000000 --- a/openlp/core/ui/about.py +++ /dev/null @@ -1,202 +0,0 @@ -# -*- coding: utf-8 -*- -# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4 - -############################################################################### -# OpenLP - Open Source Lyrics Projection # -# --------------------------------------------------------------------------- # -# Copyright (c) 2008-2009 Raoul Snyman # -# Portions copyright (c) 2008-2009 Martin Thompson, Tim Bentley, Carsten # -# Tinggaard, Jon Tibble, Jonathan Corwin, Maikel Stuivenberg, Scott Guerrieri # -# --------------------------------------------------------------------------- # -# 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 - -from openlp.core.lib import buildIcon - -class AboutForm(QtGui.QDialog): - """ - The About dialog - """ - - def __init__(self, parent, applicationVersion): - """ - Do some initialisation stuff - """ - QtGui.QDialog.__init__(self, parent) - self.applicationVersion = applicationVersion - self.setupUi(self) - - def setupUi(self, AboutForm): - """ - Set up user interface - """ - AboutForm.setObjectName(u'AboutForm') - AboutForm.resize(470, 481) - icon = buildIcon(u':/icon/openlp-logo-16x16.png') - AboutForm.setWindowIcon(icon) - AboutFormLayout = QtGui.QVBoxLayout(AboutForm) - AboutFormLayout.setSpacing(8) - AboutFormLayout.setMargin(8) - AboutFormLayout.setObjectName(u'AboutDialogLayout') - self.Logo = QtGui.QLabel(AboutForm) - self.Logo.setAutoFillBackground(False) - self.Logo.setStyleSheet(u'background-color: rgb(255, 255, 255);') - self.Logo.setLineWidth(0) - self.Logo.setPixmap(QtGui.QPixmap(u':/graphics/openlp-about-logo.png')) - self.Logo.setScaledContents(False) - self.Logo.setAlignment(QtCore.Qt.AlignCenter) - self.Logo.setObjectName(u'Logo') - AboutFormLayout.addWidget(self.Logo) - self.AboutNotebook = QtGui.QTabWidget(AboutForm) - self.AboutNotebook.setObjectName(u'AboutNotebook') - self.LicenseTab = QtGui.QWidget() - self.LicenseTab.setObjectName(u'LicenseTab') - self.LicenseTabLayout = QtGui.QVBoxLayout(self.LicenseTab) - self.LicenseTabLayout.setSpacing(8) - self.LicenseTabLayout.setMargin(8) - self.LicenseTabLayout.setObjectName(u'LicenseTabLayout') - self.CopyrightLabel = QtGui.QLabel(self.LicenseTab) - self.CopyrightLabel.setObjectName(u'CopyrightLabel') - self.LicenseTabLayout.addWidget(self.CopyrightLabel) - self.AboutAuthors = QtGui.QLabel(self.LicenseTab) - self.AboutAuthors.setAlignment( - QtCore.Qt.AlignJustify | QtCore.Qt.AlignVCenter) - self.AboutAuthors.setWordWrap(True) - self.AboutAuthors.setObjectName(u'AboutAuthors') - self.LicenseTabLayout.addWidget(self.AboutAuthors) - self.License1Label = QtGui.QLabel(self.LicenseTab) - self.License1Label.setAlignment( - QtCore.Qt.AlignJustify | QtCore.Qt.AlignVCenter) - self.License1Label.setWordWrap(True) - self.License1Label.setObjectName(u'License1Label') - self.LicenseTabLayout.addWidget(self.License1Label) - self.License2Label = QtGui.QLabel(self.LicenseTab) - self.License2Label.setAlignment( - QtCore.Qt.AlignJustify | QtCore.Qt.AlignVCenter) - self.License2Label.setWordWrap(True) - self.License2Label.setObjectName(u'License2Label') - self.LicenseTabLayout.addWidget(self.License2Label) - self.License3Label = QtGui.QLabel(self.LicenseTab) - self.License3Label.setAlignment( - QtCore.Qt.AlignJustify | QtCore.Qt.AlignVCenter) - self.License3Label.setWordWrap(True) - self.License3Label.setObjectName(u'License3Label') - self.LicenseTabLayout.addWidget(self.License3Label) - self.License4Label = QtGui.QLabel(self.LicenseTab) - self.License4Label.setAlignment( - QtCore.Qt.AlignJustify | QtCore.Qt.AlignVCenter) - self.License4Label.setWordWrap(True) - self.License4Label.setObjectName(u'License4Label') - self.LicenseTabLayout.addWidget(self.License4Label) - self.LicenseSpacer = QtGui.QSpacerItem(20, 40, - QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) - self.LicenseTabLayout.addItem(self.LicenseSpacer) - self.AboutNotebook.addTab(self.LicenseTab, u'License') - self.CreditsTab = QtGui.QWidget() - self.CreditsTab.setObjectName(u'CreditsTab') - self.CreditsTabLayout = QtGui.QVBoxLayout(self.CreditsTab) - self.CreditsTabLayout.setSpacing(0) - self.CreditsTabLayout.setMargin(8) - self.CreditsTabLayout.setObjectName(u'CreditsTabLayout') - self.CreditsTextEdit = QtGui.QTextEdit(self.CreditsTab) - self.CreditsTextEdit.setReadOnly(True) - self.CreditsTextEdit.setObjectName(u'CreditsTextEdit') - self.CreditsTabLayout.addWidget(self.CreditsTextEdit) - self.AboutNotebook.addTab(self.CreditsTab, u'Credits') - AboutFormLayout.addWidget(self.AboutNotebook) - self.ButtonWidget = QtGui.QWidget(AboutForm) - self.ButtonWidget.setObjectName(u'ButtonWidget') - self.ButtonWidgetLayout = QtGui.QHBoxLayout(self.ButtonWidget) - self.ButtonWidgetLayout.setSpacing(8) - self.ButtonWidgetLayout.setMargin(0) - self.ButtonWidgetLayout.setObjectName(u'ButtonWidgetLayout') - spacerItem = QtGui.QSpacerItem(275, 20, QtGui.QSizePolicy.Expanding, - QtGui.QSizePolicy.Minimum) - self.ButtonWidgetLayout.addItem(spacerItem) - self.ContributeButton = QtGui.QPushButton(self.ButtonWidget) - self.ContributeButton.setObjectName(u'ContributeButton') - self.ButtonWidgetLayout.addWidget(self.ContributeButton) - self.CloseButton = QtGui.QPushButton(self.ButtonWidget) - self.CloseButton.setObjectName(u'CloseButton') - self.ButtonWidgetLayout.addWidget(self.CloseButton) - AboutFormLayout.addWidget(self.ButtonWidget) - self.extContributeItem = QtGui.QAction(AboutForm) - self.extContributeItem.setObjectName(u'extContributeItem') - # Do translation - self.retranslateUi(AboutForm) - self.AboutNotebook.setCurrentIndex(0) - QtCore.QObject.connect(self.CloseButton, QtCore.SIGNAL(u'clicked()'), - AboutForm.close) - QtCore.QObject.connect(self.ContributeButton, - QtCore.SIGNAL(u'clicked()'), self.onContributeButtonClicked) - QtCore.QMetaObject.connectSlotsByName(AboutForm) - - def retranslateUi(self, AboutForm): - """ - Set up translation - """ - AboutForm.setWindowTitle(self.trUtf8(u'About openlp.org')) - self.CopyrightLabel.setText( - self.trUtf8(u'Copyright \xa9 2004-2009 openlp.org Foundation')) - self.AboutAuthors.setText(self.trUtf8( - u'openlp.org is written and maintained by volunteers. If you would ' - u'like to see more free Christian software being written, please ' - u'consider contributing by using the button below.')) - self.License1Label.setText(self.trUtf8( - u'This program is free software; you can redistribute it and/or ' - u'modify it under the terms of the GNU General Public License as ' - u'published by the Free Software Foundation; either version 2 of ' - u'the License, or (at your option) any later version.')) - self.License2Label.setText(self.trUtf8( - u'You should have received a copy of the GNU General Public ' - u'License along with this program; if not, write to the Free ' - u'Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, ' - u'MA 02111-1307 USA.')) - self.License3Label.setText(self.trUtf8( - u'This program is distributed in the hope that it will be useful, ' - u'but WITHOUT ANY WARRANTY; without even the implied warranty of ' - u'MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ' - u'General Public License for more details.')) - self.License4Label.setText(unicode(self.trUtf8( - u'Software version %s, Build %s')) % - (self.applicationVersion[u'version'], self.applicationVersion[u'build'])) - self.AboutNotebook.setTabText( - self.AboutNotebook.indexOf(self.LicenseTab), self.trUtf8(u'License')) - self.CreditsTextEdit.setPlainText(self.trUtf8( - u'Project Lead\n' - u' Raoul \"superfly\" Snyman\n' - u'\n' - u'Developers\n' - u' Tim \"TRB143\" Bentley\n' - u' Jonathan \"gushie\" Corwin\n' - u' Scott \"sguerrieri\" Guerrieri\n' - u' Raoul \"superfly\" Snyman\n' - u' Martin \"mijiti\" Thompson\n' - u' Jon \"Meths\" Tibble\n' - u' Carsten \"catini\" Tingaard')) - self.AboutNotebook.setTabText( - self.AboutNotebook.indexOf(self.CreditsTab), self.trUtf8(u'Credits')) - self.ContributeButton.setText(self.trUtf8(u'Contribute')) - self.CloseButton.setText(self.trUtf8(u'Close')) - self.extContributeItem.setText(self.trUtf8(u'&Contribute')) - - def onContributeButtonClicked(self): - """ - Launch a web browser and go to the contribute page on the site. - """ - import webbrowser - url = "http://www.openlp.org/en/documentation/introduction/contributing.html" - webbrowser.open_new(url) diff --git a/openlp/core/ui/aboutdialog.py b/openlp/core/ui/aboutdialog.py new file mode 100644 index 000000000..e9486463c --- /dev/null +++ b/openlp/core/ui/aboutdialog.py @@ -0,0 +1,543 @@ +# -*- coding: utf-8 -*- +# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4 + +############################################################################### +# OpenLP - Open Source Lyrics Projection # +# --------------------------------------------------------------------------- # +# Copyright (c) 2008-2009 Raoul Snyman # +# Portions copyright (c) 2008-2009 Martin Thompson, Tim Bentley, Carsten # +# Tinggaard, Jon Tibble, Jonathan Corwin, Maikel Stuivenberg, Scott Guerrieri # +# --------------------------------------------------------------------------- # +# 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_AboutDialog(object): + def setupUi(self, AboutDialog): + AboutDialog.setObjectName(u'AboutDialog') + AboutDialog.resize(516, 481) + LogoIcon = QtGui.QIcon() + LogoIcon.addPixmap(QtGui.QPixmap(u':/icon/openlp-logo-16x16.png'), + QtGui.QIcon.Normal, QtGui.QIcon.Off) + AboutDialog.setWindowIcon(LogoIcon) + self.AboutDialogLayout = QtGui.QVBoxLayout(AboutDialog) + self.AboutDialogLayout.setSpacing(8) + self.AboutDialogLayout.setMargin(8) + self.AboutDialogLayout.setObjectName(u'AboutDialogLayout') + self.LogoLabel = QtGui.QLabel(AboutDialog) + self.LogoLabel.setPixmap(QtGui.QPixmap(u':/graphics/openlp-about-logo.png')) + self.LogoLabel.setScaledContents(False) + self.LogoLabel.setIndent(0) + self.LogoLabel.setObjectName(u'LogoLabel') + self.AboutDialogLayout.addWidget(self.LogoLabel) + self.AboutNotebook = QtGui.QTabWidget(AboutDialog) + self.AboutNotebook.setObjectName(u'AboutNotebook') + self.AboutTab = QtGui.QWidget() + self.AboutTab.setObjectName(u'AboutTab') + self.AboutTabLayout = QtGui.QVBoxLayout(self.AboutTab) + self.AboutTabLayout.setSpacing(0) + self.AboutTabLayout.setMargin(8) + self.AboutTabLayout.setObjectName(u'AboutTabLayout') + self.AboutTextEdit = QtGui.QPlainTextEdit(self.AboutTab) + self.AboutTextEdit.setReadOnly(True) + self.AboutTextEdit.setObjectName(u'AboutTextEdit') + self.AboutTabLayout.addWidget(self.AboutTextEdit) + self.AboutNotebook.addTab(self.AboutTab, '') + self.CreditsTab = QtGui.QWidget() + self.CreditsTab.setObjectName(u'CreditsTab') + self.CreditsTabLayout = QtGui.QVBoxLayout(self.CreditsTab) + self.CreditsTabLayout.setSpacing(0) + self.CreditsTabLayout.setMargin(8) + self.CreditsTabLayout.setObjectName(u'CreditsTabLayout') + self.CreditsTextEdit = QtGui.QPlainTextEdit(self.CreditsTab) + self.CreditsTextEdit.setReadOnly(True) + self.CreditsTextEdit.setObjectName(u'CreditsTextEdit') + self.CreditsTabLayout.addWidget(self.CreditsTextEdit) + self.AboutNotebook.addTab(self.CreditsTab, '') + self.LicenseTab = QtGui.QWidget() + self.LicenseTab.setObjectName(u'LicenseTab') + self.LicenseTabLayout = QtGui.QVBoxLayout(self.LicenseTab) + self.LicenseTabLayout.setSpacing(8) + self.LicenseTabLayout.setMargin(8) + self.LicenseTabLayout.setObjectName(u'LicenseTabLayout') + self.LicenseTextEdit = QtGui.QPlainTextEdit(self.LicenseTab) + self.LicenseTextEdit.setReadOnly(True) + self.LicenseTextEdit.setObjectName(u'LicenseTextEdit') + self.LicenseTabLayout.addWidget(self.LicenseTextEdit) + self.AboutNotebook.addTab(self.LicenseTab, '') + self.AboutDialogLayout.addWidget(self.AboutNotebook) + self.ButtonWidget = QtGui.QWidget(AboutDialog) + self.ButtonWidget.setObjectName(u'ButtonWidget') + self.ButtonWidgetLayout = QtGui.QHBoxLayout(self.ButtonWidget) + self.ButtonWidgetLayout.setSpacing(8) + self.ButtonWidgetLayout.setMargin(0) + self.ButtonWidgetLayout.setObjectName(u'ButtonWidgetLayout') + ButtonSpacer = QtGui.QSpacerItem(275, 20, + QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) + self.ButtonWidgetLayout.addItem(ButtonSpacer) + self.ContributeButton = QtGui.QPushButton(self.ButtonWidget) + ContributeIcon = QtGui.QIcon() + ContributeIcon.addPixmap( + QtGui.QPixmap(u':/system/system_contribute.png'), + QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.ContributeButton.setIcon(ContributeIcon) + self.ContributeButton.setObjectName(u'ContributeButton') + self.ButtonWidgetLayout.addWidget(self.ContributeButton) + self.CloseButton = QtGui.QPushButton(self.ButtonWidget) + CloseIcon = QtGui.QIcon() + CloseIcon.addPixmap(QtGui.QPixmap(u':/system/system_close.png'), + QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.CloseButton.setIcon(CloseIcon) + self.CloseButton.setObjectName(u'CloseButton') + self.ButtonWidgetLayout.addWidget(self.CloseButton) + self.AboutDialogLayout.addWidget(self.ButtonWidget) + + self.retranslateUi(AboutDialog) + self.AboutNotebook.setCurrentIndex(0) + QtCore.QObject.connect(self.CloseButton, QtCore.SIGNAL(u'clicked()'), + AboutDialog.close) + QtCore.QMetaObject.connectSlotsByName(AboutDialog) + + def retranslateUi(self, AboutDialog): + AboutDialog.setWindowTitle(self.trUtf8('About openlp.org')) + self.AboutTextEdit.setPlainText(self.trUtf8( + 'OpenLP build - Open Source Lyrics ' + 'Projection\n' + '\n' + 'OpenLP is free church presentation software, or lyrics ' + 'projection software, used to display slides of songs, Bible ' + 'verses, videos, images, and even presentations (if ' + 'OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) ' + 'for church worship using a computer and a data projector.\n' + '\n' + 'Find out more about OpenLP: http://openlp.org/\n' + '\n' + 'OpenLP is written and maintained by volunteers. If you would ' + 'like to see more free Christian software being written, please ' + 'consider contributing by using the button below.' + )) + self.AboutNotebook.setTabText( + self.AboutNotebook.indexOf(self.AboutTab), self.trUtf8('About')) + self.CreditsTextEdit.setPlainText(self.trUtf8( + 'Project Lead\n' + ' Raoul "superfly" Snyman\n' + '\n' + 'Developers\n' + ' Tim "TRB143" Bentley\n' + ' Jonathan "gushie" Corwin\n' + ' Scott "sguerrieri" Guerrieri\n' + ' Raoul "superfly" Snyman\n' + ' Maikel Stuivenberg\n' + ' Martin "mijiti" Thompson\n' + ' Carsten "catini" Tingaard\n' + '\n' + 'Testers\n' + ' Wesley "wrst" Stout' + )) + self.AboutNotebook.setTabText( + self.AboutNotebook.indexOf(self.CreditsTab), self.trUtf8('Credits')) + self.LicenseTextEdit.setPlainText(self.trUtf8( + 'Copyright © 2004-2009 Raoul Snyman\n' + 'Portions copyright © 2004-2009 Tim Bentley, Jonathan Corwin, ' + 'Scott Guerrieri, Maikel Stuivenberg, Martin Thompson, Carsten ' + 'Tinggaard, Jon Tibble\n' + '\n' + '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.\n' + '\n' + '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 below ' + 'for more details.\n' + '\n' + '\n' + 'GNU GENERAL PUBLIC LICENSE\n' + 'Version 2, June 1991\n' + '\n' + 'Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 ' + 'Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ' + 'Everyone is permitted to copy and distribute verbatim copies of ' + 'this license document, but changing it is not allowed.\n' + '\n' + 'Preamble\n' + '\n' + 'The licenses for most software are designed to take away your ' + 'freedom to share and change it. By contrast, the GNU General ' + 'Public License is intended to guarantee your freedom to share ' + 'and change free software--to make sure the software is free for ' + 'all its users. This General Public License applies to most of ' + 'the Free Software Foundation\'s software and to any other ' + 'program whose authors commit to using it. (Some other Free ' + 'Software Foundation software is covered by the GNU Lesser ' + 'General Public License instead.) You can apply it to your ' + 'programs, too.\n' + '\n' + 'When we speak of free software, we are referring to freedom, not ' + 'price. Our General Public Licenses are designed to make sure ' + 'that you have the freedom to distribute copies of free software ' + '(and charge for this service if you wish), that you receive ' + 'source code or can get it if you want it, that you can change ' + 'the software or use pieces of it in new free programs; and that ' + 'you know you can do these things.\n' + '\n' + 'To protect your rights, we need to make restrictions that forbid ' + 'anyone to deny you these rights or to ask you to surrender the ' + 'rights. These restrictions translate to certain responsibilities ' + 'for you if you distribute copies of the software, or if you ' + 'modify it.\n' + '\n' + 'For example, if you distribute copies of such a program, whether ' + 'gratis or for a fee, you must give the recipients all the rights ' + 'that you have. You must make sure that they, too, receive or ' + 'can get the source code. And you must show them these terms so ' + 'they know their rights.\n' + '\n' + 'We protect your rights with two steps: (1) copyright the ' + 'software, and (2) offer you this license which gives you legal ' + 'permission to copy, distribute and/or modify the software.\n' + '\n' + 'Also, for each author\'s protection and ours, we want to make ' + 'certain that everyone understands that there is no warranty for ' + 'this free software. If the software is modified by someone else ' + 'and passed on, we want its recipients to know that what they ' + 'have is not the original, so that any problems introduced by ' + 'others will not reflect on the original authors\' reputations.\n' + '\n' + 'Finally, any free program is threatened constantly by software ' + 'patents. We wish to avoid the danger that redistributors of a ' + 'free program will individually obtain patent licenses, in effect ' + 'making the program proprietary. To prevent this, we have made ' + 'it clear that any patent must be licensed for everyone\'s free ' + 'use or not licensed at all.\n' + '\n' + 'The precise terms and conditions for copying, distribution and ' + 'modification follow.\n' + '\n' + 'GNU GENERAL PUBLIC LICENSE\n' + 'TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n' + '\n' + '0. This License applies to any program or other work which ' + 'contains a notice placed by the copyright holder saying it may ' + 'be distributed under the terms of this General Public License. ' + 'The "Program", below, refers to any such program or work, and a ' + '"work based on the Program" means either the Program or any ' + 'derivative work under copyright law: that is to say, a work ' + 'containing the Program or a portion of it, either verbatim or ' + 'with modifications and/or translated into another language. ' + '(Hereinafter, translation is included without limitation in the ' + 'term "modification".) Each licensee is addressed as "you".\n' + '\n' + 'Activities other than copying, distribution and modification are ' + 'not covered by this License; they are outside its scope. The ' + 'act of running the Program is not restricted, and the output ' + 'from the Program is covered only if its contents constitute a ' + 'work based on the Program (independent of having been made by ' + 'running the Program). Whether that is true depends on what the ' + 'Program does.\n' + '\n' + '1. You may copy and distribute verbatim copies of the Program\'s ' + 'source code as you receive it, in any medium, provided that you ' + 'conspicuously and appropriately publish on each copy an ' + 'appropriate copyright notice and disclaimer of warranty; keep ' + 'intact all the notices that refer to this License and to the ' + 'absence of any warranty; and give any other recipients of the ' + 'Program a copy of this License along with the Program.\n' + '\n' + 'You may charge a fee for the physical act of transferring a ' + 'copy, and you may at your option offer warranty protection in ' + 'exchange for a fee.\n' + '\n' + '2. You may modify your copy or copies of the Program or any ' + 'portion of it, thus forming a work based on the Program, and ' + 'copy and distribute such modifications or work under the terms ' + 'of Section 1 above, provided that you also meet all of these ' + 'conditions:\n' + '\n' + 'a) You must cause the modified files to carry prominent notices ' + 'stating that you changed the files and the date of any change.\n' + '\n' + 'b) You must cause any work that you distribute or publish, that ' + 'in whole or in part contains or is derived from the Program or ' + 'any part thereof, to be licensed as a whole at no charge to all ' + 'third parties under the terms of this License.\n' + '\n' + 'c) If the modified program normally reads commands interactively ' + 'when run, you must cause it, when started running for such ' + 'interactive use in the most ordinary way, to print or display an ' + 'announcement including an appropriate copyright notice and a ' + 'notice that there is no warranty (or else, saying that you ' + 'provide a warranty) and that users may redistribute the program ' + 'under these conditions, and telling the user how to view a copy ' + 'of this License. (Exception: if the Program itself is ' + 'interactive but does not normally print such an announcement, ' + 'your work based on the Program is not required to print an ' + 'announcement.)\n' + '\n' + 'These requirements apply to the modified work as a whole. If ' + 'identifiable sections of that work are not derived from the ' + 'Program, and can be reasonably considered independent and ' + 'separate works in themselves, then this License, and its terms, ' + 'do not apply to those sections when you distribute them as ' + 'separate works. But when you distribute the same sections as ' + 'part of a whole which is a work based on the Program, the ' + 'distribution of the whole must be on the terms of this License, ' + 'whose permissions for other licensees extend to the entire ' + 'whole, and thus to each and every part regardless of who wrote ' + 'it.\n' + '\n' + 'Thus, it is not the intent of this section to claim rights or ' + 'contest your rights to work written entirely by you; rather, the ' + 'intent is to exercise the right to control the distribution of ' + 'derivative or collective works based on the Program.\n' + '\n' + 'In addition, mere aggregation of another work not based on the ' + 'Program with the Program (or with a work based on the Program) ' + 'on a volume of a storage or distribution medium does not bring ' + 'the other work under the scope of this License.\n' + '\n' + '3. You may copy and distribute the Program (or a work based on ' + 'it, under Section 2) in object code or executable form under the ' + 'terms of Sections 1 and 2 above provided that you also do one of ' + 'the following:\n' + '\n' + 'a) Accompany it with the complete corresponding machine-readable ' + 'source code, which must be distributed under the terms of ' + 'Sections 1 and 2 above on a medium customarily used for software ' + 'interchange; or,\n' + '\n' + 'b) Accompany it with a written offer, valid for at least three ' + 'years, to give any third party, for a charge no more than your ' + 'cost of physically performing source distribution, a complete ' + 'machine-readable copy of the corresponding source code, to be ' + 'distributed under the terms of Sections 1 and 2 above on a ' + 'medium customarily used for software interchange; or,\n' + '\n' + 'c) Accompany it with the information you received as to the ' + 'offer to distribute corresponding source code. (This ' + 'alternative is allowed only for noncommercial distribution and ' + 'only if you received the program in object code or executable ' + 'form with such an offer, in accord with Subsection b above.)\n' + '\n' + 'The source code for a work means the preferred form of the work ' + 'for making modifications to it. For an executable work, ' + 'complete source code means all the source code for all modules ' + 'it contains, plus any associated interface definition files, ' + 'plus the scripts used to control compilation and installation of ' + 'the executable. However, as a special exception, the source ' + 'code distributed need not include anything that is normally ' + 'distributed (in either source or binary form) with the major ' + 'components (compiler, kernel, and so on) of the operating system ' + 'on which the executable runs, unless that component itself ' + 'accompanies the executable.\n' + '\n' + 'If distribution of executable or object code is made by offering ' + 'access to copy from a designated place, then offering equivalent ' + 'access to copy the source code from the same place counts as ' + 'distribution of the source code, even though third parties are ' + 'not compelled to copy the source along with the object code.\n' + '\n' + '4. You may not copy, modify, sublicense, or distribute the ' + 'Program except as expressly provided under this License. Any ' + 'attempt otherwise to copy, modify, sublicense or distribute the ' + 'Program is void, and will automatically terminate your rights ' + 'under this License. However, parties who have received copies, ' + 'or rights, from you under this License will not have their ' + 'licenses terminated so long as such parties remain in full ' + 'compliance.\n' + '\n' + '5. You are not required to accept this License, since you have ' + 'not signed it. However, nothing else grants you permission to ' + 'modify or distribute the Program or its derivative works. These ' + 'actions are prohibited by law if you do not accept this ' + 'License. Therefore, by modifying or distributing the Program ' + '(or any work based on the Program), you indicate your acceptance ' + 'of this License to do so, and all its terms and conditions for ' + 'copying, distributing or modifying the Program or works based on ' + 'it.\n' + '\n' + '6. Each time you redistribute the Program (or any work based on ' + 'the Program), the recipient automatically receives a license ' + 'from the original licensor to copy, distribute or modify the ' + 'Program subject to these terms and conditions. You may not ' + 'impose any further restrictions on the recipients\' exercise of ' + 'the rights granted herein. You are not responsible for enforcing ' + 'compliance by third parties to this License.\n' + '\n' + '7. If, as a consequence of a court judgment or allegation of ' + 'patent infringement or for any other reason (not limited to ' + 'patent issues), conditions are imposed on you (whether by court ' + 'order, agreement or otherwise) that contradict the conditions of ' + 'this License, they do not excuse you from the conditions of this ' + 'License. If you cannot distribute so as to satisfy ' + 'simultaneously your obligations under this License and any other ' + 'pertinent obligations, then as a consequence you may not ' + 'distribute the Program at all. For example, if a patent license ' + 'would not permit royalty-free redistribution of the Program by ' + 'all those who receive copies directly or indirectly through you, ' + 'then the only way you could satisfy both it and this License ' + 'would be to refrain entirely from distribution of the Program.\n' + '\n' + 'If any portion of this section is held invalid or unenforceable ' + 'under any particular circumstance, the balance of the section is ' + 'intended to apply and the section as a whole is intended to ' + 'apply in other circumstances.\n' + '\n' + 'It is not the purpose of this section to induce you to infringe ' + 'any patents or other property right claims or to contest ' + 'validity of any such claims; this section has the sole purpose ' + 'of protecting the integrity of the free software distribution ' + 'system, which is implemented by public license practices. Many ' + 'people have made generous contributions to the wide range of ' + 'software distributed through that system in reliance on ' + 'consistent application of that system; it is up to the ' + 'author/donor to decide if he or she is willing to distribute ' + 'software through any other system and a licensee cannot impose ' + 'that choice.\n' + '\n' + 'This section is intended to make thoroughly clear what is ' + 'believed to be a consequence of the rest of this License.\n' + '\n' + '8. If the distribution and/or use of the Program is restricted ' + 'in certain countries either by patents or by copyrighted ' + 'interfaces, the original copyright holder who places the Program ' + 'under this License may add an explicit geographical distribution ' + 'limitation excluding those countries, so that distribution is ' + 'permitted only in or among countries not thus excluded. In such ' + 'case, this License incorporates the limitation as if written in ' + 'the body of this License.\n' + '\n' + '9. The Free Software Foundation may publish revised and/or new ' + 'versions of the General Public License from time to time. Such ' + 'new versions will be similar in spirit to the present version, ' + 'but may differ in detail to address new problems or concerns.\n' + '\n' + 'Each version is given a distinguishing version number. If the ' + 'Program specifies a version number of this License which applies ' + 'to it and \"any later version\', you have the option of ' + 'following the terms and conditions either of that version or of ' + 'any later version published by the Free Software Foundation. If ' + 'the Program does not specify a version number of this License, ' + 'you may choose any version ever published by the Free Software ' + 'Foundation.\n' + '\n' + '10. If you wish to incorporate parts of the Program into other ' + 'free programs whose distribution conditions are different, write ' + 'to the author to ask for permission. For software which is ' + 'copyrighted by the Free Software Foundation, write to the Free ' + 'Software Foundation; we sometimes make exceptions for this. Our ' + 'decision will be guided by the two goals of preserving the free ' + 'status of all derivatives of our free software and of promoting ' + 'the sharing and reuse of software generally.\n' + '\n' + 'NO WARRANTY\n' + '\n' + '11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO ' + 'WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE ' + 'LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT ' + 'HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT ' + 'WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, ' + 'BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY ' + 'AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE ' + 'QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE ' + 'PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY ' + 'SERVICING, REPAIR OR CORRECTION.\n' + '\n' + '12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO ' + 'IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY ' + 'MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE ' + 'LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, ' + 'INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR ' + 'INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS ' + 'OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY ' + 'YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ' + 'ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ' + 'ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n' + '\n' + 'END OF TERMS AND CONDITIONS\n' + '\n' + 'How to Apply These Terms to Your New Programs\n' + '\n' + 'If you develop a new program, and you want it to be of the ' + 'greatest possible use to the public, the best way to achieve ' + 'this is to make it free software which everyone can redistribute ' + 'and change under these terms.\n' + '\n' + 'To do so, attach the following notices to the program. It is ' + 'safest to attach them to the start of each source file to most ' + 'effectively convey the exclusion of warranty; and each file ' + 'should have at least the "copyright" line and a pointer to where ' + 'the full notice is found.\n' + '\n' + '\n' + 'Copyright (C) \n' + '\n' + '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; either version 2 of ' + 'the License, or (at your option) any later version.\n' + '\n' + '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.\n' + '\n' + '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., 51 Franklin Street, Fifth Floor, ' + 'Boston, MA 02110-1301 USA.\n' + '\n' + 'Also add information on how to contact you by electronic and ' + 'paper mail.\n' + '\n' + 'If the program is interactive, make it output a short notice ' + 'like this when it starts in an interactive mode:\n' + '\n' + 'Gnomovision version 69, Copyright (C) year name of author\n' + 'Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type ' + '"show w".\n' + 'This is free software, and you are welcome to redistribute it ' + 'under certain conditions; type "show c" for details.\n' + '\n' + 'The hypothetical commands "show w" and "show c" should show ' + 'the appropriate parts of the General Public License. Of course, ' + 'the commands you use may be called something other than "show ' + 'w" and "show c"; they could even be mouse-clicks or menu items--' + 'whatever suits your program.\n' + '\n' + 'You should also get your employer (if you work as a programmer) ' + 'or your school, if any, to sign a "copyright disclaimer" for the ' + 'program, if necessary. Here is a sample; alter the names:\n' + '\n' + 'Yoyodyne, Inc., hereby disclaims all copyright interest in the ' + 'program "Gnomovision" (which makes passes at compilers) written ' + 'by James Hacker.\n' + '\n' + ', 1 April 1989\n' + 'Ty Coon, President of Vice\n' + '\n' + 'This General Public License does not permit incorporating your ' + 'program into proprietary programs. If your program is a ' + 'subroutine library, you may consider it more useful to permit ' + 'linking proprietary applications with the library. If this is ' + 'what you want to do, use the GNU Lesser General Public License ' + 'instead of this License.')) + self.AboutNotebook.setTabText( + self.AboutNotebook.indexOf(self.LicenseTab), self.trUtf8('License')) + self.ContributeButton.setText(self.trUtf8('Contribute')) + self.CloseButton.setText(self.trUtf8('Close')) + diff --git a/openlp/core/ui/aboutform.py b/openlp/core/ui/aboutform.py new file mode 100644 index 000000000..4d3056be9 --- /dev/null +++ b/openlp/core/ui/aboutform.py @@ -0,0 +1,56 @@ +# -*- coding: utf-8 -*- +# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4 + +############################################################################### +# OpenLP - Open Source Lyrics Projection # +# --------------------------------------------------------------------------- # +# Copyright (c) 2008-2009 Raoul Snyman # +# Portions copyright (c) 2008-2009 Martin Thompson, Tim Bentley, Carsten # +# Tinggaard, Jon Tibble, Jonathan Corwin, Maikel Stuivenberg, Scott Guerrieri # +# --------------------------------------------------------------------------- # +# 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 + +from openlp.core.lib import buildIcon +from aboutdialog import Ui_AboutDialog + +class AboutForm(QtGui.QDialog, Ui_AboutDialog): + """ + The About dialog + """ + + def __init__(self, parent, applicationVersion): + """ + Do some initialisation stuff + """ + QtGui.QDialog.__init__(self, parent) + self.applicationVersion = applicationVersion + self.setupUi(self) + self.AboutTextEdit.setPlainText( + self.AboutTextEdit.toPlainText()\ + .replace(u'', self.applicationVersion[u'version'])\ + .replace(u'', self.applicationVersion[u'build']) + ) + QtCore.QObject.connect(self.ContributeButton, + QtCore.SIGNAL(u'clicked()'), self.onContributeButtonClicked) + + def onContributeButtonClicked(self): + """ + Launch a web browser and go to the contribute page on the site. + """ + import webbrowser + url = "http://www.openlp.org/en/documentation/introduction/contributing.html" + webbrowser.open_new(url) diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 114a2438c..9db8b7dd3 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -539,14 +539,14 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): """ Checks the version of the Application called from openlp.pyw """ - applicationVersion = self.applicationVersion[u'Full'] - version = check_latest_version(self.generalConfig, applicationVersion) - if applicationVersion != version: + app_version = self.applicationVersion[u'full'] + version = check_latest_version(self.generalConfig, app_version) + if app_version != version: version_text = unicode(self.trUtf8(u'OpenLP version %s has been updated ' u'to version %s\n\nYou can obtain the latest version from http://openlp.org')) QtGui.QMessageBox.question(None, self.trUtf8(u'OpenLP Version Updated'), - version_text % (applicationVersion, version), + version_text % (app_version, version), QtGui.QMessageBox.StandardButtons(QtGui.QMessageBox.Ok), QtGui.QMessageBox.Ok) diff --git a/openlp/core/utils/__init__.py b/openlp/core/utils/__init__.py index 4cc1ddc3f..58e393344 100644 --- a/openlp/core/utils/__init__.py +++ b/openlp/core/utils/__init__.py @@ -42,7 +42,7 @@ def check_latest_version(config, current_version): if lastTest != thisTest: version_string = u'' req = urllib2.Request(u'http://www.openlp.org/files/version.txt') - req.add_header(u'User-Agent', u'OpenLP%s' % current_version) + req.add_header(u'User-Agent', u'OpenLP/%s' % current_version) try: handle = urllib2.urlopen(req, None) html = handle.read() diff --git a/resources/forms/about.ui b/resources/forms/about.ui index a7d25750d..c0e72d97f 100644 --- a/resources/forms/about.ui +++ b/resources/forms/about.ui @@ -6,7 +6,7 @@ 0 0 - 470 + 516 481 @@ -25,30 +25,18 @@ 8 - - - false - - - background-color: rgb(255, 255, 255); - - - QFrame::StyledPanel - - - 1 - + - :/graphics/about-new.bmp + :/graphics/openlp-about-logo.png false - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + 0 @@ -57,89 +45,33 @@ 0 - + - License + About - + - 8 + 0 8 - - - Copyright © 2004-2008 openlp.org Foundation - - - - - - - openlp.org is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - Qt::AlignJustify|Qt::AlignVCenter - - + + true - - - - - - 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; either version 2 of the License, or (at your option) any later version. - - - Qt::AlignJustify|Qt::AlignVCenter - - - true + + OpenLP <version> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - 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. - - - Qt::AlignJustify|Qt::AlignVCenter - - - true - - - - - - - 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. - - - Qt::AlignJustify|Qt::AlignVCenter - - - true - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - @@ -154,7 +86,7 @@ 8 - + true @@ -167,8 +99,165 @@ Developers Jonathan "gushie" Corwin Scott "sguerrieri" Guerrieri Raoul "superfly" Snyman + Maikel Stuivenberg Martin "mijiti" Thompson - Carsten "catini" Tingaard + Carsten "catini" Tingaard + +Testers + Wesley "wrst" Stout + + + + + + + + License + + + + 8 + + + 8 + + + + + true + + + Copyright © 2004-2009 Raoul Snyman +Portions copyright © 2004-2009 Tim Bentley, Jonathan Corwin, Scott Guerrieri, Maikel Stuivenberg, Martin Thompson, Carsten Tinggaard, Jon Tibble + +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 below for more details. + + +GNU GENERAL PUBLIC LICENSE +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification follow. + +GNU GENERAL PUBLIC LICENSE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + +a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + +b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. + +c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: + +a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + +<one line to give the program's name and a brief idea of what it does.> +Copyright (C) <year> <name of author> + +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; either version 2 of the License, or (at your option) any later version. + +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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it starts in an interactive mode: + +Gnomovision version 69, Copyright (C) year name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. +This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: + +Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. + +<signature of Ty Coon>, 1 April 1989 +Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. @@ -203,6 +292,10 @@ Developers Contribute + + + :/system/system_contribute.png:/system/system_contribute.png + @@ -210,6 +303,10 @@ Developers Close + + + :/slides/slide_close.png:/slides/slide_close.png + diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc index ebc0f5995..c9d81cf89 100644 --- a/resources/images/openlp-2.qrc +++ b/resources/images/openlp-2.qrc @@ -40,10 +40,7 @@ openlp-logo-256x256.png - splash-screen-new.bmp - about-new.bmp openlp-about-logo.png - openlp-splash-screen.svg openlp-splash-screen.png @@ -89,12 +86,14 @@ service_save.png + system_close.png system_about.png system_help_contents.png system_add.png system_live.png system_preview.png system_mediamanager.png + system_contribute.png system_servicemanager.png system_thememanager.png system_exit.png diff --git a/resources/images/openlp-about-logo.png b/resources/images/openlp-about-logo.png index f313cb94e2f989eb5d2337e1d3e990171ebbdbc5..6b689c53368bc25bce7031caddbfd6d0cd06322e 100644 GIT binary patch literal 28481 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 + - - - + inkscape:window-height="961" + inkscape:window-x="-3" + inkscape:window-y="-4" + inkscape:window-maximized="1" /> @@ -181,6 +175,7 @@ image/svg+xml + @@ -190,156 +185,119 @@ id="layer1"> + transform="translate(2,-1.855689)"> - - - - - - - - + transform="translate(10.906171,-82.92308)"> + style="fill:#000d26;fill-opacity:1;stroke:#ffffff;stroke-width:1.69103849;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"> + d="m 801.444,1038.553 15.617,0 c 18.862,0 28.496,10.444 28.496,25.961 0,15.212 -9.634,25.859 -28.496,25.859 l -8.316,0 0,17.139 -7.301,0 0,-68.959 0,0 z m 15.211,45.431 c 15.517,0 21.297,-8.112 21.297,-19.471 0,-11.359 -5.78,-19.471 -21.297,-19.471 l -7.91,0 0,38.941 7.91,0 0,10e-4 z" + style="fill:#000d26;fill-opacity:1;stroke:#ffffff;stroke-width:1.69103849;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + d="m 852.858,1038.553 41.984,0 0,6.49 -34.684,0 0,32.35 30.931,0 0,6.389 -30.931,0 0,17.24 36.103,0 0,6.49 -43.403,0 0,-68.959 z" + style="fill:#000d26;fill-opacity:1;stroke:#ffffff;stroke-width:1.69103849;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + d="m 913.197,1059.545 c -1.927,-2.333 -4.767,-6.39 -4.767,-6.39 0,0 0.608,4.868 0.608,7.81 l 0,46.547 -6.896,0 0,-69.669 1.217,0 41.173,48.677 c 1.927,2.333 4.259,5.163 4.259,5.163 0,0 0,-3.642 0,-6.582 l 0,-46.548 6.795,0 0,69.669 -1.217,0 -41.172,-48.677 z" + style="fill:#000d26;fill-opacity:1;stroke:#ffffff;stroke-width:1.69103849;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + d="m 677.015,1070.032 c 0,-34.836 26.253,-58.564 58.564,-58.564 32.311,0 58.564,23.729 58.564,58.564 0,34.835 -26.253,58.564 -58.564,58.564 -32.311,0 -58.564,-23.728 -58.564,-58.564 z m 110.06,0 c 0,-29.955 -22.045,-52.338 -51.496,-52.338 -29.451,0 -51.496,22.383 -51.496,52.338 0,29.956 22.045,52.338 51.496,52.338 29.451,0 51.496,-22.382 51.496,-52.338 z" + style="fill:#000d26;fill-opacity:1;stroke:#ffffff;stroke-width:1.69103849;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + d="m 967.521,1012.814 23.561,0 0,93.737 51.833,0 0,20.699 -75.394,0 0,-114.436 z" + style="fill:#000d26;fill-opacity:1;stroke:#ffffff;stroke-width:1.69103849;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + d="m 1054.85,1012.814 31.639,0 c 31.975,0 51.16,16.661 51.16,44.26 0,27.6 -19.354,44.092 -51.16,44.092 l -8.078,0 0,26.085 -23.561,0 0,-114.437 z m 30.965,67.653 c 19.185,0 27.599,-7.741 27.599,-23.393 0,-15.819 -8.751,-23.561 -27.599,-23.561 l -7.405,0 0,46.953 7.405,0 0,0 z" + style="fill:#000d26;fill-opacity:1;stroke:#ffffff;stroke-width:1.69103849;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> - diff --git a/resources/images/system_close.png b/resources/images/system_close.png new file mode 100644 index 0000000000000000000000000000000000000000..2c2f99eb46be90636f98984936190752350370af GIT binary patch literal 813 zcmV+|1JeA7P)E-4*}<0=h{= zK~#9!WzSn^)dc{@@z4K%&e_h+uIFq=%jRlhi`pDHEu;s75`r%D5=B@K77|LMhcYtB zu_)9aeCwfntVjt2>7mQOAXr+9^^#1|9GtD`ZtZrqbGCB}A8nt9-{Tj40h@h9LxO!V z9temQ$rQNw4io<8j=*th8yKhw!#7%Y@2*Yv^ax`yi{s-m!^7olE_Z&Nw~vw86c}Jj z6W_OP-`>~P->3c$VnnTx?4w_de8rShOxK5(ZQP zN|Z|!OC5~hy?t0~b6;C=n z)zxm_N=G8;IHwSVh$J|ijD%uMd4=Yrnr+*49Xe*Zv@SC@uH(%k>N`8dd%G=7PDs_) zOYq`*G)E4Q?%sk^EO23`--RVK`hNN^?k3WC<(delcw71NvYRrn(QjIEF!*z;P z2uhTT6iX}?Q+l6#4nX_Phs8U3RT`;kCQ?HTF$&>1CPG%%bL18opHJB{Fr;&U2HSaeDWsC5=5FFCVs!)oxmmJTNUXBK&;g!bWF-JV!{;2kpSPBY zt%j7V5fT=NZ_tEgE_}eDQKnIe0AT%Feu*)BAN9$KbX`#*QJ}75wan!|7&yquoBWFk r1U3tiK&qRTdZHuDlvzL)B>?yjfS~`FyINaO00000NkvXXu0mjf;$wU` literal 0 HcmV?d00001 diff --git a/resources/images/system_contribute.png b/resources/images/system_contribute.png new file mode 100644 index 0000000000000000000000000000000000000000..39b0e0016e7c8a855cdfab5154612bbf9aa6a03e GIT binary patch literal 822 zcmV-61Ihe}P)V6ht4z%MCD2qt@sc2# zQTehS#4NhlgBJ9Z)=ACQJ6KnHs@`cGw;sZ=A64a{~koKUVQMt zfx`#q*{g2W$JT_nY;Ms?UBPWOm^$lCpn`pjoFnq)eoK6S0d=WV^K3P_f5&HA) z&Fdx3T{4;x(b}nTO|87Lar&PL0HE?l4(l%V!`YLbNKH<{50x7F)fHECdX+eqUsrk$I9yfkG5b@Qc0)@e7hH2A;txXe*Yg3?hjTj!%5}&_xK<3LsXaEni zV-&C(@uK$qByh+DwR%DkdL|q(F;VdH_5sbKFt@mY^C{6pfWJQ+Mjc#+K}Z-1y}xuQ zx|CdaK=80EqrR}XHM^I653&idYU|)i1V;zd`12An`clrj$Ugzhh%L=cR77t9CK~X#e zOTA&!t1vY=UBhW<=};ylC1$TK&4L3n;^Sh`(4|Ife56fYUe5=Blt|wh+M^8@GIPNt z0m3o}n{5Rz-!w&W1Oh$=)LQt61@IU1v9UUf5UD4=Du)Pp`JTWGwUyS?_^!U~n<6SU zB2eh=>9^I<-r1dX&byTJTRZw(x8h1ASgRm2B@8k@AzIt}otlw}xBCt$2CTCH@(y3% zll_8aS+FdK01?ED5aA31SydI>_VA;VIPN?D1)2OUjUdy$D*ylh07*qoM6N<$f;2~Y ANB{r; literal 0 HcmV?d00001