Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/extensions/deviceicon/volume.py
blob: d70c9371d6d43a5ac56358781a6f18452d1df574 (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
# 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

from sugar.graphics.tray import TrayIcon
from sugar.graphics.palette import Palette

from jarabe.model import volume

_icons = {}

class DeviceView(TrayIcon):

    FRAME_POSITION_RELATIVE = 800

    def __init__(self, model):
        TrayIcon.__init__(self, icon_name=model.icon_name,
                          xo_color=model.icon_color)
        self._model = model

    def create_palette(self):
        return VolumePalette(self._model)

class VolumePalette(Palette):
    def __init__(self, model):
        Palette.__init__(self, label=model.name)
        self._model = model

        menu_item = gtk.MenuItem(_('Unmount'))
        menu_item.connect('activate', self._unmount_activated_cb)
        self.menu.append(menu_item)
        menu_item.show()

    def _unmount_activated_cb(self, menu_item):
        self._model.unmount()

def setup(tray):
    volumes_manager = volume.get_volumes_manager()

    for vol in volumes_manager.get_volumes():
        _add_device(vol, tray)

    volumes_manager.connect('volume-added', _volume_added_cb, tray)
    volumes_manager.connect('volume-removed', _volume_removed_cb, tray)

def _volume_added_cb(volumes_manager, vol, tray):
    _add_device(vol, tray)

def _volume_removed_cb(volumes_manager, vol, tray):
    _remove_device(vol, tray)

def _add_device(volume, tray):
    icon = DeviceView(volume)
    _icons[volume] = icon
    tray.add_device(icon)

def _remove_device(volume, tray):
    icon = _icons[volume]
    tray.remove_device(icon)
    del _icons[volume]