Fix API for hippo-canvas 0.2

This commit is contained in:
Marco Pesenti Gritti
2007-01-19 15:47:33 +01:00
parent 3bedd451e3
commit 5ca728b1d3
6 changed files with 22 additions and 22 deletions
+4 -4
View File
@@ -58,9 +58,9 @@ class FriendsBox(SpreadBox, hippo.CanvasItem):
self.remove_item(self._friends[name])
del self._friends[name]
def do_allocate(self, width, height):
SpreadBox.do_allocate(self, width, height)
def do_allocate(self, width, height, origin_changed):
SpreadBox.do_allocate(self, width, height, origin_changed)
[icon_width, icon_height] = self._my_icon.get_allocation()
self.move(self._my_icon, (width - icon_width) / 2,
(height - icon_height) / 2)
self.set_position(self._my_icon, (width - icon_width) / 2,
(height - icon_height) / 2)
+4 -4
View File
@@ -49,12 +49,12 @@ class HomeBox(hippo.CanvasBox, hippo.CanvasItem):
self._donut = None
self._my_icon.props.color = IconColor('insensitive')
def do_allocate(self, width, height):
hippo.CanvasBox.do_allocate(self, width, height)
def do_allocate(self, width, height, origin_changed):
hippo.CanvasBox.do_allocate(self, width, height, origin_changed)
[icon_width, icon_height] = self._my_icon.get_allocation()
self.move(self._my_icon, (width - icon_width) / 2,
(height - icon_height) / 2)
self.set_position(self._my_icon, (width - icon_width) / 2,
(height - icon_height) / 2)
def has_activities(self):
return self._donut.has_activities()
+3 -3
View File
@@ -221,8 +221,8 @@ class ActivitiesDonut(hippo.CanvasBox, hippo.CanvasItem):
cr.arc(0, 0, self._get_inner_radius(), 0, 2 * math.pi)
cr.fill()
def do_allocate(self, width, height):
hippo.CanvasBox.do_allocate(self, width, height)
def do_allocate(self, width, height, origin_changed):
hippo.CanvasBox.do_allocate(self, width, height, origin_changed)
radius = (self._get_inner_radius() + self._get_radius()) / 2
@@ -235,6 +235,6 @@ class ActivitiesDonut(hippo.CanvasBox, hippo.CanvasItem):
x = int(radius * math.cos(angle)) - icon_width / 2
y = int(radius * math.sin(angle)) - icon_height / 2
self.move(icon, x + width / 2, y + height / 2)
self.set_position(icon, x + width / 2, y + height / 2)
i += 1