~ubuntu-branches/ubuntu/natty/phatch/natty

« back to all changes in this revision

Viewing changes to phatch/lib/pyWx/graphics.py

  • Committer: Bazaar Package Importer
  • Author(s): Piotr Ożarowski
  • Date: 2009-09-25 23:22:12 UTC
  • mfrom: (1.1.6 upstream) (4.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20090925232212-tpdypfah7cupooz5
Tags: 0.2.1-4
Add mlocate as an alternative dependency to locate (Closes: #548251)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2007-2008 www.stani.be
 
2
#
 
3
# This program is free software: you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation, either version 3 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program.  If not, see http://www.gnu.org/licenses/
 
15
 
 
16
import zlib
 
17
from cStringIO import StringIO
 
18
from urllib import urlopen
 
19
 
 
20
import wx
 
21
 
 
22
try:
 
23
    from lib import system
 
24
except ImportError:
 
25
    def is_www_file(x): return True #fix this
 
26
 
 
27
def bitmap(icon,size=(48,48),client=wx.ART_OTHER):
 
28
    if icon[:4]=='ART_':
 
29
        return wx.ArtProvider_GetBitmap(getattr(wx,icon),client,size)
 
30
    else:
 
31
        return wx.BitmapFromImage(image(icon))
 
32
            
 
33
def image(icon,size=(48,48)):
 
34
    if icon[:4]=='ART_':
 
35
        return wx.ImageFromBitmap(bitmap(icon,size))
 
36
    else:
 
37
        return wx.ImageFromStream(StringIO(zlib.decompress(icon)))
 
38
           
 
39
CACHE = {}
 
40
 
 
41
def bitmap_open(x,height=64):
 
42
    try:
 
43
        return CACHE[(x,height)]
 
44
    except KeyError:
 
45
        pass
 
46
    if system.is_www_file(x):
 
47
        im  = wx.ImageFromStream(StringIO(urlopen(x).read()))
 
48
    else:
 
49
        im  = wx.Image(x)
 
50
    im  = CACHE[(x,height)] = im.Rescale(
 
51
            float(height)*im.GetWidth()/im.GetHeight(),height
 
52
        ).ConvertToBitmap()
 
53
    return im
 
54