openlp/openlp/plugins/bibles/bibleplugin.py

103 lines
4.4 KiB
Python
Raw Normal View History

2008-11-28 20:30:59 +00:00
# -*- coding: utf-8 -*-
# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4
###############################################################################
# OpenLP - Open Source Lyrics Projection #
# --------------------------------------------------------------------------- #
2009-12-31 12:52:01 +00:00
# Copyright (c) 2008-2010 Raoul Snyman #
# Portions copyright (c) 2008-2010 Tim Bentley, Jonathan Corwin, Michael #
2010-03-21 23:58:01 +00:00
# Gorven, Scott Guerrieri, Christian Richter, 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 #
###############################################################################
import logging
2008-11-28 20:30:59 +00:00
from PyQt4 import QtCore, QtGui
from openlp.core.lib import Plugin, build_icon, PluginStatus, translate
from openlp.plugins.bibles.lib import BibleManager, BiblesTab, BibleMediaItem
2009-01-20 19:50:37 +00:00
2010-02-27 15:31:23 +00:00
log = logging.getLogger(__name__)
class BiblePlugin(Plugin):
log.info(u'Bible Plugin loaded')
def __init__(self, plugin_helpers):
2010-02-06 10:33:33 +00:00
Plugin.__init__(self, u'Bibles', u'1.9.1', plugin_helpers)
self.weight = -9
self.icon = build_icon(u':/media/media_bible.png')
#Register the bible Manager
2010-02-06 10:33:33 +00:00
self.status = PluginStatus.Active
2010-02-04 17:38:21 +00:00
self.manager = None
2009-10-08 05:02:39 +00:00
def initialise(self):
log.info(u'bibles Initialising')
2010-02-04 17:38:21 +00:00
if self.manager is None:
2010-04-27 16:27:57 +00:00
self.manager = BibleManager(self)
2009-10-08 05:02:39 +00:00
Plugin.initialise(self)
2009-10-30 20:34:11 +00:00
self.insert_toolbox_item()
2009-10-08 05:02:39 +00:00
self.ImportBibleItem.setVisible(True)
self.ExportBibleItem.setVisible(True)
def finalise(self):
log.info(u'Plugin Finalise')
Plugin.finalise(self)
self.remove_toolbox_item()
self.ImportBibleItem.setVisible(False)
self.ExportBibleItem.setVisible(False)
def get_settings_tab(self):
2009-10-30 17:44:16 +00:00
return BiblesTab(self.name)
def get_media_manager_item(self):
# Create the BibleManagerItem object
2009-10-30 17:44:16 +00:00
return BibleMediaItem(self, self.icon, self.name)
def add_import_menu_item(self, import_menu):
self.ImportBibleItem = QtGui.QAction(import_menu)
self.ImportBibleItem.setObjectName(u'ImportBibleItem')
import_menu.addAction(self.ImportBibleItem)
self.ImportBibleItem.setText(
translate(u'BiblePlugin', u'&Bible'))
# Signals and slots
2009-09-21 17:56:36 +00:00
QtCore.QObject.connect(self.ImportBibleItem,
QtCore.SIGNAL(u'triggered()'), self.onBibleImportClick)
2009-10-08 05:02:39 +00:00
self.ImportBibleItem.setVisible(False)
def add_export_menu_item(self, export_menu):
self.ExportBibleItem = QtGui.QAction(export_menu)
self.ExportBibleItem.setObjectName(u'ExportBibleItem')
export_menu.addAction(self.ExportBibleItem)
self.ExportBibleItem.setText(translate(
u'BiblePlugin', u'&Bible'))
2009-10-08 05:02:39 +00:00
self.ExportBibleItem.setVisible(False)
def onBibleImportClick(self):
2009-11-03 19:01:53 +00:00
if self.media_item:
self.media_item.onImportClick()
2009-10-01 16:56:42 +00:00
def about(self):
about_text = translate(u'BiblePlugin',
u'<strong>Bible Plugin</strong><br />This '
u'plugin allows bible verses from different sources to be '
u'displayed on the screen during the service.')
return about_text
def can_delete_theme(self, theme):
if self.settings_tab.bible_theme == theme:
return False
return True