2007-01-20 13:38:58 +01:00
|
|
|
#!/usr/bin/env python
|
2006-10-15 01:16:43 +02:00
|
|
|
|
|
|
|
# Copyright (C) 2006, Red Hat, Inc.
|
|
|
|
#
|
|
|
|
# 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; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
2006-10-06 23:28:12 +02:00
|
|
|
import sys
|
|
|
|
import random
|
|
|
|
|
2006-10-25 01:14:48 +02:00
|
|
|
import pygtk
|
|
|
|
pygtk.require('2.0')
|
|
|
|
|
|
|
|
import gobject
|
2006-10-06 23:28:12 +02:00
|
|
|
import gtk
|
|
|
|
import hippo
|
|
|
|
|
2006-10-06 23:33:26 +02:00
|
|
|
from sugar.graphics.snowflakebox import SnowflakeBox
|
2006-10-25 01:20:17 +02:00
|
|
|
from sugar.graphics.spreadbox import SpreadBox
|
2007-02-23 13:09:33 +01:00
|
|
|
from sugar.graphics.xocolor import XoColor
|
2006-10-06 23:28:12 +02:00
|
|
|
from sugar.graphics.canvasicon import CanvasIcon
|
|
|
|
|
|
|
|
def _create_snowflake(parent, children):
|
2007-02-23 13:09:33 +01:00
|
|
|
color = XoColor()
|
2007-04-15 11:39:06 +02:00
|
|
|
icon = CanvasIcon(scale=1.0, xo_color=color,
|
2007-04-15 01:03:36 +02:00
|
|
|
icon_name='theme:object-link')
|
2006-12-04 20:12:24 +01:00
|
|
|
parent.append(icon, hippo.PACK_FIXED)
|
|
|
|
parent.set_root(icon)
|
|
|
|
|
|
|
|
for i in range(0, children):
|
2007-02-23 13:09:33 +01:00
|
|
|
color = XoColor()
|
2007-04-15 11:39:06 +02:00
|
|
|
icon = CanvasIcon(scale=0.5, xo_color=color,
|
2007-04-15 01:03:36 +02:00
|
|
|
icon_name='theme:stock-buddy')
|
2006-12-04 20:12:24 +01:00
|
|
|
parent.append(icon, hippo.PACK_FIXED)
|
2006-10-06 23:28:12 +02:00
|
|
|
|
|
|
|
window = gtk.Window()
|
2006-10-25 01:33:29 +02:00
|
|
|
window.set_default_size(gtk.gdk.screen_width(), gtk.gdk.screen_height())
|
2006-10-06 23:28:12 +02:00
|
|
|
window.connect("destroy", lambda w: gtk.main_quit())
|
|
|
|
window.show()
|
|
|
|
|
|
|
|
canvas = hippo.Canvas()
|
|
|
|
|
2006-10-25 01:20:17 +02:00
|
|
|
root_box = SpreadBox(background_color=0xe2e2e2ff)
|
2006-10-06 23:28:12 +02:00
|
|
|
canvas.set_root(root_box)
|
|
|
|
|
2006-10-25 01:20:17 +02:00
|
|
|
box = SnowflakeBox()
|
|
|
|
snow_flake = _create_snowflake(box, 30)
|
|
|
|
root_box.add_item(box)
|
2006-10-10 01:14:24 +02:00
|
|
|
|
2006-10-25 01:20:17 +02:00
|
|
|
box = SnowflakeBox()
|
|
|
|
snow_flake = _create_snowflake(box, 15)
|
|
|
|
root_box.add_item(box)
|
|
|
|
|
|
|
|
box = SnowflakeBox()
|
|
|
|
snow_flake = _create_snowflake(box, 10)
|
|
|
|
root_box.add_item(box)
|
|
|
|
|
|
|
|
box = SnowflakeBox()
|
|
|
|
snow_flake = _create_snowflake(box, 5)
|
|
|
|
root_box.add_item(box)
|
|
|
|
|
|
|
|
box = SnowflakeBox()
|
|
|
|
snow_flake = _create_snowflake(box, 2)
|
|
|
|
root_box.add_item(box)
|
2006-10-06 23:28:12 +02:00
|
|
|
|
|
|
|
canvas.show()
|
|
|
|
window.add(canvas)
|
|
|
|
|
|
|
|
gtk.main()
|