openlp/openlp/core/ui/aboutform.py

69 lines
2.9 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2019-04-13 13:00:22 +00:00
##########################################################################
# OpenLP - Open Source Lyrics Projection #
# ---------------------------------------------------------------------- #
# Copyright (c) 2008-2019 OpenLP Developers #
# ---------------------------------------------------------------------- #
# 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 3 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, see <https://www.gnu.org/licenses/>. #
##########################################################################
2013-02-01 19:58:18 +00:00
"""
The About dialog.
"""
2015-01-11 19:46:41 +00:00
import webbrowser
from PyQt5 import QtCore, QtWidgets
2017-10-07 07:05:07 +00:00
from openlp.core.common.i18n import translate
2017-12-28 08:27:44 +00:00
from openlp.core.version import get_version
2018-10-02 04:39:42 +00:00
2015-01-11 19:46:41 +00:00
from .aboutdialog import UiAboutDialog
2013-02-01 19:58:18 +00:00
2015-11-07 00:49:40 +00:00
class AboutForm(QtWidgets.QDialog, UiAboutDialog):
"""
The About dialog
"""
2011-03-25 16:29:39 +00:00
def __init__(self, parent):
"""
Do some initialisation stuff
"""
super(AboutForm, self).__init__(parent, QtCore.Qt.WindowSystemMenuHint | QtCore.Qt.WindowTitleHint |
QtCore.Qt.WindowCloseButtonHint)
2015-01-11 19:46:41 +00:00
self._setup()
def _setup(self):
"""
Set up the dialog. This method is mocked out in tests.
"""
self.setup_ui(self)
self.button_box.buttons()[0].setFocus()
2017-09-09 05:19:22 +00:00
application_version = get_version()
2019-08-22 19:55:59 +00:00
about_text = self.about_text_edit.toHtml()
about_text = about_text.replace('{version}', application_version['version'])
2013-08-31 18:17:38 +00:00
if application_version['build']:
2016-05-20 16:22:06 +00:00
build_text = translate('OpenLP.AboutForm', ' build {version}').format(version=application_version['build'])
else:
2013-08-31 18:17:38 +00:00
build_text = ''
about_text = about_text.replace('{revision}', build_text)
2019-08-22 19:55:59 +00:00
self.about_text_edit.setHtml(about_text)
self.contribute_button.clicked.connect(self.on_contribute_button_clicked)
def on_contribute_button_clicked(self):
"""
Launch a web browser and go to the contribute page on the site.
"""
2019-08-22 19:55:59 +00:00
webbrowser.open_new('http://openlp.org/contribute')