2006-10-15 01:08:44 +02:00
|
|
|
# Copyright (C) 2006, Red Hat, Inc.
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library 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
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the
|
|
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
|
2006-10-06 11:11:38 +02:00
|
|
|
import math
|
|
|
|
|
|
|
|
import cairo
|
|
|
|
import hippo
|
|
|
|
|
|
|
|
_BASE_RADIUS = 65
|
|
|
|
_CHILDREN_FACTOR = 1
|
|
|
|
_FLAKE_DISTANCE = 6
|
|
|
|
|
|
|
|
class SnowflakeBox(hippo.CanvasBox, hippo.CanvasItem):
|
2006-12-04 20:12:24 +01:00
|
|
|
__gtype_name__ = 'SugarSnowflakeBox'
|
|
|
|
def __init__(self, **kwargs):
|
|
|
|
hippo.CanvasBox.__init__(self, **kwargs)
|
|
|
|
self._root = None
|
2006-10-06 11:11:38 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def set_root(self, icon):
|
|
|
|
self._root = icon
|
2006-10-06 11:11:38 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def _get_center(self):
|
|
|
|
[width, height] = self.get_allocation()
|
|
|
|
return [width / 2, height / 2]
|
2006-10-10 00:56:19 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def _get_radius(self):
|
|
|
|
return _BASE_RADIUS + _CHILDREN_FACTOR * self._get_n_children()
|
2006-10-10 00:56:19 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def _layout_root(self):
|
|
|
|
[width, height] = self._root.get_allocation()
|
|
|
|
[cx, cy] = self._get_center()
|
2006-10-06 11:11:38 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
x = cx - (width / 2)
|
|
|
|
y = cy - (height / 2)
|
2006-10-06 11:11:38 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
self.move(self._root, int(x), int(y))
|
2006-10-06 11:11:38 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def _get_n_children(self):
|
|
|
|
return len(self.get_children()) - 1
|
2006-10-10 01:14:24 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def _layout_child(self, child, index):
|
|
|
|
r = self._get_radius()
|
|
|
|
if (self._get_n_children() > 10):
|
|
|
|
r += _FLAKE_DISTANCE * (index % 3)
|
2006-10-06 11:11:38 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
angle = 2 * math.pi * index / self._get_n_children()
|
2006-10-06 11:11:38 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
[width, height] = child.get_allocation()
|
|
|
|
[cx, cy] = self._get_center()
|
2006-10-10 00:56:19 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
x = cx + math.cos(angle) * r - (width / 2)
|
|
|
|
y = cy + math.sin(angle) * r - (height / 2)
|
2006-10-06 11:11:38 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
self.move(child, int(x), int(y))
|
2006-10-06 11:11:38 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def do_get_width_request(self):
|
|
|
|
hippo.CanvasBox.do_get_width_request(self)
|
2006-10-06 11:17:38 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
max_child_size = 0
|
|
|
|
for child in self.get_children():
|
|
|
|
width = child.get_width_request()
|
|
|
|
height = child.get_height_request(width)
|
|
|
|
max_child_size = max (max_child_size, width)
|
|
|
|
max_child_size = max (max_child_size, height)
|
2006-10-06 11:11:38 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
return self._get_radius() * 2 + \
|
|
|
|
max_child_size + _FLAKE_DISTANCE * 2
|
2006-10-06 11:11:38 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def do_get_height_request(self, width):
|
|
|
|
hippo.CanvasBox.do_get_height_request(self, width)
|
|
|
|
return width
|
2006-10-06 11:11:38 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def do_allocate(self, width, height):
|
|
|
|
hippo.CanvasBox.do_allocate(self, width, height)
|
2006-10-06 11:11:38 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
self._layout_root()
|
2006-10-06 11:11:38 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
index = 0
|
|
|
|
for child in self.get_children():
|
|
|
|
if child != self._root:
|
|
|
|
self._layout_child(child, index)
|
|
|
|
index += 1
|