Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/view/home/HomeBox.py
blob: 95ddc78bdef5695ca86553f8b6628fbdf4fa5ed6 (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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# Copyright (C) 2008 One Laptop Per Child
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

from gettext import gettext as _

import gtk
import gobject
import hippo

from sugar.graphics import style
from sugar.graphics import iconentry
from sugar.graphics.radiotoolbutton import RadioToolButton

from view.home.activitiesring import ActivitiesRing
from view.home.activitieslist import ActivitiesList

_RING_VIEW = 0
_LIST_VIEW = 1

class HomeBox(hippo.CanvasBox, hippo.CanvasItem):
    __gtype_name__ = 'SugarHomeBox'

    def __init__(self, shell):
        hippo.CanvasBox.__init__(self)

        self._shell = shell
        self._ring_view = None
        self._list_view = None
        self._enable_xo_palette = False

        self._toolbar = HomeToolbar()
        #self._toolbar.connect('query-changed', self.__toolbar_query_changed_cb)
        self._toolbar.connect('view-changed', self.__toolbar_view_changed_cb)
        self.append(hippo.CanvasWidget(widget=self._toolbar))

        self._set_view(_LIST_VIEW)

    def __toolbar_view_changed_cb(self, toolbar, view):
        self._set_view(view)

    def _set_view(self, view):
        if view == _RING_VIEW:
            if self._list_view in self.get_children():
                self.remove(self._list_view)

            if self._ring_view is None:
                self._ring_view = ActivitiesRing(self._shell)
                if self._enable_xo_palette:
                    self._ring_view.enable_xo_palette()

            self.append(self._ring_view, hippo.PACK_EXPAND)

        elif view == _LIST_VIEW:
            if self._ring_view in self.get_children():
                self.remove(self._ring_view)

            if self._list_view is None:
                self._list_view = ActivitiesList(self._shell)

            self.append(self._list_view, hippo.PACK_EXPAND)
        else:
            raise ValueError('Invalid view: %r' % view)

    _REDRAW_TIMEOUT = 5 * 60 * 1000 # 5 minutes

    def resume(self):
        # TODO: Do we need this?
        #if self._redraw_id is None:
        #    self._redraw_id = gobject.timeout_add(self._REDRAW_TIMEOUT,
        #                                          self._redraw_activity_ring)
        #    self._redraw_activity_ring()
        pass

    def suspend(self):
        # TODO: Do we need this?
        #if self._redraw_id is not None:
        #    gobject.source_remove(self._redraw_id)
        #    self._redraw_id = None
        pass

    def _redraw_activity_ring(self):
        # TODO: Do we need this?
        #self._donut.redraw()
        return True

    def has_activities(self):
        # TODO: Do we need this?
        #return self._donut.has_activities()
        return False

    def enable_xo_palette(self):
        self._enable_xo_palette = True
        if self._ring_view is not None:
            self._ring_view.enable_xo_palette()

class HomeToolbar(gtk.Toolbar):
    __gtype_name__ = 'SugarHomeToolbar'

    __gsignals__ = {
        'query-changed': (gobject.SIGNAL_RUN_FIRST,
                          gobject.TYPE_NONE,
                          ([str])),
        'view-changed':  (gobject.SIGNAL_RUN_FIRST,
                          gobject.TYPE_NONE,
                          ([int]))
    }

    def __init__(self):
        gtk.Toolbar.__init__(self)

        self._add_separator()

        tool_item = gtk.ToolItem()
        self.insert(tool_item, -1)
        tool_item.show()

        self._search_entry = iconentry.IconEntry()
        self._search_entry.set_icon_from_name(iconentry.ICON_ENTRY_PRIMARY,
                                              'system-search')
        self._search_entry.add_clear_button()
        self._search_entry.set_width_chars(25)
        #self._search_entry.connect('activate', self._entry_activated_cb)
        #self._search_entry.connect('changed', self._entry_changed_cb)
        tool_item.add(self._search_entry)
        self._search_entry.show()

        self._add_separator(expand=True)

        ring_button = RadioToolButton(named_icon='view-radial', group=None)
        ring_button.props.label = _('Ring view')
        ring_button.props.accelerator = _('<Ctrl>R')
        ring_button.connect('toggled', self.__view_button_toggled_cb, _RING_VIEW)
        self.insert(ring_button, -1)
        ring_button.show()

        list_button = RadioToolButton(named_icon='view-list')
        list_button.props.group = ring_button
        list_button.props.label = _('List view')
        list_button.props.accelerator = _('<Ctrl>L')
        list_button.connect('toggled', self.__view_button_toggled_cb, _LIST_VIEW)
        self.insert(list_button, -1)
        list_button.show()
        list_button.props.active = True

        self._add_separator()

    def __view_button_toggled_cb(self, button, view):
        if button.props.active:
            self.emit('view-changed', view)

    def _add_separator(self, expand=False):
        separator = gtk.SeparatorToolItem()
        separator.props.draw = False
        if expand:
            separator.set_expand(True)
        else:
            separator.set_size_request(style.GRID_CELL_SIZE, style.GRID_CELL_SIZE)
        self.insert(separator, -1)
        separator.show()