From 5ca728b1d31139f059a3b3c94610db65d17e9c57 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Fri, 19 Jan 2007 14:47:33 +0000 Subject: Fix API for hippo-canvas 0.2 --- (limited to 'shell') diff --git a/shell/view/frame/Frame.py b/shell/view/frame/Frame.py index b0a19a8..0179115 100644 --- a/shell/view/frame/Frame.py +++ b/shell/view/frame/Frame.py @@ -186,7 +186,7 @@ class Frame: [x, y] = grid.point(1, 0) root.append(box, hippo.PACK_FIXED) - root.move(box, x, y) + root.set_position(box, x, y) tray = NotificationTray() tray_box = hippo.CanvasBox(box_width=grid.dimension(1), @@ -199,13 +199,13 @@ class Frame: [x, y] = grid.point(13, 0) root.append(tray_box, hippo.PACK_FIXED) - root.move(tray_box, x, y) + root.set_position(tray_box, x, y) box = OverlayBox(self._shell) [x, y] = grid.point(14, 0) root.append(box, hippo.PACK_FIXED) - root.move(box, x, y) + root.set_position(box, x, y) # Bottom panel panel = self._create_panel(grid, 0, 11, 16, 1) @@ -218,7 +218,7 @@ class Frame: root.append(box, hippo.PACK_FIXED) [x, y] = grid.point(1, 0) - root.move(box, x, y) + root.set_position(box, x, y) # Right panel panel = self._create_panel(grid, 15, 1, 1, 10) diff --git a/shell/view/home/FriendsBox.py b/shell/view/home/FriendsBox.py index ec4aad6..a0c467c 100644 --- a/shell/view/home/FriendsBox.py +++ b/shell/view/home/FriendsBox.py @@ -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) diff --git a/shell/view/home/HomeBox.py b/shell/view/home/HomeBox.py index daef97d..cca0355 100644 --- a/shell/view/home/HomeBox.py +++ b/shell/view/home/HomeBox.py @@ -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() diff --git a/shell/view/home/activitiesdonut.py b/shell/view/home/activitiesdonut.py index c9d8664..75d0b4d 100644 --- a/shell/view/home/activitiesdonut.py +++ b/shell/view/home/activitiesdonut.py @@ -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 -- cgit v0.9.1