Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBenjamin Berg <benjamin@sipsolutions.net>2008-06-20 12:46:27 (GMT)
committer Benjamin Berg <benjamin@sipsolutions.net>2008-06-20 12:46:27 (GMT)
commitbb3a3d4c63a31c30388bc7ea0a226c849cb88228 (patch)
tree665f2b0019702500a1e25f3dc611282b47c8d0bb /src
parentb781b7010794061c53101a8b1f386fd22ea7502c (diff)
Add scroll_to_item functions to the trays to show a button that may be hidden.
Diffstat (limited to 'src')
-rw-r--r--src/sugar/graphics/tray.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/sugar/graphics/tray.py b/src/sugar/graphics/tray.py
index d7d5918..2f5db9a 100644
--- a/src/sugar/graphics/tray.py
+++ b/src/sugar/graphics/tray.py
@@ -67,6 +67,25 @@ class _TrayViewport(gtk.Viewport):
elif direction == _NEXT_PAGE:
self._scroll_next()
+ def scroll_to_item(self, item):
+ """This function scrolls the viewport so that item will be visible."""
+ assert item in self.traybar.get_children()
+
+ # Get the allocation, and make sure that it is visible
+ if self.orientation == gtk.ORIENTATION_HORIZONTAL:
+ adj = self.get_hadjustment()
+ start = item.allocation.x
+ stop = item.allocation.x + item.allocation.width
+ else:
+ adj = self.get_vadjustment()
+ start = item.allocation.y
+ stop = item.allocation.y + item.allocation.height
+
+ if start < adj.value:
+ adj.value = start
+ elif stop > adj.value + adj.page_size:
+ adj.value = stop - adj.page_size
+
def _scroll_next(self):
allocation = self.get_allocation()
if self.orientation == gtk.ORIENTATION_HORIZONTAL:
@@ -218,6 +237,9 @@ class HTray(gtk.HBox):
def get_item_index(self, item):
return self._viewport.traybar.get_item_index(item)
+ def scroll_to_item(self, item):
+ self._viewport.scroll_to_item(item)
+
class VTray(gtk.VBox):
def __init__(self, **kwargs):
gobject.GObject.__init__(self, **kwargs)
@@ -249,6 +271,9 @@ class VTray(gtk.VBox):
def get_item_index(self, item):
return self._viewport.traybar.get_item_index(item)
+ def scroll_to_item(self, item):
+ self._viewport.scroll_to_item(item)
+
class TrayButton(ToolButton):
def __init__(self, **kwargs):
ToolButton.__init__(self, **kwargs)