openlp/openlp/plugins/media/mediaplugin.py

95 lines
4.6 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 #
# --------------------------------------------------------------------------- #
2010-12-26 11:04:47 +00:00
# Copyright (c) 2008-2011 Raoul Snyman #
2011-05-26 16:25:54 +00:00
# Portions copyright (c) 2008-2011 Tim Bentley, Gerald Britton, Jonathan #
# Corwin, Michael Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, #
2011-05-26 17:11:22 +00:00
# Armin Köhler, Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias #
2011-05-26 16:25:54 +00:00
# Põldaru, Christian Richter, Philip Ridout, Jeffrey Smith, Maikel #
# Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund #
# --------------------------------------------------------------------------- #
# 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 #
###############################################################################
2009-10-08 05:02:39 +00:00
import logging
2010-06-08 15:38:09 +00:00
from openlp.core.lib import Plugin, StringContent, build_icon, translate
2011-04-18 19:50:12 +00:00
from openlp.plugins.media.lib import MediaMediaItem, MediaTab, MediaManager
2009-09-21 19:23:51 +00:00
2010-02-27 09:55:44 +00:00
log = logging.getLogger(__name__)
2009-05-15 05:15:53 +00:00
class MediaPlugin(Plugin):
2010-02-27 09:55:44 +00:00
log.info(u'%s MediaPlugin loaded', __name__)
def __init__(self, plugin_helpers):
2011-03-10 19:17:05 +00:00
Plugin.__init__(self, u'Media', plugin_helpers,
MediaMediaItem, MediaTab)
self.weight = -6
2010-07-10 01:01:14 +00:00
self.icon_path = u':/plugins/plugin_media.png'
self.icon = build_icon(self.icon_path)
# passed with drag and drop messages
self.dnd_id = u'Media'
2011-04-18 19:50:12 +00:00
self.mediaManager = MediaManager(self)
2011-05-23 19:37:44 +00:00
self.audio_extensions_list = \
self.mediaManager.get_audio_extensions_list()
self.video_extensions_list = \
self.mediaManager.get_video_extensions_list()
2009-10-01 16:56:42 +00:00
def about(self):
2010-07-23 18:03:19 +00:00
about_text = translate('MediaPlugin', '<strong>Media Plugin</strong>'
'<br />The media plugin provides playback of audio and video.')
2010-07-27 09:32:52 +00:00
return about_text
2011-06-05 21:10:49 +00:00
def addControllerItems(self, controller, control_panel):
self.mediaManager.addControllerItems(controller, control_panel)
2010-09-27 18:15:55 +00:00
def setPluginTextStrings(self):
"""
Called to define all translatable texts of the plugin
"""
2010-09-15 17:55:27 +00:00
## Name PluginList ##
self.textStrings[StringContent.Name] = {
u'singular': translate('MediaPlugin', 'Media', 'name singular'),
u'plural': translate('MediaPlugin', 'Media', 'name plural')
2010-09-15 17:55:27 +00:00
}
## Name for MediaDockManager, SettingsManager ##
self.textStrings[StringContent.VisibleName] = {
u'title': translate('MediaPlugin', 'Media', 'container title')
}
# Middle Header Bar
2011-02-14 17:25:51 +00:00
tooltips = {
2011-05-06 05:17:13 +00:00
u'load': translate('MediaPlugin', 'Load a new Media.'),
2011-02-14 19:08:18 +00:00
u'import': u'',
2011-05-06 05:17:13 +00:00
u'new': translate('MediaPlugin', 'Add a new Media.'),
u'edit': translate('MediaPlugin', 'Edit the selected Media.'),
u'delete': translate('MediaPlugin', 'Delete the selected Media.'),
u'preview': translate('MediaPlugin', 'Preview the selected Media.'),
u'live': translate('MediaPlugin', 'Send the selected Media live.'),
2011-02-14 19:08:18 +00:00
u'service': translate('MediaPlugin',
2011-05-06 05:17:13 +00:00
'Add the selected Media to the service.')
2011-02-14 17:25:51 +00:00
}
self.setPluginUiTextStrings(tooltips)
2011-05-10 20:39:17 +00:00
def finalise(self):
"""
Time to tidy up on exit
"""
log.info(u'Media Finalising')
self.mediaManager.Timer.stop()
self.mediaManager.video_reset(self.previewController)
self.mediaManager.video_reset(self.liveController)