forked from openlp/openlp
Add option to Custom to suppress the footer.
Not always needed for Copyright. Default Required
This commit is contained in:
parent
f7f0f18142
commit
d676430ffa
@ -27,7 +27,7 @@ import logging
|
|||||||
|
|
||||||
from forms import EditCustomForm
|
from forms import EditCustomForm
|
||||||
from openlp.core.lib import Plugin, build_icon
|
from openlp.core.lib import Plugin, build_icon
|
||||||
from openlp.plugins.custom.lib import CustomManager, CustomMediaItem
|
from openlp.plugins.custom.lib import CustomManager, CustomMediaItem, CustomTab
|
||||||
|
|
||||||
|
|
||||||
class CustomPlugin(Plugin):
|
class CustomPlugin(Plugin):
|
||||||
@ -51,6 +51,9 @@ class CustomPlugin(Plugin):
|
|||||||
self.edit_custom_form = EditCustomForm(self.custommanager)
|
self.edit_custom_form = EditCustomForm(self.custommanager)
|
||||||
self.icon = build_icon(u':/media/media_custom.png')
|
self.icon = build_icon(u':/media/media_custom.png')
|
||||||
|
|
||||||
|
def get_settings_tab(self):
|
||||||
|
return CustomTab(self.name)
|
||||||
|
|
||||||
def get_media_manager_item(self):
|
def get_media_manager_item(self):
|
||||||
# Create the CustomManagerItem object
|
# Create the CustomManagerItem object
|
||||||
return CustomMediaItem(self, self.icon, self.name)
|
return CustomMediaItem(self, self.icon, self.name)
|
||||||
|
@ -25,3 +25,4 @@
|
|||||||
|
|
||||||
from manager import CustomManager
|
from manager import CustomManager
|
||||||
from mediaitem import CustomMediaItem
|
from mediaitem import CustomMediaItem
|
||||||
|
from customtab import CustomTab
|
||||||
|
74
openlp/plugins/custom/lib/customtab.py
Normal file
74
openlp/plugins/custom/lib/customtab.py
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
# -*- 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 Tim Bentley, Jonathan Corwin, Michael #
|
||||||
|
# Gorven, Scott Guerrieri, Maikel Stuivenberg, Martin Thompson, Jon Tibble, #
|
||||||
|
# Carsten Tinggaard #
|
||||||
|
# --------------------------------------------------------------------------- #
|
||||||
|
# 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 SettingsTab, str_to_bool
|
||||||
|
|
||||||
|
class CustomTab(SettingsTab):
|
||||||
|
"""
|
||||||
|
CustomTab is the Custom settings tab in the settings dialog.
|
||||||
|
"""
|
||||||
|
def __init__(self, title, section=None):
|
||||||
|
SettingsTab.__init__(self, title, section)
|
||||||
|
|
||||||
|
def setupUi(self):
|
||||||
|
self.setObjectName(u'CustomTab')
|
||||||
|
self.tabTitleVisible = self.trUtf8('Custom')
|
||||||
|
self.CustomLayout = QtGui.QFormLayout(self)
|
||||||
|
self.CustomLayout.setObjectName(u'CustomLayout')
|
||||||
|
self.CustomModeGroupBox = QtGui.QGroupBox(self)
|
||||||
|
self.CustomModeGroupBox.setObjectName(u'CustomModeGroupBox')
|
||||||
|
self.CustomModeLayout = QtGui.QVBoxLayout(self.CustomModeGroupBox)
|
||||||
|
self.CustomModeLayout.setSpacing(8)
|
||||||
|
self.CustomModeLayout.setMargin(8)
|
||||||
|
self.CustomModeLayout.setObjectName(u'CustomModeLayout')
|
||||||
|
self.DisplayFooterCheckBox = QtGui.QCheckBox(self.CustomModeGroupBox)
|
||||||
|
self.DisplayFooterCheckBox.setObjectName(u'DisplayFooterCheckBox')
|
||||||
|
self.CustomModeLayout.addWidget(self.DisplayFooterCheckBox)
|
||||||
|
self.CustomLayout.setWidget(
|
||||||
|
0, QtGui.QFormLayout.LabelRole, self.CustomModeGroupBox)
|
||||||
|
QtCore.QObject.connect(self.DisplayFooterCheckBox,
|
||||||
|
QtCore.SIGNAL(u'stateChanged(int)'),
|
||||||
|
self.onDisplayFooterCheckBoxChanged)
|
||||||
|
|
||||||
|
def retranslateUi(self):
|
||||||
|
self.CustomModeGroupBox.setTitle(self.trUtf8('Custom Display'))
|
||||||
|
self.DisplayFooterCheckBox.setText(
|
||||||
|
self.trUtf8('Suppress display of footer:'))
|
||||||
|
|
||||||
|
def onDisplayFooterCheckBoxChanged(self, check_state):
|
||||||
|
self.displayFooter = False
|
||||||
|
# we have a set value convert to True/False
|
||||||
|
if check_state == QtCore.Qt.Checked:
|
||||||
|
self.displayFooter = True
|
||||||
|
|
||||||
|
def load(self):
|
||||||
|
self.displayFooter = str_to_bool(
|
||||||
|
self.config.get_config(u'display footer', True))
|
||||||
|
self.DisplayFooterCheckBox.setChecked(self.displayFooter)
|
||||||
|
|
||||||
|
def save(self):
|
||||||
|
self.config.set_config(u'display footer', unicode(self.displayFooter))
|
@ -27,7 +27,8 @@ import logging
|
|||||||
|
|
||||||
from PyQt4 import QtCore, QtGui
|
from PyQt4 import QtCore, QtGui
|
||||||
|
|
||||||
from openlp.core.lib import MediaManagerItem, SongXMLParser, BaseListWithDnD, Receiver
|
from openlp.core.lib import MediaManagerItem, SongXMLParser, BaseListWithDnD,\
|
||||||
|
Receiver, str_to_bool
|
||||||
|
|
||||||
class CustomListView(BaseListWithDnD):
|
class CustomListView(BaseListWithDnD):
|
||||||
def __init__(self, parent=None):
|
def __init__(self, parent=None):
|
||||||
@ -155,9 +156,12 @@ class CustomMediaItem(MediaManagerItem):
|
|||||||
verseList = songXML.get_verses()
|
verseList = songXML.get_verses()
|
||||||
for verse in verseList:
|
for verse in verseList:
|
||||||
raw_slides.append(verse[1])
|
raw_slides.append(verse[1])
|
||||||
raw_footer.append(title + u' '+ credit)
|
|
||||||
service_item.title = title
|
service_item.title = title
|
||||||
for slide in raw_slides:
|
for slide in raw_slides:
|
||||||
service_item.add_from_text(slide[:30], slide)
|
service_item.add_from_text(slide[:30], slide)
|
||||||
|
if str_to_bool(self.parent.config.get_config(u'display footer', True)):
|
||||||
|
raw_footer.append(title + u' '+ credit)
|
||||||
|
else:
|
||||||
|
raw_footer.append(u'')
|
||||||
service_item.raw_footer = raw_footer
|
service_item.raw_footer = raw_footer
|
||||||
return True
|
return True
|
||||||
|
Loading…
Reference in New Issue
Block a user