Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view/home/HomeBox.py
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-02-20 11:01:58 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-02-20 11:01:58 (GMT)
commit7ba58f68b08f51e85170535d10df01f0f1b58236 (patch)
tree69928e8e26adbd8287c45b1e2ff0d4bca2b74627 /shell/view/home/HomeBox.py
parente0dd1f52322090687410cc20a4255a8eb00f8928 (diff)
Position the device icons around the donut
Diffstat (limited to 'shell/view/home/HomeBox.py')
-rw-r--r--shell/view/home/HomeBox.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/shell/view/home/HomeBox.py b/shell/view/home/HomeBox.py
index 13032a6..c6c0f88 100644
--- a/shell/view/home/HomeBox.py
+++ b/shell/view/home/HomeBox.py
@@ -14,6 +14,8 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+import math
+
import hippo
from sugar.graphics import units
@@ -42,12 +44,14 @@ class HomeBox(hippo.CanvasBox, hippo.CanvasItem):
shell_model.connect('notify::state',
self._shell_state_changed_cb)
+ self._device_icons = []
for device in shell_model.get_devices():
self._add_device(device)
def _add_device(self, device):
view = deviceview.create(device)
self.append(view, hippo.PACK_FIXED)
+ self._device_icons.append(view)
def _shell_state_changed_cb(self, model, pspec):
# FIXME handle all possible mode switches
@@ -63,6 +67,19 @@ class HomeBox(hippo.CanvasBox, hippo.CanvasItem):
[icon_width, icon_height] = self._my_icon.get_allocation()
self.set_position(self._my_icon, (width - icon_width) / 2,
(height - icon_height) / 2)
+
+ i = 0
+ for icon in self._device_icons:
+ angle = 2 * math.pi / len(self._device_icons) * i + math.pi / 2
+ radius = units.grid_to_pixels(5)
+
+ [icon_width, icon_height] = icon.get_allocation()
+
+ x = int(radius * math.cos(angle)) - icon_width / 2
+ y = int(radius * math.sin(angle)) - icon_height / 2
+ self.set_position(icon, x + width / 2, y + height / 2)
+
+ i += 1
def has_activities(self):
return self._donut.has_activities()