openlp/openlp/plugins/images/imageplugin.py

110 lines
5.3 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2013-01-01 16:33:41 +00:00
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
###############################################################################
# OpenLP - Open Source Lyrics Projection #
# --------------------------------------------------------------------------- #
2015-12-31 22:46:06 +00:00
# Copyright (c) 2008-2016 OpenLP Developers #
# --------------------------------------------------------------------------- #
# 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 #
###############################################################################
2015-11-07 00:49:40 +00:00
from PyQt5 import QtGui
2011-08-20 13:21:25 +00:00
import logging
from openlp.core.common import Settings, translate
2013-12-13 17:44:05 +00:00
from openlp.core.lib import Plugin, StringContent, ImageSource, build_icon
from openlp.core.lib.db import Manager
2011-08-20 11:45:06 +00:00
from openlp.plugins.images.lib import ImageMediaItem, ImageTab
2013-10-13 20:36:42 +00:00
from openlp.plugins.images.lib.db import init_schema
log = logging.getLogger(__name__)
2013-01-10 20:50:01 +00:00
2013-01-10 20:41:16 +00:00
__default_settings__ = {
2013-08-31 18:17:38 +00:00
'images/db type': 'sqlite',
2015-02-11 22:15:46 +00:00
'images/db username': '',
2015-02-11 20:56:13 +00:00
'images/db password': '',
'images/db hostname': '',
'images/db database': '',
2013-08-31 18:17:38 +00:00
'images/background color': '#000000',
2013-01-30 10:57:06 +00:00
}
2013-01-10 20:50:01 +00:00
class ImagePlugin(Plugin):
2013-08-31 18:17:38 +00:00
log.info('Image Plugin loaded')
2013-01-23 21:05:25 +00:00
def __init__(self):
2013-08-31 18:17:38 +00:00
super(ImagePlugin, self).__init__('images', __default_settings__, ImageMediaItem, ImageTab)
self.manager = Manager('images', init_schema)
self.weight = -7
2013-08-31 18:17:38 +00:00
self.icon_path = ':/plugins/plugin_images.png'
2013-03-19 19:43:22 +00:00
self.icon = build_icon(self.icon_path)
2016-01-04 00:18:01 +00:00
@staticmethod
def about():
about_text = translate('ImagePlugin', '<strong>Image Plugin</strong>'
2014-03-08 20:39:36 +00:00
'<br />The image plugin provides displaying of images.<br />One '
'of the distinguishing features of this plugin is the ability to '
'group a number of images together in the service manager, making '
'the displaying of multiple images easier. This plugin can also '
'make use of OpenLP\'s "timed looping" feature to create a slide '
'show that runs automatically. In addition to this, images from '
'the plugin can be used to override the current theme\'s '
'background, which renders text-based items like songs with the '
'selected image as a background instead of the background '
'provided by the theme.')
return about_text
2010-09-12 21:03:16 +00:00
def upgrade_settings(self, settings):
"""
Upgrade the settings of this plugin.
2013-03-14 11:32:58 +00:00
2014-03-17 19:05:55 +00:00
:param settings: The Settings object containing the old settings.
"""
2015-10-16 16:49:58 +00:00
pass
2013-02-19 21:23:56 +00:00
def set_plugin_text_strings(self):
"""
2013-04-19 19:03:16 +00:00
Called to define all translatable texts of the plugin.
"""
2014-04-12 20:19:22 +00:00
# Name PluginList
2013-03-19 19:43:22 +00:00
self.text_strings[StringContent.Name] = {
2013-08-31 18:17:38 +00:00
'singular': translate('ImagePlugin', 'Image', 'name singular'),
'plural': translate('ImagePlugin', 'Images', 'name plural')
}
2014-04-12 20:19:22 +00:00
# Name for MediaDockManager, SettingsManager
2013-08-31 18:17:38 +00:00
self.text_strings[StringContent.VisibleName] = {'title': translate('ImagePlugin', 'Images', 'container title')}
# Middle Header Bar
2011-02-14 17:25:51 +00:00
tooltips = {
2013-08-31 18:17:38 +00:00
'load': translate('ImagePlugin', 'Load a new image.'),
'import': '',
'new': translate('ImagePlugin', 'Add a new image.'),
'edit': translate('ImagePlugin', 'Edit the selected image.'),
'delete': translate('ImagePlugin', 'Delete the selected image.'),
'preview': translate('ImagePlugin', 'Preview the selected image.'),
'live': translate('ImagePlugin', 'Send the selected image live.'),
'service': translate('ImagePlugin', 'Add the selected image to the service.')
2011-02-14 17:25:51 +00:00
}
2013-03-19 19:43:22 +00:00
self.set_plugin_ui_text_strings(tooltips)
2011-08-20 13:21:25 +00:00
2013-03-17 09:21:18 +00:00
def config_update(self):
2011-08-20 15:02:57 +00:00
"""
2013-04-19 19:03:16 +00:00
Triggered by saving and changing the image border. Sets the images in image manager to require updates. Actual
update is triggered by the last part of saving the config.
2011-08-20 15:02:57 +00:00
"""
2013-08-31 18:17:38 +00:00
log.info('Images config_update')
background = QtGui.QColor(Settings().value(self.settings_section + '/background color'))
2013-02-12 07:49:01 +00:00
self.image_manager.update_images_border(ImageSource.ImagePlugin, background)