diff --git a/.eric4project/openlp.org 2.0.e4q b/.eric4project/openlp.org 2.0.e4q index c7f028cae..c8614a2b0 100644 --- a/.eric4project/openlp.org 2.0.e4q +++ b/.eric4project/openlp.org 2.0.e4q @@ -1,7 +1,7 @@ - + \ No newline at end of file diff --git a/.eric4project/openlp.org 2.0.e4t b/.eric4project/openlp.org 2.0.e4t index 3743de5be..d304e2f5d 100644 --- a/.eric4project/openlp.org 2.0.e4t +++ b/.eric4project/openlp.org 2.0.e4t @@ -1,7 +1,7 @@ - + TODO: what is the tags for bridge, pre-chorus? diff --git a/openlp.org 2.0.e4p b/openlp.org 2.0.e4p index 24085d299..077a5e2ea 100644 --- a/openlp.org 2.0.e4p +++ b/openlp.org 2.0.e4p @@ -1,7 +1,7 @@ - + en @@ -134,8 +134,10 @@ openlp/plugins/videos/lib/videotab.py openlp/plugins/bibles/lib/biblemediaitem.py openlp/plugins/images/imageserviceitem.py - openlp/plugins/images/listwithpreviews.py openlp/core/ui/test/test_service_manager.py + openlp/plugins/images/lib/__init__.py + openlp/plugins/images/lib/imageserviceitem.py + openlp/plugins/images/lib/listwithpreviews.py
resources/forms/openlpexportform.ui
diff --git a/openlp/plugins/images/imageplugin.py b/openlp/plugins/images/imageplugin.py index 1a7be824c..6ee63683c 100644 --- a/openlp/plugins/images/imageplugin.py +++ b/openlp/plugins/images/imageplugin.py @@ -26,8 +26,8 @@ from openlp.core.lib import Plugin, PluginUtils, MediaManagerItem import logging from PyQt4.QtCore import * from PyQt4.QtGui import * -from listwithpreviews import ListWithPreviews -from imageserviceitem import ImageServiceItem +from openlp.plugins.images.lib import ListWithPreviews +from openlp.plugins.images.lib import ImageServiceItem class ImagePlugin(Plugin, PluginUtils): global log @@ -126,7 +126,7 @@ class ImagePlugin(Plugin, PluginUtils): filename = self.ImageListData.get_filename(i) log.info("Click %s:%s"%(str(where), filename)) where.add(filename) - + where.render() def onImagePreviewClick(self): diff --git a/openlp/plugins/images/lib/__init__.py b/openlp/plugins/images/lib/__init__.py index e69de29bb..f289bfa41 100644 --- a/openlp/plugins/images/lib/__init__.py +++ b/openlp/plugins/images/lib/__init__.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4 +""" +OpenLP - Open Source Lyrics Projection +Copyright (c) 2008 Raoul Snyman +Portions copyright (c) 2008 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 +""" +