Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/graphics/tray.py
blob: cf646a6f605070d820ad08bd9a34dc8b5b9b0e05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# Copyright (C) 2007, One Laptop Per Child
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.

import gobject
import gtk

from sugar.graphics.toolbutton import ToolButton
from sugar.graphics.icon import Icon

class _TrayViewport(gtk.Viewport):
    __gproperties__ = {
        'can-scroll' : (bool, None, None, False,
                        gobject.PARAM_READABLE),
    }

    def __init__(self):
        self._can_scroll = False

        gobject.GObject.__init__(self)

        self.set_shadow_type(gtk.SHADOW_NONE)

        self.traybar = gtk.Toolbar()
        self.traybar.set_show_arrow(False)
        self.add(self.traybar)
        self.traybar.show()

        self.connect('size_allocate', self._size_allocate_cb)

    def scroll_right(self):
        adj = self.get_hadjustment()
        new_value = adj.value + self.allocation.width
        adj.value = min(new_value, adj.upper - self.allocation.width)

    def scroll_left(self):
        adj = self.get_hadjustment()
        new_value = adj.value - self.allocation.width
        adj.value = max(adj.lower, new_value)

    def do_get_property(self, pspec):
        if pspec.name == 'can-scroll':
            return self._can_scroll

    def _size_allocate_cb(self, viewport, allocation):
        bar_requisition = self.traybar.get_child_requisition()
        if bar_requisition[0] < allocation.width:
            can_scroll = False
        else:
            can_scroll = True

        if can_scroll != self._can_scroll:
            self._can_scroll = can_scroll
            self.notify('can-scroll')

class HTray(gtk.HBox):
    def __init__(self, **kwargs):
        gobject.GObject.__init__(self, **kwargs)

        self._scroll_left = gtk.Button()
        self._scroll_left.set_relief(gtk.RELIEF_NONE)
        self._scroll_left.connect('clicked', self._scroll_left_cb)

        icon = Icon(icon_name='go-left', icon_size=gtk.ICON_SIZE_MENU)
        self._scroll_left.set_image(icon)
        icon.show()

        self.pack_start(self._scroll_left, False)

        self._viewport = _TrayViewport()
        self._viewport.connect('notify::can-scroll',
                               self._viewport_can_scroll_changed_cb)
        self.pack_start(self._viewport)
        self._viewport.show()

        self._scroll_right = gtk.Button()
        self._scroll_right.set_relief(gtk.RELIEF_NONE)
        self._scroll_right.connect('clicked', self._scroll_right_cb)

        icon = Icon(icon_name='go-right', icon_size=gtk.ICON_SIZE_MENU)
        self._scroll_right.set_image(icon)
        icon.show()

        self.pack_start(self._scroll_right, False)

    def _viewport_can_scroll_changed_cb(self, viewport, pspec):
        if self._viewport.props.can_scroll:
            self._scroll_left.show()
            self._scroll_right.show()

    def _scroll_left_cb(self, button):
        self._viewport.scroll_left()

    def _scroll_right_cb(self, button):
        self._viewport.scroll_right()

    def add_item(self, item, index=-1):
        self._viewport.traybar.insert(item, index)

    def remove_item(self, index):
        self._viewport.traybar.remove(item)

class TrayButton(ToolButton):
    def __init__(self, **kwargs):
        ToolButton.__init__(self, **kwargs)