openlp/openlp/core/ui/settingsform.py

210 lines
9.1 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2012-12-29 13:35:16 +00:00
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
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/>. #
##########################################################################
2010-06-10 21:30:50 +00:00
"""
The :mod:`settingsform` provides a user interface for the OpenLP settings
"""
import logging
2015-11-07 00:49:40 +00:00
from PyQt5 import QtCore, QtWidgets
2019-01-20 09:29:47 +00:00
from openlp.core.state import State
from openlp.core.api.tab import ApiTab
2017-10-23 22:09:57 +00:00
from openlp.core.common.mixins import RegistryProperties
from openlp.core.common.registry import Registry
2019-04-09 17:21:35 +00:00
from openlp.core.common.settings import Settings
from openlp.core.lib import build_icon
from openlp.core.projectors.tab import ProjectorTab
from openlp.core.ui.advancedtab import AdvancedTab
from openlp.core.ui.generaltab import GeneralTab
2018-10-02 04:39:42 +00:00
from openlp.core.ui.screenstab import ScreensTab
from openlp.core.ui.themestab import ThemesTab
2019-01-20 16:20:45 +00:00
from openlp.core.ui.media.mediatab import MediaTab
2017-10-07 07:05:07 +00:00
from openlp.core.ui.settingsdialog import Ui_SettingsDialog
2010-03-04 22:09:03 +00:00
log = logging.getLogger(__name__)
2013-02-01 21:34:23 +00:00
2015-11-07 00:49:40 +00:00
class SettingsForm(QtWidgets.QDialog, Ui_SettingsDialog, RegistryProperties):
2010-06-10 21:30:50 +00:00
"""
Provide the form to manipulate the settings for OpenLP
"""
2013-01-23 19:53:40 +00:00
def __init__(self, parent=None):
2010-06-10 21:30:50 +00:00
"""
Initialise the settings form
"""
2013-08-31 18:17:38 +00:00
Registry().register('settings_form', self)
2013-12-31 20:29:03 +00:00
Registry().register_function('bootstrap_post_set_up', self.bootstrap_post_set_up)
super(SettingsForm, self).__init__(parent, QtCore.Qt.WindowSystemMenuHint | QtCore.Qt.WindowTitleHint |
QtCore.Qt.WindowCloseButtonHint)
2013-03-10 20:19:42 +00:00
self.processes = []
self.setup_ui(self)
self.setting_list_widget.currentRowChanged.connect(self.list_item_changed)
self.general_tab = None
self.themes_tab = None
self.projector_tab = None
self.advanced_tab = None
self.api_tab = None
2011-04-12 17:45:32 +00:00
2015-11-07 00:49:40 +00:00
def exec(self):
2013-02-01 21:34:23 +00:00
"""
Execute the form
"""
2017-06-17 08:51:01 +00:00
# load all the widgets
self.setting_list_widget.blockSignals(True)
2013-03-16 20:52:59 +00:00
self.setting_list_widget.clear()
while self.stacked_layout.count():
2011-10-11 19:54:18 +00:00
# take at 0 and the rest shuffle up.
2013-03-16 20:52:59 +00:00
self.stacked_layout.takeAt(0)
self.insert_tab(self.general_tab)
self.insert_tab(self.advanced_tab)
self.insert_tab(self.screens_tab)
self.insert_tab(self.themes_tab)
2019-04-09 17:21:35 +00:00
if Settings().value('core/experimental'):
self.insert_tab(self.player_tab)
2014-10-28 20:45:53 +00:00
self.insert_tab(self.projector_tab)
self.insert_tab(self.api_tab)
2019-01-20 09:29:47 +00:00
for plugin in State().list_plugins():
2013-03-19 19:43:22 +00:00
if plugin.settings_tab:
self.insert_tab(plugin.settings_tab, plugin.is_active())
2013-03-16 20:52:59 +00:00
self.setting_list_widget.setCurrentRow(0)
self.setting_list_widget.blockSignals(False)
2015-11-07 00:49:40 +00:00
return QtWidgets.QDialog.exec(self)
def insert_tab(self, tab_widget, is_visible=True):
2010-06-10 21:30:50 +00:00
"""
Add a tab to the form at a specific location
:param tab_widget: The widget to add
:param is_visible: If this tab should be visible
2010-06-10 21:30:50 +00:00
"""
2016-05-20 16:22:06 +00:00
log.debug('Inserting {text} tab'.format(text=tab_widget.tab_title))
2011-04-18 15:31:20 +00:00
# add the tab to get it to display in the correct part of the screen
self.stacked_layout.addWidget(tab_widget)
if is_visible:
2015-11-07 00:49:40 +00:00
list_item = QtWidgets.QListWidgetItem(build_icon(tab_widget.icon_path), tab_widget.tab_title_visible)
list_item.setData(QtCore.Qt.UserRole, tab_widget.tab_title)
self.setting_list_widget.addItem(list_item)
2017-06-17 08:51:01 +00:00
tab_widget.load()
def accept(self):
2010-06-10 21:30:50 +00:00
"""
Process the form saving the settings
"""
2013-08-31 18:17:38 +00:00
log.debug('Processing settings exit')
# We add all the forms into the stacked layout, even if the plugin is inactive,
# but we don't add the item to the list on the side if the plugin is inactive,
# so loop through the list items, and then find the tab for that item.
for item_index in range(self.setting_list_widget.count()):
# Get the list item
list_item = self.setting_list_widget.item(item_index)
if not list_item:
continue
# Now figure out if there's a tab for it, and save the tab.
plugin_name = list_item.data(QtCore.Qt.UserRole)
for tab_index in range(self.stacked_layout.count()):
tab_widget = self.stacked_layout.widget(tab_index)
if tab_widget.tab_title == plugin_name:
tab_widget.save()
# if the image background has been changed we need to regenerate the image cache
2013-08-31 18:17:38 +00:00
if 'images_config_updated' in self.processes or 'config_screen_changed' in self.processes:
self.register_post_process('images_regenerate')
2013-03-17 09:21:18 +00:00
# Now lets process all the post save handlers
2013-03-10 20:19:42 +00:00
while self.processes:
Registry().execute(self.processes.pop(0))
2015-11-07 00:49:40 +00:00
return QtWidgets.QDialog.accept(self)
2009-08-29 07:17:56 +00:00
def reject(self):
"""
Process the form saving the settings
"""
2013-03-10 20:19:42 +00:00
self.processes = []
# Same as accept(), we need to loop over the visible tabs, and skip the inactive ones
for item_index in range(self.setting_list_widget.count()):
# Get the list item
list_item = self.setting_list_widget.item(item_index)
if not list_item:
continue
# Now figure out if there's a tab for it, and save the tab.
plugin_name = list_item.data(QtCore.Qt.UserRole)
for tab_index in range(self.stacked_layout.count()):
tab_widget = self.stacked_layout.widget(tab_index)
if tab_widget.tab_title == plugin_name:
tab_widget.cancel()
2015-11-07 00:49:40 +00:00
return QtWidgets.QDialog.reject(self)
2013-12-31 20:29:03 +00:00
def bootstrap_post_set_up(self):
2010-06-10 21:30:50 +00:00
"""
Run any post-setup code for the tabs on the form
"""
2019-03-24 07:53:19 +00:00
try:
self.general_tab = GeneralTab(self)
self.themes_tab = ThemesTab(self)
self.projector_tab = ProjectorTab(self)
self.advanced_tab = AdvancedTab(self)
2019-04-09 17:21:35 +00:00
if Settings().value('core/experimental'):
self.player_tab = MediaTab(self)
2019-03-24 07:53:19 +00:00
self.api_tab = ApiTab(self)
self.screens_tab = ScreensTab(self)
except Exception as e:
print(e)
2013-03-16 20:52:59 +00:00
self.general_tab.post_set_up()
self.themes_tab.post_set_up()
self.advanced_tab.post_set_up()
2019-04-09 17:21:35 +00:00
if Settings().value('core/experimental'):
self.player_tab.post_set_up()
self.api_tab.post_set_up()
2019-01-20 09:29:47 +00:00
for plugin in State().list_plugins():
2013-03-19 19:43:22 +00:00
if plugin.settings_tab:
plugin.settings_tab.post_set_up()
def list_item_changed(self, item_index):
"""
A different settings tab is selected
:param item_index: The index of the item that was selected
"""
# Get the item we clicked on
list_item = self.setting_list_widget.item(item_index)
# Quick exit to the left if the item doesn't exist (maybe -1?)
if not list_item:
return
# Loop through the list of tabs in the stacked layout
for tab_index in range(self.stacked_layout.count()):
# Get the widget
tab_widget = self.stacked_layout.itemAt(tab_index).widget()
# Check that the title of the tab (i.e. plugin name) is the same as the data in the list item
if tab_widget.tab_title == list_item.data(QtCore.Qt.UserRole):
# Make the matching tab visible
tab_widget.tab_visited = True
self.stacked_layout.setCurrentIndex(tab_index)
self.stacked_layout.currentWidget().tab_visible()
2013-03-10 20:19:42 +00:00
def register_post_process(self, function):
"""
2013-03-10 20:19:42 +00:00
Register for updates to be done on save removing duplicate functions
2014-03-17 19:05:55 +00:00
:param function: The function to be called
"""
2014-04-12 20:19:22 +00:00
if function not in self.processes:
2014-03-20 19:10:31 +00:00
self.processes.append(function)