openlp/openlp/plugins/songs/songsplugin.py

202 lines
9.2 KiB
Python
Raw Normal View History

# -*- 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
from PyQt4 import QtCore, QtGui
2010-02-06 10:33:33 +00:00
from openlp.core.lib import Plugin, build_icon, PluginStatus
2009-10-17 05:47:17 +00:00
from openlp.plugins.songs.lib import SongManager, SongMediaItem, SongsTab
2010-04-02 12:23:40 +00:00
#from openlp.plugins.songs.forms import ImportWizardForm
#OpenLPImportForm, OpenSongExportForm, \
# OpenSongImportForm, OpenLPExportForm
2010-02-27 15:31:23 +00:00
log = logging.getLogger(__name__)
class SongsPlugin(Plugin):
"""
This is the number 1 plugin, if importance were placed on any
plugins. This plugin enables the user to create, edit and display
songs. Songs are divided into verses, and the verse order can be
specified. Authors, topics and song books can be assigned to songs
as well.
"""
log.info(u'Song Plugin loaded')
def __init__(self, plugin_helpers):
"""
Create and set up the Songs plugin.
"""
2010-02-06 10:33:33 +00:00
Plugin.__init__(self, u'Songs', u'1.9.1', plugin_helpers)
self.weight = -10
2010-04-02 12:23:40 +00:00
self.manager = SongManager(self.config)
#self.openlp_import_form = OpenLPImportForm()
#self.opensong_import_form = OpenSongImportForm()
#self.openlp_export_form = OpenLPExportForm()
#self.opensong_export_form = OpenSongExportForm()
#self.import_wizard = ImportWizardForm()
self.icon = build_icon(u':/media/media_song.png')
2010-02-06 10:33:33 +00:00
self.status = PluginStatus.Active
2009-10-17 05:47:17 +00:00
def get_settings_tab(self):
2009-10-30 17:44:16 +00:00
return SongsTab(self.name)
2009-10-17 05:47:17 +00:00
2009-10-08 17:28:59 +00:00
def initialise(self):
log.info(u'Songs Initialising')
2009-10-08 19:35:24 +00:00
#if self.songmanager is None:
# self.songmanager = SongManager(self.config)
2009-10-08 17:28:59 +00:00
Plugin.initialise(self)
2009-10-30 20:34:11 +00:00
self.insert_toolbox_item()
2010-04-02 12:23:40 +00:00
#self.ImportSongMenu.menuAction().setVisible(True)
#self.ExportSongMenu.menuAction().setVisible(True)
self.media_item.displayResultsSong(self.manager.get_songs())
2009-10-08 17:28:59 +00:00
def finalise(self):
log.info(u'Plugin Finalise')
Plugin.finalise(self)
self.remove_toolbox_item()
2010-04-02 12:23:40 +00:00
#self.ImportSongMenu.menuAction().setVisible(False)
#self.ExportSongMenu.menuAction().setVisible(False)
2009-10-08 17:28:59 +00:00
def get_media_manager_item(self):
"""
Create the MediaManagerItem object, which is displaed in the
Media Manager.
"""
2009-10-30 17:44:16 +00:00
return SongMediaItem(self, self.icon, self.name)
def add_import_menu_item(self, import_menu):
"""
Give the Songs plugin the opportunity to add items to the
**Import** menu.
``import_menu``
The actual **Import** menu item, so that your actions can
use it as their parent.
"""
2010-04-02 12:23:40 +00:00
self.SongImportItem = QtGui.QAction(import_menu)
self.SongImportItem.setObjectName(u'SongImportItem')
self.SongImportItem.setText(import_menu.trUtf8('&Song'))
self.SongImportItem.setToolTip(
import_menu.trUtf8('Import songs using the import wizard.'))
import_menu.addAction(self.SongImportItem)
QtCore.QObject.connect(self.SongImportItem,
QtCore.SIGNAL(u'triggered()'), self.onSongImportItemClicked)
# self.ImportSongMenu = QtGui.QMenu(import_menu)
# self.ImportSongMenu.setObjectName(u'ImportSongMenu')
# self.ImportOpenSongItem = QtGui.QAction(import_menu)
# self.ImportOpenSongItem.setObjectName(u'ImportOpenSongItem')
# self.ImportOpenlp1Item = QtGui.QAction(import_menu)
# self.ImportOpenlp1Item.setObjectName(u'ImportOpenlp1Item')
# self.ImportOpenlp2Item = QtGui.QAction(import_menu)
# self.ImportOpenlp2Item.setObjectName(u'ImportOpenlp2Item')
# # Add to menus
# self.ImportSongMenu.addAction(self.ImportOpenlp1Item)
# self.ImportSongMenu.addAction(self.ImportOpenlp2Item)
# self.ImportSongMenu.addAction(self.ImportOpenSongItem)
# import_menu.addAction(self.ImportSongMenu.menuAction())
# # Translations...
# self.ImportSongMenu.setTitle(import_menu.trUtf8('&Song'))
# self.ImportOpenSongItem.setText(import_menu.trUtf8('OpenSong'))
# self.ImportOpenlp1Item.setText(import_menu.trUtf8('openlp.org 1.0'))
# self.ImportOpenlp1Item.setToolTip(
# import_menu.trUtf8('Export songs in openlp.org 1.0 format'))
# self.ImportOpenlp1Item.setStatusTip(
# import_menu.trUtf8('Export songs in openlp.org 1.0 format'))
# self.ImportOpenlp2Item.setText(import_menu.trUtf8('OpenLP 2.0'))
# self.ImportOpenlp2Item.setToolTip(
# import_menu.trUtf8('Export songs in OpenLP 2.0 format'))
# self.ImportOpenlp2Item.setStatusTip(
# import_menu.trUtf8('Export songs in OpenLP 2.0 format'))
# # Signals and slots
# QtCore.QObject.connect(self.ImportOpenlp1Item,
# QtCore.SIGNAL(u'triggered()'), self.onImportOpenlp1ItemClick)
# QtCore.QObject.connect(self.ImportOpenlp2Item,
# QtCore.SIGNAL(u'triggered()'), self.onImportOpenlp1ItemClick)
# QtCore.QObject.connect(self.ImportOpenSongItem,
# QtCore.SIGNAL(u'triggered()'), self.onImportOpenSongItemClick)
# self.ImportSongMenu.menuAction().setVisible(False)
# def add_export_menu_item(self, export_menu):
# """
# Give the Songs plugin the opportunity to add items to the
# **Export** menu.
#
# ``export_menu``
# The actual **Export** menu item, so that your actions can
# use it as their parent.
# """
# self.ExportSongMenu = QtGui.QMenu(export_menu)
# self.ExportSongMenu.setObjectName(u'ExportSongMenu')
# self.ExportOpenSongItem = QtGui.QAction(export_menu)
# self.ExportOpenSongItem.setObjectName(u'ExportOpenSongItem')
# self.ExportOpenlp1Item = QtGui.QAction(export_menu)
# self.ExportOpenlp1Item.setObjectName(u'ExportOpenlp1Item')
# self.ExportOpenlp2Item = QtGui.QAction(export_menu)
# self.ExportOpenlp2Item.setObjectName(u'ExportOpenlp2Item')
# # Add to menus
# self.ExportSongMenu.addAction(self.ExportOpenlp1Item)
# self.ExportSongMenu.addAction(self.ExportOpenlp2Item)
# self.ExportSongMenu.addAction(self.ExportOpenSongItem)
# export_menu.addAction(self.ExportSongMenu.menuAction())
# # Translations...
# self.ExportSongMenu.setTitle(export_menu.trUtf8('&Song'))
# self.ExportOpenSongItem.setText(export_menu.trUtf8('OpenSong'))
# self.ExportOpenlp1Item.setText(export_menu.trUtf8('openlp.org 1.0'))
# self.ExportOpenlp2Item.setText(export_menu.trUtf8('OpenLP 2.0'))
# # Signals and slots
# QtCore.QObject.connect(self.ExportOpenlp1Item,
# QtCore.SIGNAL(u'triggered()'), self.onExportOpenlp1ItemClicked)
# QtCore.QObject.connect(self.ExportOpenSongItem,
# QtCore.SIGNAL(u'triggered()'), self.onExportOpenSongItemClicked)
# self.ExportSongMenu.menuAction().setVisible(False)
def onSongImportItemClicked(self):
if self.media_item:
self.media_item.onImportClick()
# def onImportOpenlp1ItemClick(self):
# self.openlp_import_form.show()
#
# def onImportOpenSongItemClick(self):
# self.opensong_import_form.show()
#
# def onExportOpenlp1ItemClicked(self):
# self.openlp_export_form.show()
#
# def onExportOpenSongItemClicked(self):
# self.opensong_export_form.show()
2009-10-01 16:56:42 +00:00
def about(self):
about_text = self.trUtf8('<b>Song Plugin</b> <br>This plugin allows '
'Songs to be managed and displayed.<br>')
2010-02-06 10:33:33 +00:00
return about_text
def can_delete_theme(self, theme):
2010-04-02 12:23:40 +00:00
if len(self.manager.get_songs_for_theme(theme)) == 0:
return True
return False