1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
#------------------------------------------------------------------------------
# Copyright (c) 2005, Enthought, Inc.
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in enthought/LICENSE.txt and may be redistributed only
# under the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
# Thanks for using Enthought open source!
#
# Author: Enthought, Inc.
# Description: <Enthought resource package component>
#------------------------------------------------------------------------------
""" Resource references. """
# Enthought library imports.
from traits.api import Any, HasTraits, Instance
# Local imports.
from pyface.resource.resource_factory import ResourceFactory
class ResourceReference(HasTraits):
""" Abstract base class for resource references.
Resource references are returned from calls to 'locate_reference' on the
resource manager.
"""
# The resource factory that will be used to load the resource.
resource_factory = Instance(ResourceFactory) # ReadOnly
###########################################################################
# 'ResourceReference' interface.
###########################################################################
def load(self):
""" Loads the resource. """
raise NotImplementedError
class ImageReference(ResourceReference):
""" A reference to an image resource. """
# Iff the image was found in a file then this is the name of that file.
filename = Any # ReadOnly
# Iff the image was found in a zip file then this is the image data that
# was read from the zip file.
data = Any # ReadOnly
def __init__(self, resource_factory, filename=None, data=None):
""" Creates a new image reference. """
self.resource_factory = resource_factory
self.filename = filename
self.data = data
return
###########################################################################
# 'ResourceReference' interface.
###########################################################################
def load(self):
""" Loads the resource. """
if self.filename is not None:
image = self.resource_factory.image_from_file(self.filename)
elif self.data is not None:
image = self.resource_factory.image_from_data(self.data)
else:
raise ValueError("Image reference has no filename OR data")
return image
#### EOF ######################################################################
|