forked from openlp/openlp
105 lines
6.4 KiB
Python
105 lines
6.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
|
|
|
|
###############################################################################
|
|
# OpenLP - Open Source Lyrics Projection #
|
|
# --------------------------------------------------------------------------- #
|
|
# Copyright (c) 2008-2016 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; 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 #
|
|
###############################################################################
|
|
"""
|
|
The GUI widgets of the exception dialog.
|
|
"""
|
|
|
|
from PyQt5 import QtGui, QtWidgets
|
|
|
|
from openlp.core.lib import translate, build_icon
|
|
from openlp.core.lib.ui import create_button, create_button_box
|
|
|
|
|
|
class Ui_ExceptionDialog(object):
|
|
"""
|
|
The GUI widgets of the exception dialog.
|
|
"""
|
|
def setupUi(self, exception_dialog):
|
|
"""
|
|
Set up the UI.
|
|
"""
|
|
exception_dialog.setObjectName('exception_dialog')
|
|
exception_dialog.setWindowIcon(build_icon(u':/icon/openlp-logo.svg'))
|
|
self.exception_layout = QtWidgets.QVBoxLayout(exception_dialog)
|
|
self.exception_layout.setObjectName('exception_layout')
|
|
self.message_layout = QtWidgets.QHBoxLayout()
|
|
self.message_layout.setObjectName('messageLayout')
|
|
self.message_layout.addSpacing(12)
|
|
self.bug_label = QtWidgets.QLabel(exception_dialog)
|
|
self.bug_label.setPixmap(QtGui.QPixmap(':/graphics/exception.png'))
|
|
self.bug_label.setSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed)
|
|
self.bug_label.setObjectName('bug_label')
|
|
self.message_layout.addWidget(self.bug_label)
|
|
self.message_layout.addSpacing(12)
|
|
self.message_label = QtWidgets.QLabel(exception_dialog)
|
|
self.message_label.setWordWrap(True)
|
|
self.message_label.setObjectName('message_label')
|
|
self.message_layout.addWidget(self.message_label)
|
|
self.exception_layout.addLayout(self.message_layout)
|
|
self.description_explanation = QtWidgets.QLabel(exception_dialog)
|
|
self.description_explanation.setObjectName('description_explanation')
|
|
self.exception_layout.addWidget(self.description_explanation)
|
|
self.description_text_edit = QtWidgets.QPlainTextEdit(exception_dialog)
|
|
self.description_text_edit.setObjectName('description_text_edit')
|
|
self.exception_layout.addWidget(self.description_text_edit)
|
|
self.description_word_count = QtWidgets.QLabel(exception_dialog)
|
|
self.description_word_count.setObjectName('description_word_count')
|
|
self.exception_layout.addWidget(self.description_word_count)
|
|
self.exception_text_edit = QtWidgets.QPlainTextEdit(exception_dialog)
|
|
self.exception_text_edit.setReadOnly(True)
|
|
self.exception_text_edit.setObjectName('exception_text_edit')
|
|
self.exception_layout.addWidget(self.exception_text_edit)
|
|
self.send_report_button = create_button(exception_dialog, 'send_report_button',
|
|
icon=':/general/general_email.png',
|
|
click=self.on_send_report_button_clicked)
|
|
self.save_report_button = create_button(exception_dialog, 'save_report_button',
|
|
icon=':/general/general_save.png',
|
|
click=self.on_save_report_button_clicked)
|
|
self.attach_tile_button = create_button(exception_dialog, 'attach_tile_button',
|
|
icon=':/general/general_open.png',
|
|
click=self.on_attach_file_button_clicked)
|
|
self.button_box = create_button_box(exception_dialog, 'button_box', ['close'],
|
|
[self.send_report_button, self.save_report_button, self.attach_tile_button])
|
|
self.exception_layout.addWidget(self.button_box)
|
|
|
|
self.retranslateUi(exception_dialog)
|
|
self.description_text_edit.textChanged.connect(self.on_description_updated)
|
|
|
|
def retranslateUi(self, exception_dialog):
|
|
"""
|
|
Translate the widgets on the fly.
|
|
"""
|
|
exception_dialog.setWindowTitle(translate('OpenLP.ExceptionDialog', 'Error Occurred'))
|
|
self.description_explanation.setText(
|
|
translate('OpenLP.ExceptionDialog', 'Please enter a description of what you were doing to cause this error.'
|
|
' If possible, write in English.'
|
|
'\n(Minimum 20 characters)'))
|
|
self.message_label.setText(
|
|
translate('OpenLP.ExceptionDialog', 'Oops! OpenLP hit a problem, and couldn\'t recover. The text in the '
|
|
'box below contains information that might be helpful to the OpenLP '
|
|
'developers, so please e-mail it to bugs@openlp.org, along with a '
|
|
'detailed description of what you were doing when the problem '
|
|
'occurred. Also attach any files that triggered the problem.'))
|
|
self.send_report_button.setText(translate('OpenLP.ExceptionDialog', 'Send E-Mail'))
|
|
self.save_report_button.setText(translate('OpenLP.ExceptionDialog', 'Save to File'))
|
|
self.attach_tile_button.setText(translate('OpenLP.ExceptionDialog', 'Attach File'))
|