forked from openlp/openlp
070ed7fcb5
Some more refactoring.
183 lines
7.9 KiB
Python
183 lines
7.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4
|
|
|
|
###############################################################################
|
|
# OpenLP - Open Source Lyrics Projection #
|
|
# --------------------------------------------------------------------------- #
|
|
# Copyright (c) 2008-2012 Raoul Snyman #
|
|
# Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan #
|
|
# Corwin, Michael Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, #
|
|
# Armin Köhler, Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias #
|
|
# Põldaru, Christian Richter, Philip Ridout, Simon Scudder, 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 #
|
|
###############################################################################
|
|
"""
|
|
The :mod:`presentationplugin` module provides the ability for OpenLP to display
|
|
presentations from a variety of document formats.
|
|
"""
|
|
import os
|
|
import logging
|
|
|
|
from openlp.core.lib import Plugin, StringContent, build_icon, translate
|
|
from openlp.core.utils import AppLocation
|
|
from openlp.plugins.presentations.lib import PresentationController, \
|
|
PresentationMediaItem, PresentationTab
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
class PresentationPlugin(Plugin):
|
|
"""
|
|
This plugin allowed a Presentation to be opened, controlled and displayed
|
|
on the output display. The plugin controls third party applications such
|
|
as OpenOffice.org Impress, Microsoft PowerPoint and the PowerPoint viewer
|
|
"""
|
|
log = logging.getLogger(u'PresentationPlugin')
|
|
|
|
def __init__(self, plugin_helpers):
|
|
"""
|
|
PluginPresentation constructor.
|
|
"""
|
|
log.debug(u'Initialised')
|
|
self.controllers = {}
|
|
Plugin.__init__(self, u'presentations', plugin_helpers)
|
|
self.weight = -8
|
|
self.iconPath = u':/plugins/plugin_presentations.png'
|
|
self.icon = build_icon(self.iconPath)
|
|
|
|
def createSettingsTab(self, parent):
|
|
"""
|
|
Create the settings Tab
|
|
"""
|
|
visible_name = self.getString(StringContent.VisibleName)
|
|
self.settingsTab = PresentationTab(parent, self.name,
|
|
visible_name[u'title'], self.controllers, self.iconPath)
|
|
|
|
def initialise(self):
|
|
"""
|
|
Initialise the plugin. Determine which controllers are enabled
|
|
are start their processes.
|
|
"""
|
|
log.info(u'Presentations Initialising')
|
|
Plugin.initialise(self)
|
|
for controller in self.controllers:
|
|
if self.controllers[controller].enabled():
|
|
try:
|
|
self.controllers[controller].start_process()
|
|
except:
|
|
log.warn(u'Failed to start controller process')
|
|
self.controllers[controller].available = False
|
|
self.mediaItem.buildFileMaskString()
|
|
|
|
def finalise(self):
|
|
"""
|
|
Finalise the plugin. Ask all the enabled presentation applications
|
|
to close down their applications and release resources.
|
|
"""
|
|
log.info(u'Plugin Finalise')
|
|
# Ask each controller to tidy up.
|
|
for key in self.controllers:
|
|
controller = self.controllers[key]
|
|
if controller.enabled():
|
|
controller.kill()
|
|
Plugin.finalise(self)
|
|
|
|
def createMediaManagerItem(self):
|
|
"""
|
|
Create the Media Manager List
|
|
"""
|
|
self.mediaItem = PresentationMediaItem(
|
|
self.mediaDock.media_dock, self, self.icon, self.controllers)
|
|
|
|
def registerControllers(self, controller):
|
|
"""
|
|
Register each presentation controller (Impress, PPT etc) and
|
|
store for later use
|
|
"""
|
|
self.controllers[controller.name] = controller
|
|
|
|
def checkPreConditions(self):
|
|
"""
|
|
Check to see if we have any presentation software available
|
|
If Not do not install the plugin.
|
|
"""
|
|
log.debug(u'checkPreConditions')
|
|
controller_dir = os.path.join(
|
|
AppLocation.get_directory(AppLocation.PluginsDir),
|
|
u'presentations', u'lib')
|
|
for filename in os.listdir(controller_dir):
|
|
if filename.endswith(u'controller.py') and \
|
|
not filename == 'presentationcontroller.py':
|
|
path = os.path.join(controller_dir, filename)
|
|
if os.path.isfile(path):
|
|
modulename = u'openlp.plugins.presentations.lib.' + \
|
|
os.path.splitext(filename)[0]
|
|
log.debug(u'Importing controller %s', modulename)
|
|
try:
|
|
__import__(modulename, globals(), locals(), [])
|
|
except ImportError:
|
|
log.warn(u'Failed to import %s on path %s',
|
|
modulename, path)
|
|
controller_classes = PresentationController.__subclasses__()
|
|
for controller_class in controller_classes:
|
|
controller = controller_class(self)
|
|
self.registerControllers(controller)
|
|
return bool(self.controllers)
|
|
|
|
def about(self):
|
|
"""
|
|
Return information about this plugin
|
|
"""
|
|
about_text = translate('PresentationPlugin', '<strong>Presentation '
|
|
'Plugin</strong><br />The presentation plugin provides the '
|
|
'ability to show presentations using a number of different '
|
|
'programs. The choice of available presentation programs is '
|
|
'available to the user in a drop down box.')
|
|
return about_text
|
|
|
|
def setPluginTextStrings(self):
|
|
"""
|
|
Called to define all translatable texts of the plugin
|
|
"""
|
|
## Name PluginList ##
|
|
self.textStrings[StringContent.Name] = {
|
|
u'singular': translate('PresentationPlugin', 'Presentation',
|
|
'name singular'),
|
|
u'plural': translate('PresentationPlugin', 'Presentations',
|
|
'name plural')
|
|
}
|
|
## Name for MediaDockManager, SettingsManager ##
|
|
self.textStrings[StringContent.VisibleName] = {
|
|
u'title': translate('PresentationPlugin', 'Presentations',
|
|
'container title')
|
|
}
|
|
# Middle Header Bar
|
|
tooltips = {
|
|
u'load': translate('PresentationPlugin',
|
|
'Load a new presentation.'),
|
|
u'import': u'',
|
|
u'new': u'',
|
|
u'edit': u'',
|
|
u'delete': translate('PresentationPlugin',
|
|
'Delete the selected presentation.'),
|
|
u'preview': translate('PresentationPlugin',
|
|
'Preview the selected presentation.'),
|
|
u'live': translate('PresentationPlugin',
|
|
'Send the selected presentation live.'),
|
|
u'service': translate('PresentationPlugin',
|
|
'Add the selected presentation to the service.')
|
|
}
|
|
self.setPluginUiTextStrings(tooltips)
|