sugar-toolkit-gtk3/activities/web/linksview.py

42 lines
959 B
Python
Raw Normal View History

2006-10-13 18:05:48 +02:00
import gtk
import hippo
from sugar.graphics.bubble import Bubble
2006-10-13 18:05:48 +02:00
from sugar.graphics.iconcolor import IconColor
from sugar.graphics import style
class LinksView(hippo.Canvas):
def __init__(self, model):
hippo.Canvas.__init__(self)
self._bubbles = {}
self._box = hippo.CanvasBox(background_color=0x414141ff)
self.set_root(self._box)
for link in model:
self._add_link(link)
model.connect('link_added', self._link_added_cb)
model.connect('link_removed', self._link_removed_cb)
def _add_link(self, link):
2006-10-13 18:05:48 +02:00
color = IconColor(link.buddy.get_color())
bubble = Bubble(color=color)
style.apply_stylesheet(bubble, 'bubble.Box')
self._box.append(bubble)
self._bubbles[link] = bubble
def _remove_link(self, link):
bubble = self._bubbles[link]
self._box.remove(bubble)
del self._bubbles[link]
def _link_added_cb(self, model, link):
self._add_link(link)
def _link_removed_cb(self, model, link):
self._removed_link(link)