Add a test for icons

This commit is contained in:
Marco Pesenti Gritti
2006-09-08 14:21:56 +02:00
parent 8d27527fd9
commit b8018bb889
9 changed files with 0 additions and 28 deletions
+7
View File
@@ -0,0 +1,7 @@
This work is licensed under the Creative Commons Attribution 2.5 License. To view a copy of this license, visit http://creativecommons.org/licenses/by/2.5/ or send a letter to Creative Commons, 543 Howard Street, 5th Floor, San Francisco, California, 94105, USA.
Attributions:
chaitanya.jpg http://www.flickr.com/photos/meanestindian/166408558/
penelope.jpg http://www.flickr.com/photos/gagah/9257515/
kiu.jpg http://flickr.com/photos/31072589@N00/139234295/
+2
View File
@@ -0,0 +1,2 @@
[Activity]
python_class = bots
+18
View File
@@ -0,0 +1,18 @@
import os
import gtk
from sugar.bots import Bot
basedir = os.path.dirname(__file__)
bot = Bot("Chaitanya", os.path.join(basedir, "chaitanya.jpg"))
bot.start()
bot = Bot("Kiu", os.path.join(basedir, "kiu.jpg"))
bot.start()
bot = Bot("Penelope", os.path.join(basedir, "penelope.jpg"))
bot.start()
gtk.main()
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB