Cleanup of sugar device handling code
This commit is contained in:
parent
ba08492778
commit
4b4cf9673c
@ -37,10 +37,10 @@ NM_DEVICE_STAGE_STRINGS=("Unknown",
|
|||||||
"IP Config",
|
"IP Config",
|
||||||
"IP Config Get",
|
"IP Config Get",
|
||||||
"IP Config Commit",
|
"IP Config Commit",
|
||||||
"Post-IP Start"
|
"Post-IP Start",
|
||||||
"Activated",
|
"Activated",
|
||||||
"Failed",
|
"Failed",
|
||||||
"Cancled"
|
"Canceled"
|
||||||
)
|
)
|
||||||
|
|
||||||
NM_SERVICE = 'org.freedesktop.NetworkManager'
|
NM_SERVICE = 'org.freedesktop.NetworkManager'
|
||||||
@ -192,6 +192,7 @@ class Device(gobject.GObject):
|
|||||||
self._type = DEVICE_TYPE_UNKNOWN
|
self._type = DEVICE_TYPE_UNKNOWN
|
||||||
self._udi = None
|
self._udi = None
|
||||||
self._active = False
|
self._active = False
|
||||||
|
self._act_stage = 0
|
||||||
self._strength = 0
|
self._strength = 0
|
||||||
self._link = False
|
self._link = False
|
||||||
self._valid = False
|
self._valid = False
|
||||||
@ -206,11 +207,22 @@ class Device(gobject.GObject):
|
|||||||
dev.getProperties(reply_handler=self._update_reply_cb,
|
dev.getProperties(reply_handler=self._update_reply_cb,
|
||||||
error_handler=self._update_error_cb)
|
error_handler=self._update_error_cb)
|
||||||
|
|
||||||
|
def _is_activating(self):
|
||||||
|
if self._active and self._act_stage >= 1 and self._act_stage <= 7:
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
|
def _is_activated(self):
|
||||||
|
if self._active and self._act_stage == 8:
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
def _update_reply_cb(self, *props):
|
def _update_reply_cb(self, *props):
|
||||||
self._iface = props[1]
|
self._iface = props[1]
|
||||||
self._type = props[2]
|
self._type = props[2]
|
||||||
self._udi = props[3]
|
self._udi = props[3]
|
||||||
self._active = props[4]
|
self._active = props[4]
|
||||||
|
self._act_stage = props[5]
|
||||||
self._link = props[15]
|
self._link = props[15]
|
||||||
self._caps = props[17]
|
self._caps = props[17]
|
||||||
|
|
||||||
@ -218,17 +230,21 @@ class Device(gobject.GObject):
|
|||||||
old_strength = self._strength
|
old_strength = self._strength
|
||||||
self._strength = props[14]
|
self._strength = props[14]
|
||||||
if self._strength != old_strength:
|
if self._strength != old_strength:
|
||||||
|
if self._valid:
|
||||||
self.emit('strength-changed')
|
self.emit('strength-changed')
|
||||||
self._update_networks(props[20], props[19])
|
self._update_networks(props[20], props[19])
|
||||||
elif self._type == DEVICE_TYPE_802_11_MESH_OLPC:
|
elif self._type == DEVICE_TYPE_802_11_MESH_OLPC:
|
||||||
old_strength = self._strength
|
old_strength = self._strength
|
||||||
self._strength = props[14]
|
self._strength = props[14]
|
||||||
if self._strength != old_strength:
|
if self._strength != old_strength:
|
||||||
|
if self._valid:
|
||||||
self.emit('strength-changed')
|
self.emit('strength-changed')
|
||||||
|
|
||||||
self._valid = True
|
self._valid = True
|
||||||
|
|
||||||
if self._active:
|
if self._is_activating():
|
||||||
|
self.set_state(DEVICE_STATE_ACTIVATING)
|
||||||
|
elif self._is_activated():
|
||||||
self.set_state(DEVICE_STATE_ACTIVATED)
|
self.set_state(DEVICE_STATE_ACTIVATED)
|
||||||
else:
|
else:
|
||||||
self.set_state(DEVICE_STATE_INACTIVE)
|
self.set_state(DEVICE_STATE_INACTIVE)
|
||||||
@ -257,6 +273,7 @@ class Device(gobject.GObject):
|
|||||||
return
|
return
|
||||||
|
|
||||||
# init success
|
# init success
|
||||||
|
if self._valid:
|
||||||
self.emit('network-appeared', net)
|
self.emit('network-appeared', net)
|
||||||
if active_op and net_op == active_op:
|
if active_op and net_op == active_op:
|
||||||
self.set_active_network(net)
|
self.set_active_network(net)
|
||||||
@ -295,6 +312,7 @@ class Device(gobject.GObject):
|
|||||||
else:
|
else:
|
||||||
self._strength = 0
|
self._strength = 0
|
||||||
|
|
||||||
|
if self._valid:
|
||||||
self.emit('strength-changed')
|
self.emit('strength-changed')
|
||||||
|
|
||||||
def network_appeared(self, network):
|
def network_appeared(self, network):
|
||||||
@ -308,6 +326,7 @@ class Device(gobject.GObject):
|
|||||||
if not self._networks.has_key(network):
|
if not self._networks.has_key(network):
|
||||||
return
|
return
|
||||||
|
|
||||||
|
if self._valid:
|
||||||
self.emit('network-disappeared', self._networks[network])
|
self.emit('network-disappeared', self._networks[network])
|
||||||
|
|
||||||
del self._networks[network]
|
del self._networks[network]
|
||||||
@ -323,6 +342,7 @@ class Device(gobject.GObject):
|
|||||||
self._active_network = network
|
self._active_network = network
|
||||||
|
|
||||||
# don't emit ssid-changed for networks that are not yet valid
|
# don't emit ssid-changed for networks that are not yet valid
|
||||||
|
if self._valid:
|
||||||
if self._active_network and self._active_network.is_valid():
|
if self._active_network and self._active_network.is_valid():
|
||||||
self.emit('ssid-changed')
|
self.emit('ssid-changed')
|
||||||
elif not self._active_network:
|
elif not self._active_network:
|
||||||
@ -356,6 +376,7 @@ class Device(gobject.GObject):
|
|||||||
return
|
return
|
||||||
|
|
||||||
self._state = state
|
self._state = state
|
||||||
|
if self._valid:
|
||||||
self.emit('state-changed')
|
self.emit('state-changed')
|
||||||
|
|
||||||
if self._type == DEVICE_TYPE_802_11_WIRELESS:
|
if self._type == DEVICE_TYPE_802_11_WIRELESS:
|
||||||
@ -469,6 +490,7 @@ class NMClient(gobject.GObject):
|
|||||||
|
|
||||||
def _setup_dbus(self):
|
def _setup_dbus(self):
|
||||||
self._sig_handlers = {
|
self._sig_handlers = {
|
||||||
|
'StateChange': self.state_changed_sig_handler,
|
||||||
'DeviceAdded': self.device_added_sig_handler,
|
'DeviceAdded': self.device_added_sig_handler,
|
||||||
'DeviceRemoved': self.device_removed_sig_handler,
|
'DeviceRemoved': self.device_removed_sig_handler,
|
||||||
'DeviceActivationStage': self.device_activation_stage_sig_handler,
|
'DeviceActivationStage': self.device_activation_stage_sig_handler,
|
||||||
@ -568,6 +590,9 @@ class NMClient(gobject.GObject):
|
|||||||
return
|
return
|
||||||
self._key_dialog_destroy_cb(self._key_dialog)
|
self._key_dialog_destroy_cb(self._key_dialog)
|
||||||
|
|
||||||
|
def state_changed_sig_handler(self, new_state):
|
||||||
|
logging.debug('NM State Changed to %d' % new_state)
|
||||||
|
|
||||||
def device_activation_stage_sig_handler(self, device, stage):
|
def device_activation_stage_sig_handler(self, device, stage):
|
||||||
logging.debug('Device Activation Stage "%s" for device %s' % (NM_DEVICE_STAGE_STRINGS[stage], device))
|
logging.debug('Device Activation Stage "%s" for device %s' % (NM_DEVICE_STAGE_STRINGS[stage], device))
|
||||||
|
|
||||||
@ -605,8 +630,9 @@ class NMClient(gobject.GObject):
|
|||||||
if (old and len(old)) and (not new and not len(new)):
|
if (old and len(old)) and (not new and not len(new)):
|
||||||
# NM went away
|
# NM went away
|
||||||
self._nm_present = False
|
self._nm_present = False
|
||||||
for op in self._devices.keys():
|
devs = self._devices.keys()
|
||||||
del self._devices[op]
|
for op in devs:
|
||||||
|
self._remove_device(op)
|
||||||
self._devices = {}
|
self._devices = {}
|
||||||
elif (not old and not len(old)) and (new and len(new)):
|
elif (not old and not len(old)) and (new and len(new)):
|
||||||
# NM started up
|
# NM started up
|
||||||
|
@ -110,7 +110,9 @@ class MeshModel(gobject.GObject):
|
|||||||
self._add_access_point(nm_device, nm_network)
|
self._add_access_point(nm_device, nm_network)
|
||||||
|
|
||||||
def _nm_network_disappeared_cb(self, nm_device, nm_network):
|
def _nm_network_disappeared_cb(self, nm_device, nm_network):
|
||||||
self._remove_access_point(nm_network)
|
if self._access_points.has_key(nm_network.get_op()):
|
||||||
|
ap = self._access_points[nm_network.get_op()]
|
||||||
|
self._remove_access_point(ap)
|
||||||
|
|
||||||
def _add_network_device(self, nm_device):
|
def _add_network_device(self, nm_device):
|
||||||
dtype = nm_device.get_type()
|
dtype = nm_device.get_type()
|
||||||
@ -138,13 +140,14 @@ class MeshModel(gobject.GObject):
|
|||||||
|
|
||||||
def _add_access_point(self, nm_device, nm_network):
|
def _add_access_point(self, nm_device, nm_network):
|
||||||
model = AccessPointModel(nm_device, nm_network)
|
model = AccessPointModel(nm_device, nm_network)
|
||||||
self._access_points[nm_network.get_op()] = model
|
self._access_points[model.get_id()] = model
|
||||||
self.emit('access-point-added', model)
|
self.emit('access-point-added', model)
|
||||||
|
|
||||||
def _remove_access_point(self, nm_network):
|
def _remove_access_point(self, ap):
|
||||||
self.emit('access-point-removed',
|
if not self._access_points.has_key(ap.get_id()):
|
||||||
self._access_points[nm_network.get_op()])
|
return
|
||||||
del self._access_points[nm_network.get_op()]
|
self.emit('access-point-removed', ap)
|
||||||
|
del self._access_points[ap.get_id()]
|
||||||
|
|
||||||
def get_mesh(self):
|
def get_mesh(self):
|
||||||
return self._mesh
|
return self._mesh
|
||||||
|
@ -1,7 +1,35 @@
|
|||||||
|
#
|
||||||
|
# Copyright (C) 2007, Red Hat, Inc.
|
||||||
|
#
|
||||||
|
# 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 gobject
|
import gobject
|
||||||
|
from hardware import nmclient
|
||||||
|
|
||||||
from sugar import util
|
from sugar import util
|
||||||
|
|
||||||
|
STATE_ACTIVATING = 0
|
||||||
|
STATE_ACTIVATED = 1
|
||||||
|
STATE_INACTIVE = 2
|
||||||
|
|
||||||
|
_nm_state_to_state = {
|
||||||
|
nmclient.DEVICE_STATE_ACTIVATING : STATE_ACTIVATING,
|
||||||
|
nmclient.DEVICE_STATE_ACTIVATED : STATE_ACTIVATED,
|
||||||
|
nmclient.DEVICE_STATE_INACTIVE : STATE_INACTIVE
|
||||||
|
}
|
||||||
|
|
||||||
class Device(gobject.GObject):
|
class Device(gobject.GObject):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
gobject.GObject.__init__(self)
|
gobject.GObject.__init__(self)
|
||||||
|
@ -1,3 +1,20 @@
|
|||||||
|
#
|
||||||
|
# Copyright (C) 2007, Red Hat, Inc.
|
||||||
|
#
|
||||||
|
# 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 logging
|
import logging
|
||||||
import gobject
|
import gobject
|
||||||
|
|
||||||
@ -23,6 +40,7 @@ class DevicesModel(gobject.GObject):
|
|||||||
gobject.GObject.__init__(self)
|
gobject.GObject.__init__(self)
|
||||||
|
|
||||||
self._devices = {}
|
self._devices = {}
|
||||||
|
self._sigids = {}
|
||||||
self.add_device(battery.Device())
|
self.add_device(battery.Device())
|
||||||
|
|
||||||
self._observe_network_manager()
|
self._observe_network_manager()
|
||||||
@ -45,7 +63,6 @@ class DevicesModel(gobject.GObject):
|
|||||||
self._network_device_removed_cb)
|
self._network_device_removed_cb)
|
||||||
|
|
||||||
def _network_device_added_cb(self, network_manager, nm_device):
|
def _network_device_added_cb(self, network_manager, nm_device):
|
||||||
logging.debug("got added isgnal for %s" % nm_device.get_op())
|
|
||||||
state = nm_device.get_state()
|
state = nm_device.get_state()
|
||||||
if state == nmclient.DEVICE_STATE_ACTIVATING \
|
if state == nmclient.DEVICE_STATE_ACTIVATING \
|
||||||
or state == nmclient.DEVICE_STATE_ACTIVATED:
|
or state == nmclient.DEVICE_STATE_ACTIVATED:
|
||||||
@ -57,12 +74,8 @@ class DevicesModel(gobject.GObject):
|
|||||||
def _network_device_activated_cb(self, network_manager, nm_device):
|
def _network_device_activated_cb(self, network_manager, nm_device):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def _network_device_removed_cb(self, nm_device):
|
def _network_device_removed_cb(self, network_manager, nm_device):
|
||||||
self._remove_network_device(nm_device)
|
self.remove_device(self._get_network_device(nm_device))
|
||||||
|
|
||||||
def _network_device_state_changed_cb(self, nm_device):
|
|
||||||
if nm_device.get_state() == nmclient.DEVICE_STATE_INACTIVE:
|
|
||||||
self._remove_network_device(nm_device)
|
|
||||||
|
|
||||||
def _check_network_device(self, nm_device):
|
def _check_network_device(self, nm_device):
|
||||||
if not nm_device.is_valid():
|
if not nm_device.is_valid():
|
||||||
@ -77,23 +90,26 @@ class DevicesModel(gobject.GObject):
|
|||||||
def _get_network_device(self, nm_device):
|
def _get_network_device(self, nm_device):
|
||||||
return self._devices[str(nm_device.get_op())]
|
return self._devices[str(nm_device.get_op())]
|
||||||
|
|
||||||
|
def _network_device_state_changed_cb(self, dev, param):
|
||||||
|
if dev.props.state == device.STATE_INACTIVE:
|
||||||
|
self.remove_device(dev)
|
||||||
|
|
||||||
def _add_network_device(self, nm_device):
|
def _add_network_device(self, nm_device):
|
||||||
if self._devices.has_key(str(nm_device.get_op())):
|
if self._devices.has_key(str(nm_device.get_op())):
|
||||||
logging.debug("Tried to add device %s twice" % nm_device.get_op())
|
logging.debug("Tried to add device %s twice" % nm_device.get_op())
|
||||||
return
|
return
|
||||||
|
|
||||||
dtype = nm_device.get_type()
|
dtype = nm_device.get_type()
|
||||||
logging.debug("Adding device %s type %d" % (nm_device.get_op(), dtype))
|
|
||||||
if dtype == nmclient.DEVICE_TYPE_802_11_WIRELESS:
|
if dtype == nmclient.DEVICE_TYPE_802_11_WIRELESS:
|
||||||
self.add_device(wireless.Device(nm_device))
|
dev = wireless.Device(nm_device)
|
||||||
|
self.add_device(dev)
|
||||||
|
sigid = dev.connect('notify::state', self._network_device_state_changed_cb)
|
||||||
|
self._sigids[dev] = sigid
|
||||||
if dtype == nmclient.DEVICE_TYPE_802_11_MESH_OLPC:
|
if dtype == nmclient.DEVICE_TYPE_802_11_MESH_OLPC:
|
||||||
self.add_device(mesh.Device(nm_device))
|
dev = mesh.Device(nm_device)
|
||||||
|
self.add_device(dev)
|
||||||
nm_device.connect('state-changed',
|
sigid = dev.connect('notify::state', self._network_device_state_changed_cb)
|
||||||
self._network_device_state_changed_cb)
|
self._sigids[dev] = sigid
|
||||||
|
|
||||||
def _remove_network_device(self, nm_device):
|
|
||||||
self.remove_device(self._get_network_device(nm_device))
|
|
||||||
|
|
||||||
def __iter__(self):
|
def __iter__(self):
|
||||||
return iter(self._devices.values())
|
return iter(self._devices.values())
|
||||||
@ -104,4 +120,6 @@ class DevicesModel(gobject.GObject):
|
|||||||
|
|
||||||
def remove_device(self, device):
|
def remove_device(self, device):
|
||||||
self.emit('device-disappeared', self._devices[device.get_id()])
|
self.emit('device-disappeared', self._devices[device.get_id()])
|
||||||
|
device.disconnect(self._sigids[device])
|
||||||
|
del self._sigids[device]
|
||||||
del self._devices[device.get_id()]
|
del self._devices[device.get_id()]
|
||||||
|
@ -20,22 +20,12 @@ import gobject
|
|||||||
from model.devices import device
|
from model.devices import device
|
||||||
from hardware import nmclient
|
from hardware import nmclient
|
||||||
|
|
||||||
STATE_ACTIVATING = 0
|
|
||||||
STATE_ACTIVATED = 1
|
|
||||||
STATE_INACTIVE = 2
|
|
||||||
|
|
||||||
_nm_state_to_state = {
|
|
||||||
nmclient.DEVICE_STATE_ACTIVATING : STATE_ACTIVATING,
|
|
||||||
nmclient.DEVICE_STATE_ACTIVATED : STATE_ACTIVATED,
|
|
||||||
nmclient.DEVICE_STATE_INACTIVE : STATE_INACTIVE
|
|
||||||
}
|
|
||||||
|
|
||||||
class Device(device.Device):
|
class Device(device.Device):
|
||||||
__gproperties__ = {
|
__gproperties__ = {
|
||||||
'strength' : (int, None, None, 0, 100, 0,
|
'strength' : (int, None, None, 0, 100, 0,
|
||||||
gobject.PARAM_READABLE),
|
gobject.PARAM_READABLE),
|
||||||
'state' : (int, None, None, STATE_ACTIVATING,
|
'state' : (int, None, None, device.STATE_ACTIVATING,
|
||||||
STATE_INACTIVE, 0, gobject.PARAM_READABLE)
|
device.STATE_INACTIVE, 0, gobject.PARAM_READABLE)
|
||||||
}
|
}
|
||||||
|
|
||||||
def __init__(self, nm_device):
|
def __init__(self, nm_device):
|
||||||
@ -58,10 +48,10 @@ class Device(device.Device):
|
|||||||
return self._nm_device.get_strength()
|
return self._nm_device.get_strength()
|
||||||
elif pspec.name == 'state':
|
elif pspec.name == 'state':
|
||||||
nm_state = self._nm_device.get_state()
|
nm_state = self._nm_device.get_state()
|
||||||
return _nm_state_to_state[nm_state]
|
return device._nm_state_to_state[nm_state]
|
||||||
|
|
||||||
def get_type(self):
|
def get_type(self):
|
||||||
return 'network.mesh'
|
return 'network.mesh'
|
||||||
|
|
||||||
def get_id(self):
|
def get_id(self):
|
||||||
return self._nm_device.get_op()
|
return str(self._nm_device.get_op())
|
||||||
|
@ -6,7 +6,7 @@ class Device(device.Device):
|
|||||||
self._nm_device = device
|
self._nm_device = device
|
||||||
|
|
||||||
def get_id(self):
|
def get_id(self):
|
||||||
return self._nm_device.get_op()
|
return str(self._nm_device.get_op())
|
||||||
|
|
||||||
def get_type(self):
|
def get_type(self):
|
||||||
return 'network.wired'
|
return 'network.wired'
|
||||||
|
@ -20,24 +20,14 @@ import gobject
|
|||||||
from model.devices import device
|
from model.devices import device
|
||||||
from hardware import nmclient
|
from hardware import nmclient
|
||||||
|
|
||||||
STATE_ACTIVATING = 0
|
|
||||||
STATE_ACTIVATED = 1
|
|
||||||
STATE_INACTIVE = 2
|
|
||||||
|
|
||||||
_nm_state_to_state = {
|
|
||||||
nmclient.DEVICE_STATE_ACTIVATING : STATE_ACTIVATING,
|
|
||||||
nmclient.DEVICE_STATE_ACTIVATED : STATE_ACTIVATED,
|
|
||||||
nmclient.DEVICE_STATE_INACTIVE : STATE_INACTIVE
|
|
||||||
}
|
|
||||||
|
|
||||||
class Device(device.Device):
|
class Device(device.Device):
|
||||||
__gproperties__ = {
|
__gproperties__ = {
|
||||||
'name' : (str, None, None, None,
|
'name' : (str, None, None, None,
|
||||||
gobject.PARAM_READABLE),
|
gobject.PARAM_READABLE),
|
||||||
'strength' : (int, None, None, 0, 100, 0,
|
'strength' : (int, None, None, 0, 100, 0,
|
||||||
gobject.PARAM_READABLE),
|
gobject.PARAM_READABLE),
|
||||||
'state' : (int, None, None, STATE_ACTIVATING,
|
'state' : (int, None, None, device.STATE_ACTIVATING,
|
||||||
STATE_INACTIVE, 0, gobject.PARAM_READABLE)
|
device.STATE_INACTIVE, 0, gobject.PARAM_READABLE)
|
||||||
}
|
}
|
||||||
|
|
||||||
def __init__(self, nm_device):
|
def __init__(self, nm_device):
|
||||||
@ -67,10 +57,10 @@ class Device(device.Device):
|
|||||||
return self._nm_device.get_ssid()
|
return self._nm_device.get_ssid()
|
||||||
elif pspec.name == 'state':
|
elif pspec.name == 'state':
|
||||||
nm_state = self._nm_device.get_state()
|
nm_state = self._nm_device.get_state()
|
||||||
return _nm_state_to_state[nm_state]
|
return device._nm_state_to_state[nm_state]
|
||||||
|
|
||||||
def get_type(self):
|
def get_type(self):
|
||||||
return 'network.wireless'
|
return 'network.wireless'
|
||||||
|
|
||||||
def get_id(self):
|
def get_id(self):
|
||||||
return self._nm_device.get_op()
|
return str(self._nm_device.get_op())
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
from sugar.graphics import canvasicon
|
from sugar.graphics import canvasicon
|
||||||
from sugar.graphics import color
|
from sugar.graphics import color
|
||||||
from sugar.graphics import units
|
from sugar.graphics import units
|
||||||
from model.devices.network import mesh
|
from model.devices import device
|
||||||
|
|
||||||
class DeviceView(canvasicon.CanvasIcon):
|
class DeviceView(canvasicon.CanvasIcon):
|
||||||
def __init__(self, model):
|
def __init__(self, model):
|
||||||
@ -35,12 +35,12 @@ class DeviceView(canvasicon.CanvasIcon):
|
|||||||
def _update_state(self):
|
def _update_state(self):
|
||||||
# FIXME Change icon colors once we have real icons
|
# FIXME Change icon colors once we have real icons
|
||||||
state = self._model.props.state
|
state = self._model.props.state
|
||||||
if state == mesh.STATE_ACTIVATING:
|
if state == device.STATE_ACTIVATING:
|
||||||
self.props.fill_color = color.ICON_FILL_INACTIVE
|
self.props.fill_color = color.ICON_FILL_INACTIVE
|
||||||
self.props.stroke_color = color.ICON_STROKE_INACTIVE
|
self.props.stroke_color = color.ICON_STROKE_INACTIVE
|
||||||
elif state == mesh.STATE_ACTIVATED:
|
elif state == device.STATE_ACTIVATED:
|
||||||
self.props.fill_color = None
|
self.props.fill_color = None
|
||||||
self.props.stroke_color = None
|
self.props.stroke_color = None
|
||||||
elif state == mesh.STATE_INACTIVE:
|
elif state == device.STATE_INACTIVE:
|
||||||
self.props.fill_color = color.ICON_FILL_INACTIVE
|
self.props.fill_color = color.ICON_FILL_INACTIVE
|
||||||
self.props.stroke_color = color.ICON_STROKE_INACTIVE
|
self.props.stroke_color = color.ICON_STROKE_INACTIVE
|
||||||
|
@ -20,6 +20,7 @@ from sugar.graphics import color
|
|||||||
from sugar.graphics import units
|
from sugar.graphics import units
|
||||||
from model.devices.network import wireless
|
from model.devices.network import wireless
|
||||||
from sugar.graphics.canvasicon import CanvasIcon
|
from sugar.graphics.canvasicon import CanvasIcon
|
||||||
|
from model.devices import device
|
||||||
|
|
||||||
_ICON_NAME = 'device-network-wireless'
|
_ICON_NAME = 'device-network-wireless'
|
||||||
|
|
||||||
@ -57,12 +58,12 @@ class DeviceView(CanvasIcon):
|
|||||||
def _update_state(self):
|
def _update_state(self):
|
||||||
# FIXME Change icon colors once we have real icons
|
# FIXME Change icon colors once we have real icons
|
||||||
state = self._model.props.state
|
state = self._model.props.state
|
||||||
if state == wireless.STATE_ACTIVATING:
|
if state == device.STATE_ACTIVATING:
|
||||||
self.props.fill_color = color.ICON_FILL_INACTIVE
|
self.props.fill_color = color.ICON_FILL_INACTIVE
|
||||||
self.props.stroke_color = color.ICON_STROKE_INACTIVE
|
self.props.stroke_color = color.ICON_STROKE_INACTIVE
|
||||||
elif state == wireless.STATE_ACTIVATED:
|
elif state == device.STATE_ACTIVATED:
|
||||||
self.props.fill_color = None
|
self.props.fill_color = None
|
||||||
self.props.stroke_color = None
|
self.props.stroke_color = None
|
||||||
elif state == wireless.STATE_INACTIVE:
|
elif state == device.STATE_INACTIVE:
|
||||||
self.props.fill_color = color.ICON_FILL_INACTIVE
|
self.props.fill_color = color.ICON_FILL_INACTIVE
|
||||||
self.props.stroke_color = color.ICON_STROKE_INACTIVE
|
self.props.stroke_color = color.ICON_STROKE_INACTIVE
|
||||||
|
Loading…
Reference in New Issue
Block a user