openlp/openlp/core/lib/serviceitem.py

96 lines
3.1 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
Copyright (c) 2008 Raoul Snyman
2009-05-02 11:16:08 +00:00
Portions copyright (c) 2008-2009 Martin Thompson, Tim Bentley
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-05-02 11:16:08 +00:00
import logging
import time
2009-05-20 20:17:20 +00:00
from openlp.core.lib import buildIcon
from PyQt4 import QtCore, QtGui
2009-05-02 11:16:08 +00:00
class ServiceItem():
"""
The service item is a base class for the plugins to use to interact with
the service manager, the slide controller, and the projection screen
compositor.
"""
2009-05-02 11:16:08 +00:00
global log
log=logging.getLogger(u'ServiceItem')
log.info(u'Service Item created')
def __init__(self, hostplugin):
"""
Init Method
"""
2009-05-02 11:16:08 +00:00
self.plugin = hostplugin
self.shortname = hostplugin.name
self.title = u''
2009-05-02 11:16:08 +00:00
self.items = []
self.iconic_representation = None
self.raw_slides = None
self.frames = []
self.raw_footer = None
self.theme = None
log.debug(u'Service item created for %s ', self.shortname)
2009-05-02 11:16:08 +00:00
def addIcon(self, icon):
self.iconic_representation = buildIcon(icon)
def render(self):
"""
The render method is what renders the frames for the screen.
"""
2009-05-02 11:16:08 +00:00
log.debug(u'Render called')
if self.theme == None:
self.render_manager.set_override_theme(None)
else:
self.render_manager.set_override_theme(self.theme)
log.debug(u'Formatting slides')
if len(self.frames) == 0 :
for slide in self.raw_slides:
formated = self.render_manager.format_slide(slide, False)
frame = self.render_manager.generate_slide(formated, self.raw_footer)
self.frames.append({u'formatted': formated, u'image': frame})
2009-05-02 11:16:08 +00:00
def get_parent_node(self):
"""
This method returns a parent node to be inserted into the Service
Manager. At the moment this has to be a QAbstractListModel based class
"""
pass
def get_oos_repr(self):
"""
This method returns some text which can be saved into the OOS
file to represent this item
"""
pass
def set_from_oos(self, oostext):
"""
This method takes some oostext (passed from the ServiceManager)
and parses it into the data actually required
"""
pass
2009-05-02 11:16:08 +00:00
def set_from_plugin(self):
"""
Takes data from the plugin media chooser
"""
pass