Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activity.py
blob: 90ae7650aa35ef1b6ebd8eceebb6fadb48ecb1f0 (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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
# Copyright 2012 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

import os
import logging
#from gettext import gettext as _
import gettext
import math

import gtk
import gobject
import gconf

from sugar.activity import activity
from sugar.graphics.toolbarbox import ToolbarBox
from sugar.activity.widgets import ActivityToolbarButton
from sugar.activity.widgets import StopButton
from sugar.graphics import style
from sugar.graphics.toolbutton import ToolButton
from sugar.graphics.icon import Icon

DEFAULT_CHANGE_IMAGE_TIME = 1.5
POWERD_INHIBIT_DIR = '/var/run/powerd-inhibit-suspend'


class WelcomeActivity(activity.Activity):
    """WelcomeActivity class as specified in activity.info"""

    def __init__(self, handle):
        activity.Activity.__init__(self, handle)

        # we do not have collaboration features
        # make the share option insensitive
        self.max_participants = 1

        # toolbar with the new toolbar redesign
        toolbar_box = ToolbarBox()

        activity_button = ActivityToolbarButton(self)
        toolbar_box.toolbar.insert(activity_button, 0)

        toolbar_box.toolbar.insert(gtk.SeparatorToolItem(), -1)

        self.image_viewer = ImageCollectionViewer(False)

        prev_bt = ToolButton("go-previous-paired")
        prev_bt.connect("clicked", self.image_viewer.prev_anim_clicked_cb,
                None)
        toolbar_box.toolbar.insert(prev_bt, -1)

        next_bt = ToolButton("go-next-paired")
        next_bt.connect("clicked", self.image_viewer.next_anim_clicked_cb,
                None)
        toolbar_box.toolbar.insert(next_bt, -1)

        separator = gtk.SeparatorToolItem()
        separator.props.draw = False
        separator.set_expand(True)
        toolbar_box.toolbar.insert(separator, -1)

        stop_button = StopButton(self)
        toolbar_box.toolbar.insert(stop_button, -1)

        self.set_toolbar_box(toolbar_box)
        toolbar_box.show_all()

        self.modify_bg(gtk.STATE_NORMAL, style.COLOR_WHITE.get_gdk_color())
        self.set_canvas(self.image_viewer)

    def can_close(self):
        self.image_viewer.finish()
        return True


class CustomButton(gtk.EventBox):

    def __init__(self, icon, size):
        super(gtk.EventBox, self).__init__()
        image = gtk.Image()
        path = os.path.expanduser('~/Activities/Welcome.activity/icons/')
        pxb = gtk.gdk.pixbuf_new_from_file_at_size('%s/%s.svg' % (path, icon),
                size, size)
        image.set_from_pixbuf(pxb)
        self.add(image)
        self.modify_bg(gtk.STATE_NORMAL, style.COLOR_WHITE.get_gdk_color())


class ImageCollectionViewer(gtk.VBox):

    __gtype_name__ = 'WelcomeDialog'

    def __init__(self, start_window=True):
        super(gtk.VBox, self).__init__()
        self.using_powerd = self._verify_powerd_directory()
        self._inhibit_suspend()

        self.image = gtk.Image()
        self.pack_start(self.image, True, True, padding=0)

        # images management
        images_path = \
                os.path.expanduser('~/Activities/Welcome.activity/images/')

        self.anim_order = 0
        self.image_order = 0
        self.auto_change_anim = True
        self.animation_list = []
        for fname in sorted(os.listdir(images_path)):
            if os.path.isdir(images_path + fname):
                anim_path = images_path + fname
                logging.debug('Animation dir file: %s', anim_path)
                animation_images_list = []
                for imagefname in sorted(os.listdir(anim_path)):
                    image_path = os.path.join(anim_path, imagefname)
                    animation_images_list.append(image_path)
                    logging.debug('Image file: %s', image_path)
                self.animation_list.append(animation_images_list)
            else:
                self.animation_list.append([images_path + fname])

        if self.animation_list:
            self._update_image()

        if start_window:
            # Create bottom controls
            bottom_toolbar = gtk.HBox()
            self.pack_start(bottom_toolbar, False, padding=style.zoom(30))

            left_box = gtk.HBox()
            bottom_toolbar.pack_start(left_box, False, padding=0)

            center_align = gtk.Alignment(0.5, 0, 0, 0)
            center_box = gtk.HBox()
            center_align.add(center_box)
            bottom_toolbar.pack_start(center_align, True, True, padding=0)

            right_box = gtk.HBox()
            bottom_toolbar.pack_start(right_box, False, padding=0)

            # init gettext
            locale_path = \
                    os.path.expanduser('~/Activities/Welcome.activity/locale/')
            gettext.bindtextdomain('org.laptop.WelcomeActivity', locale_path)
            gettext.textdomain('org.laptop.WelcomeActivity')
            _ = gettext.gettext

            _next_button = gtk.Button()
            _next_button.set_label(_('Next'))
            next_image = Icon(icon_name='go-right')
            _next_button.set_image(next_image)
            _next_button.connect('clicked', self.__next_clicked_cb)

            self.sequence_view = SequenceView(len(self.animation_list))

            right_box.pack_end(_next_button, False, False,
                    padding=style.zoom(30))
            bt_width, bt_height = _next_button.size_request()

            prev_bt = CustomButton('go-previous-paired-grey', bt_height)
            center_box.pack_start(prev_bt, False, False, 5)
            prev_bt.connect('button-press-event', self.prev_anim_clicked_cb)

            center_box.pack_start(self.sequence_view, False, False, padding=5)

            next_bt = CustomButton('go-next-paired-grey', bt_height)
            center_box.pack_start(next_bt, False, False, 5)
            next_bt.connect('button-press-event', self.next_anim_clicked_cb)

            # do the right_box and left_box have the same size
            width = int(gtk.gdk.screen_width() / 4)
            right_box.set_size_request(width, -1)
            left_box.set_size_request(width, -1)

        else:
            center_align = gtk.Alignment(0.5, 0, 0, 0)
            self.pack_start(center_align, False, padding=2)
            self.sequence_view = SequenceView(len(self.animation_list))
            center_align.add(self.sequence_view)

        self.show_all()

        # calculate space available for images
        #   (only to tell to the designers)
        height_av = gtk.gdk.screen_height() - style.GRID_CELL_SIZE * 2
        width_av = gtk.gdk.screen_width()
        print 'Size available for image: %d x %d' % (width_av, height_av)

    def __next_clicked_cb(self, button):
        self._allow_suspend()
        gtk.main_quit()

    def auto_change_image(self):
        # Change to the next image in the animation,
        # if is the last, change to the next animation
        if self.image_order < len(self.animation_list[self.anim_order]) - 1:
            self.image_order += 1
            self._update_image()
        else:
            if self.auto_change_anim:
                self.next_anim_clicked_cb(None, None)
            else:
                self.image_order = 0
                self._update_image()
        return False

    def next_anim_clicked_cb(self, button, event):
        if button is not None:
            gobject.source_remove(self.timer_id)
            self.auto_change_anim = False
        self.image_order = 0
        self.anim_order += 1
        if self.anim_order == len(self.animation_list):
            self.anim_order = 0
        if self.sequence_view is not None:
            self.sequence_view.set_value(self.anim_order + 1)

        self.get_root_window().set_cursor(gtk.gdk.Cursor(gtk.gdk.WATCH))
        gobject.idle_add(self._update_image)

    def prev_anim_clicked_cb(self, button, event):
        if button is not None:
            gobject.source_remove(self.timer_id)
            self.auto_change_anim = False
        self.image_order = 0
        self.anim_order -= 1
        if self.anim_order < 0:
            self.anim_order = len(self.animation_list) - 1
        if self.sequence_view is not None:
            self.sequence_view.set_value(self.anim_order + 1)

        self.get_root_window().set_cursor(gtk.gdk.Cursor(gtk.gdk.WATCH))
        gobject.idle_add(self._update_image)

    def _update_image(self):
        image_file_name = \
                self.animation_list[self.anim_order][self.image_order]
        self.image.set_from_file(image_file_name)
        self.get_root_window().set_cursor(gtk.gdk.Cursor(gtk.gdk.LEFT_PTR))
        time = int(DEFAULT_CHANGE_IMAGE_TIME * 1000)
        if self.image_order == 0:
            time = time * 2
        self.timer_id = gobject.timeout_add(time, self.auto_change_image)

    def finish(self):
        self._allow_suspend()

    def _verify_powerd_directory(self):
        using_powerd = os.access(POWERD_INHIBIT_DIR, os.W_OK)
        logging.debug("using_powerd: %d", using_powerd)
        return using_powerd

    def _inhibit_suspend(self):
        if self.using_powerd:
            flag_file_name = self._powerd_flag_name()
            try:
                file(flag_file_name, 'w').write('')
                logging.debug("inhibit_suspend file is %s", flag_file_name)
            except OSError, IOError:
                pass

    def _allow_suspend(self):
        if self.using_powerd:
            flag_file_name = self._powerd_flag_name()
            try:
                os.unlink(flag_file_name)
                logging.debug("allow_suspend unlinking %s", flag_file_name)
            except OSError, IOError:
                pass

    def _powerd_flag_name(self):
        return POWERD_INHIBIT_DIR + "/%u" % os.getpid()


class SequenceView(gtk.DrawingArea):

    def __init__(self, cant, point_size=10):
        super(gtk.DrawingArea, self).__init__()
        self._cant = cant
        self._value = 1
        self._point_size = point_size
        logging.error('init SequenceView cant= %d', self._cant)
        self.set_size_request(self._point_size * self._cant * 2,
                self._point_size)
        self.connect('expose_event', self.__expose_cb)

        def size_allocate_cb(widget, allocation):
            self._width, self._height = allocation.width, allocation.height
            self.disconnect(self._setup_handle)

        self._setup_handle = self.connect('size_allocate',
                                          size_allocate_cb)

    def __expose_cb(self, widget, event):
        rect = self.get_allocation()
        ctx = widget.window.cairo_create()
        # set a clip region for the expose event
        ctx.rectangle(event.area.x, event.area.y, event.area.width,
                event.area.height)
        ctx.clip()
        self.draw(ctx)

    def set_value(self, value):
        self._value = value
        self.queue_draw()

    def draw(self, ctx):
        if self._cant == 0:
            return

        ctx.save()
        radio = self._point_size / 2.0
        ctx.translate(0, 0)
        ctx.rectangle(0, 0, self._width, self._height)
        ctx.set_source_rgb(1.0, 1.0, 1.0)
        ctx.fill()
        ctx.translate(radio, self._height / 2 - radio)
        for n in range(self._cant):
            if n < self._value:
                ctx.set_source_rgb(0.913, 0.733, 0.0)  # eebb00
            else:
                ctx.set_source_rgb(0.33, 0.33, 0.33)  # grey

            ctx.arc(radio, radio, radio, 0., 2 * math.pi)
            ctx.fill()

            ctx.translate(self._point_size * 2, 0)
        ctx.restore()


def set_fonts():
    client = gconf.client_get_default()
    face = client.get_string('/desktop/sugar/font/default_face')
    size = client.get_float('/desktop/sugar/font/default_size')
    settings = gtk.settings_get_default()
    settings.set_property("gtk-font-name", "%s %f" % (face, size))


def main():
    set_fonts()
    win = gtk.Window()
    image_viewer = ImageCollectionViewer()
    win.add(image_viewer)
    win.set_size_request(gtk.gdk.screen_width(), gtk.gdk.screen_height())
    win.set_position(gtk.WIN_POS_CENTER_ALWAYS)
    win.set_decorated(False)
    win.modify_bg(gtk.STATE_NORMAL, style.COLOR_WHITE.get_gdk_color())

    win.show_all()
    win.connect("destroy", gtk.main_quit)
    gtk.main()

if __name__ == "__main__":
    main()