<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#!/usr/bin/python

# Yay, PIL!!
import Image

import sys
import os


# All of these images are assumed to be 20x20.
# It's fine if they are smaller because they'll just get more padding,
# larger than 20x20 and it'll get a little trickier.
imagesRoot = '../htdocs/images/';
spriteFolders = ['toolbar/'];

try:
	os.remove(imageRoot+'all.png')
except:
	pass

all_files = list()
for path in spriteFolders:
	imgs = os.listdir(imagesRoot+path)
	imgs = map(lambda x: imagesRoot+path+x, imgs)
	all_files = all_files + imgs

images = list()
for f in all_files:
	# this test should be better... but I'm lazy.
	if((f.find('.png') &gt; 0 or f.find('.gif') &gt; 0) and f.find('-selected') &lt; 0):
		images.append(f)
images.sort()

sprite = Image.new('RGBA', (40,len(images)*30), (0,0,0,0))

i = 0

cssHeader = """
.sprite-control {
	background-image: url('../images/all.png');
	background-repeat: no-repeat;
	height: 20px;
	width: 20px;
	display: -moz-inline-box;
	display: inline-block;
	cursor: pointer;
	background-position: 0 -%d;	/* This should default to the 'find' icon */
}

/* Load the GIF version for IE */
* html .sprite-control {
	background-image: url('../images/all.gif');
}

/* IE also needs inline and not line-block */
* html .sprite-control {
	display: inline;
}
"""


cssTemplate = """ .sprite-control-%s { background-position: 0 -%d; } """
cssSelectedTemplate = """ .sprite-control-%s-selected { background-position: -20 -%d !important; } """

cssText = cssHeader

height = (len(images)+1)*30+10
findPosition = 0
for image in images:
	imagePath = image.split('/')
	imageName = imagePath[-1].split('.')[0]

	selectedImage = image
	for ext in ['gif','png','jpg']:
		selectedImage = selectedImage.replace('.'+ext,'-selected.'+ext)

	if(not(os.path.isfile(selectedImage))):
		selectedImage = image

	icon = Image.open(image)
	selected_icon = Image.open(selectedImage)
	
	offsetLeft = (20 - icon.size[0]) / 2
	offsetHeight = (20 - icon.size[1]) / 2
	sprite.paste(icon, (offsetLeft, i*30+10+offsetHeight))

	offsetLeft = 20 + (20 - selected_icon.size[0]) / 2
	offsetHeight = (20 - selected_icon.size[1]) / 2
	sprite.paste(selected_icon, (offsetLeft, i*30+10+offsetHeight)) 

	i+=1


	h = height-(height-((i-1)*30))+10
	cssText += cssTemplate % (imageName , h)
	cssText += cssSelectedTemplate % (imageName, h)
	cssText += '\n'
	if(imageName == 'find'):
		findPosition = h
	#print cssTemplate % (imageName , ((i+1)*30+10))

print cssText % findPosition
sprite.save(imagesRoot+'all.png')
</pre></body></html>