2007-06-24 15:01:30 +02:00
|
|
|
# Copyright (C) 2006-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
|
|
|
|
|
2007-02-28 15:42:41 +01:00
|
|
|
from sugar.graphics import canvasicon
|
2007-03-15 19:19:38 +01:00
|
|
|
from sugar.graphics import units
|
2007-02-28 15:42:41 +01:00
|
|
|
|
|
|
|
_ICON_NAME = 'device-battery'
|
2007-02-20 11:48:03 +01:00
|
|
|
|
2007-02-28 16:19:01 +01:00
|
|
|
class DeviceView(canvasicon.CanvasIcon):
|
2007-02-20 11:48:03 +01:00
|
|
|
def __init__(self, model):
|
2007-03-15 19:19:38 +01:00
|
|
|
canvasicon.CanvasIcon.__init__(self, scale=units.MEDIUM_ICON_SCALE)
|
2007-02-28 16:19:01 +01:00
|
|
|
self._model = model
|
2007-02-28 15:42:41 +01:00
|
|
|
|
2007-03-12 16:02:36 +01:00
|
|
|
model.connect('notify::level', self._level_changed_cb)
|
2007-03-12 10:51:48 +01:00
|
|
|
|
|
|
|
self._update_level()
|
|
|
|
|
|
|
|
def _update_level(self):
|
|
|
|
self.props.icon_name = canvasicon.get_icon_state(
|
|
|
|
_ICON_NAME, self._model.props.level)
|
|
|
|
|
2007-03-12 16:02:36 +01:00
|
|
|
def _level_changed_cb(self, pspec, param):
|
2007-03-12 10:51:48 +01:00
|
|
|
self._update_level()
|
|
|
|
|