openlp/openlp/plugins/presentations/lib/mediaitem.py

161 lines
7.5 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 #
# Gorven, Scott Guerrieri, 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
import os
from PyQt4 import QtCore, QtGui
2009-09-25 00:43:42 +00:00
2009-10-24 16:40:36 +00:00
from openlp.core.lib import MediaManagerItem, BaseListWithDnD
2009-09-05 13:30:09 +00:00
from openlp.plugins.presentations.lib import MessageListener
2009-06-26 16:39:16 +00:00
# We have to explicitly create separate classes for each plugin
# in order for DnD to the Service manager to work correctly.
class PresentationListView(BaseListWithDnD):
def __init__(self, parent=None):
2009-08-11 19:21:52 +00:00
self.PluginName = u'Presentations'
2009-06-26 16:39:16 +00:00
BaseListWithDnD.__init__(self, parent)
class PresentationMediaItem(MediaManagerItem):
"""
2009-08-11 19:21:52 +00:00
This is the Presentation media manager item for Presentation Items.
It can present files using Openoffice
"""
global log
2009-09-28 20:45:04 +00:00
log = logging.getLogger(u'PresentationsMediaItem')
log.info(u'Presentations Media Item loaded')
2009-08-11 19:21:52 +00:00
def __init__(self, parent, icon, title, controllers):
self.controllers = controllers
2009-10-28 01:36:24 +00:00
self.PluginNameShort = u'Presentation'
2009-10-30 17:44:16 +00:00
self.ConfigSection = title
2009-06-27 05:46:05 +00:00
self.IconPath = u'presentations/presentation'
2009-06-26 16:39:16 +00:00
# this next is a class, not an instance of a class - it will
# be instanced by the base MediaManagerItem
self.ListViewWithDnD_class = PresentationListView
MediaManagerItem.__init__(self, parent, icon, title)
2009-09-05 13:30:09 +00:00
self.message_listener = MessageListener(controllers)
def initPluginNameVisible(self):
self.PluginNameVisible = self.trUtf8('Presentation')
2009-10-31 16:17:26 +00:00
def retranslateUi(self):
self.OnNewPrompt = self.trUtf8('Select Presentation(s)')
2010-01-29 11:59:13 +00:00
fileType = u''
for controller in self.controllers:
if self.controllers[controller].enabled:
for type in self.controllers[controller].supports:
if fileType.find(type) == -1:
2010-02-09 11:20:19 +00:00
fileType += u'*%s ' % type
2010-01-29 11:59:13 +00:00
self.OnNewFileMasks = self.trUtf8('Presentations (%s)' % fileType)
2009-09-26 09:11:39 +00:00
def requiredIcons(self):
MediaManagerItem.requiredIcons(self)
self.hasFileIcon = True
self.hasNewIcon = False
self.hasEditIcon = False
def addEndHeaderBar(self):
2009-06-27 05:46:05 +00:00
self.PresentationWidget = QtGui.QWidget(self)
2009-09-21 17:56:36 +00:00
sizePolicy = QtGui.QSizePolicy(
QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
2009-06-27 05:46:05 +00:00
sizePolicy.setHorizontalStretch(0)
sizePolicy.setVerticalStretch(0)
2009-09-21 17:56:36 +00:00
sizePolicy.setHeightForWidth(
self.PresentationWidget.sizePolicy().hasHeightForWidth())
2009-06-27 05:46:05 +00:00
self.PresentationWidget.setSizePolicy(sizePolicy)
self.PresentationWidget.setObjectName(u'PresentationWidget')
self.DisplayLayout = QtGui.QGridLayout(self.PresentationWidget)
self.DisplayLayout.setObjectName(u'DisplayLayout')
self.DisplayTypeComboBox = QtGui.QComboBox(self.PresentationWidget)
self.DisplayTypeComboBox.setObjectName(u'DisplayTypeComboBox')
self.DisplayLayout.addWidget(self.DisplayTypeComboBox, 0, 1, 1, 2)
self.DisplayTypeLabel = QtGui.QLabel(self.PresentationWidget)
self.DisplayTypeLabel.setObjectName(u'SearchTypeLabel')
self.DisplayLayout.addWidget(self.DisplayTypeLabel, 0, 0, 1, 1)
self.DisplayTypeLabel.setText(self.trUtf8('Present using:'))
2009-06-27 05:46:05 +00:00
# Add the Presentation widget to the page layout
self.PageLayout.addWidget(self.PresentationWidget)
def initialise(self):
list = self.parent.config.load_list(u'presentations')
2009-08-11 19:21:52 +00:00
self.loadList(list)
for item in self.controllers:
#load the drop down selection
if self.controllers[item].enabled:
self.DisplayTypeComboBox.addItem(item)
2009-06-27 15:33:03 +00:00
def loadList(self, list):
currlist = self.getFileList()
titles = []
for file in currlist:
titles.append(os.path.split(file)[1])
2009-06-27 15:33:03 +00:00
for file in list:
if currlist.count(file) > 0:
continue
2009-06-27 15:33:03 +00:00
(path, filename) = os.path.split(unicode(file))
if titles.count(filename) > 0:
QtGui.QMessageBox.critical(
self, self.trUtf8('File exists'), self.trUtf8(
'A presentation with that filename already exists.'),
QtGui.QMessageBox.Ok)
else:
item_name = QtGui.QListWidgetItem(filename)
item_name.setData(QtCore.Qt.UserRole, QtCore.QVariant(file))
self.ListView.addItem(item_name)
2009-06-27 15:33:03 +00:00
2009-08-11 19:21:52 +00:00
def onDeleteClick(self):
item = self.ListView.currentItem()
2009-11-03 19:01:53 +00:00
if item:
2009-08-11 19:21:52 +00:00
row = self.ListView.row(item)
self.ListView.takeItem(row)
2009-09-21 17:56:36 +00:00
self.parent.config.set_list(
self.ConfigSection, self.getFileList())
filepath = unicode((item.data(QtCore.Qt.UserRole)).toString())
for cidx in self.controllers:
self.controllers[cidx].presentation_deleted(filepath)
2009-08-11 19:21:52 +00:00
def generateSlideData(self, service_item):
items = self.ListView.selectedIndexes()
if len(items) > 1:
return False
2009-08-31 18:27:36 +00:00
service_item.title = unicode(self.DisplayTypeComboBox.currentText())
2009-08-11 19:21:52 +00:00
service_item.shortname = unicode(self.DisplayTypeComboBox.currentText())
2009-11-14 08:40:14 +00:00
controller = self.controllers[service_item.shortname]
2009-08-11 19:21:52 +00:00
for item in items:
2009-09-21 17:56:36 +00:00
bitem = self.ListView.item(item.row())
2009-08-11 19:21:52 +00:00
filename = unicode((bitem.data(QtCore.Qt.UserRole)).toString())
(path, name) = os.path.split(filename)
2009-11-14 08:40:14 +00:00
controller.store_filename(filename)
if controller.get_slide_preview_file(1) is None:
controller.load_presentation(filename)
i = 1
2009-11-14 08:40:14 +00:00
img = controller.get_slide_preview_file(i)
2009-11-03 19:01:53 +00:00
while img:
service_item.add_from_command(path, name, img)
i = i + 1
2009-11-14 08:40:14 +00:00
img = controller.get_slide_preview_file(i)
2010-01-29 11:59:13 +00:00
return True