sugar-toolkit-gtk3/shell/model/devices/wirelessnetwork.py

30 lines
753 B
Python
Raw Normal View History

import gobject
from model.devices import device
class Device(device.Device):
__gproperties__ = {
'strength' : (int, None, None, 0, 100, 0,
gobject.PARAM_READABLE)
}
2007-02-25 02:00:40 +01:00
def __init__(self, nm_device):
device.Device.__init__(self)
2007-02-25 12:36:44 +01:00
self._nm_device = nm_device
self._nm_device.connect('strength-changed',
self._strength_changed_cb)
def _strength_changed_cb(self, nm_device):
self.notity('strength')
def do_get_property(self, pspec):
if pspec.name == 'strength':
return self._nm_device.get_strength()
def get_type(self):
2007-02-25 02:00:40 +01:00
return 'wirelessnetwork'
2007-02-25 12:36:44 +01:00
def get_id(self):
return self._nm_device.get_op()