openlp/openlp/plugins/media/lib/mediaitem.py

160 lines
7.3 KiB
Python
Raw Normal View History

2009-05-15 05:15:53 +00:00
# -*- 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-07-24 22:10:47 +00:00
# Gorven, Scott Guerrieri, Meinert Jordan, Andreas Preikschat, Christian #
# Richter, Philip Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, #
# Carsten Tinggaard, 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-05-15 05:15:53 +00:00
import logging
import os
from PyQt4 import QtCore, QtGui
2010-04-03 07:10:31 +00:00
from openlp.core.lib import MediaManagerItem, BaseListWithDnD, build_icon, \
2010-06-30 16:30:25 +00:00
ItemCapabilities, SettingsManager, translate, check_item_selected, \
context_menu_action
2010-02-27 09:55:44 +00:00
log = logging.getLogger(__name__)
class MediaListView(BaseListWithDnD):
def __init__(self, parent=None):
self.PluginName = u'Media'
BaseListWithDnD.__init__(self, parent)
2009-05-15 05:15:53 +00:00
class MediaMediaItem(MediaManagerItem):
"""
This is the custom media manager item for Media Slides.
2009-05-15 05:15:53 +00:00
"""
2010-02-27 09:55:44 +00:00
log.info(u'%s MediaMediaItem loaded', __name__)
2009-05-15 05:15:53 +00:00
2010-09-14 18:34:39 +00:00
def __init__(self, parent, plugin, icon, title):
self.IconPath = u'images/image'
2010-04-30 16:30:25 +00:00
self.background = False
# this next is a class, not an instance of a class - it will
# be instanced by the base MediaManagerItem
self.ListViewWithDnD_class = MediaListView
2010-04-27 16:27:57 +00:00
self.PreviewFunction = QtGui.QPixmap(
u':/media/media_video.png').toImage()
2010-09-14 18:34:39 +00:00
MediaManagerItem.__init__(self, parent, self, icon, title)
2010-04-06 19:16:14 +00:00
self.singleServiceItem = False
2010-07-07 16:03:30 +00:00
self.serviceItemIconName = u':/media/media_video.png'
2009-05-15 05:15:53 +00:00
2009-10-31 16:17:26 +00:00
def retranslateUi(self):
self.OnNewPrompt = translate('MediaPlugin.MediaItem', 'Select Media')
self.OnNewFileMasks = translate('MediaPlugin.MediaItem',
u'Videos (%s);;'
u'Audio (%s);;'
u'All files (*)' % (self.parent.video_list, self.parent.audio_list))
2009-09-26 09:11:39 +00:00
def requiredIcons(self):
MediaManagerItem.requiredIcons(self)
self.hasFileIcon = True
self.hasNewIcon = False
self.hasEditIcon = False
2010-06-30 16:30:25 +00:00
def addListViewToToolBar(self):
MediaManagerItem.addListViewToToolBar(self)
2010-07-07 16:03:30 +00:00
self.listView.setContextMenuPolicy(QtCore.Qt.ActionsContextMenu)
self.listView.addAction(
context_menu_action(self.listView, u':/slides/slide_blank.png',
2010-06-30 16:30:25 +00:00
translate('MediaPlugin.MediaItem', 'Replace Live Background'),
self.onReplaceClick))
2010-04-30 16:30:25 +00:00
def addEndHeaderBar(self):
self.ImageWidget = QtGui.QWidget(self)
sizePolicy = QtGui.QSizePolicy(
QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
sizePolicy.setHorizontalStretch(0)
sizePolicy.setVerticalStretch(0)
sizePolicy.setHeightForWidth(
self.ImageWidget.sizePolicy().hasHeightForWidth())
self.ImageWidget.setSizePolicy(sizePolicy)
self.ImageWidget.setObjectName(u'ImageWidget')
#Replace backgrounds do not work at present so remove functionality.
2010-07-07 16:03:30 +00:00
self.blankButton = self.toolbar.addToolbarButton(
translate('MediaPlugin.MediaItem', 'Replace Background'),
u':/slides/slide_blank.png',
2010-06-30 16:30:25 +00:00
translate('MediaPlugin.MediaItem', 'Replace Live Background'),
self.onReplaceClick, False)
self.resetButton = self.toolbar.addToolbarButton(
u'Reset Background', u':/system/system_close.png',
translate('ImagePlugin.MediaItem', 'Reset Live Background'),
self.onResetClick, False)
2010-04-30 16:30:25 +00:00
# Add the song widget to the page layout
2010-07-07 16:03:30 +00:00
self.pageLayout.addWidget(self.ImageWidget)
self.resetButton.setVisible(False)
2010-04-30 16:30:25 +00:00
def onResetClick(self):
self.resetButton.setVisible(False)
2010-07-28 17:21:32 +00:00
self.parent.liveController.display.resetVideo()
2010-07-02 18:21:45 +00:00
def onReplaceClick(self):
2010-07-07 16:03:30 +00:00
if check_item_selected(self.listView,
2010-06-30 17:05:12 +00:00
translate('ImagePlugin.MediaItem',
'You must select a media file to replace the background with.')):
2010-07-07 16:03:30 +00:00
item = self.listView.currentItem()
2010-06-30 17:05:12 +00:00
filename = unicode(item.data(QtCore.Qt.UserRole).toString())
2010-08-04 19:09:43 +00:00
self.parent.liveController.display.video(filename, 0)
self.resetButton.setVisible(True)
2010-04-30 16:30:25 +00:00
def generateSlideData(self, service_item, item=None):
2010-04-05 07:22:21 +00:00
if item is None:
2010-07-07 16:03:30 +00:00
item = self.listView.currentItem()
2010-04-05 07:22:21 +00:00
if item is None:
return False
filename = unicode(item.data(QtCore.Qt.UserRole).toString())
service_item.title = unicode(
translate('MediaPlugin.MediaItem', 'Media'))
service_item.add_capability(ItemCapabilities.RequiresMedia)
2010-04-05 07:22:21 +00:00
frame = u':/media/image_clapperboard.png'
(path, name) = os.path.split(filename)
service_item.add_from_command(path, name, frame)
return True
2009-05-15 05:15:53 +00:00
def initialise(self):
2010-07-07 16:03:30 +00:00
self.listView.setSelectionMode(
QtGui.QAbstractItemView.ExtendedSelection)
2010-07-07 16:03:30 +00:00
self.listView.setIconSize(QtCore.QSize(88, 50))
2010-06-08 15:38:09 +00:00
self.loadList(SettingsManager.load_list(self.settingsSection,
self.settingsSection))
def onDeleteClick(self):
"""
Remove a media item from the list
"""
2010-07-07 16:03:30 +00:00
if check_item_selected(self.listView, translate('MediaPlugin.MediaItem',
'You must select a media file to delete.')):
2010-07-07 16:03:30 +00:00
row_list = [item.row() for item in self.listView.selectedIndexes()]
row_list.sort(reverse=True)
for row in row_list:
2010-07-07 16:03:30 +00:00
self.listView.takeItem(row)
2010-06-28 20:00:35 +00:00
SettingsManager.set_list(self.settingsSection,
self.settingsSection, self.getFileList())
def loadList(self, list):
for file in list:
2010-05-27 14:41:47 +00:00
filename = os.path.split(unicode(file))[1]
item_name = QtGui.QListWidgetItem(filename)
img = QtGui.QPixmap(u':/media/media_video.png').toImage()
item_name.setIcon(build_icon(img))
item_name.setData(QtCore.Qt.UserRole, QtCore.QVariant(file))
2010-09-14 18:34:39 +00:00
self.listView.addItem(item_name)