2007-03-10 23:16:40 +01:00
|
|
|
# Copyright (C) 2007, Eduardo Silva (edsiper@gmail.com).
|
|
|
|
#
|
|
|
|
# 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 gtk
|
|
|
|
import gobject
|
|
|
|
|
|
|
|
from label import Label
|
2007-06-10 23:19:59 +02:00
|
|
|
from graphics.box import BoxGraphic
|
2007-03-10 23:16:40 +01:00
|
|
|
|
|
|
|
class XO_Battery(gtk.Fixed):
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
gtk.Fixed.__init__(self)
|
|
|
|
|
2007-06-12 20:32:48 +02:00
|
|
|
self._frame_text = 'Battery Status'
|
|
|
|
self.frame = gtk.Frame(self._frame_text)
|
2007-03-10 23:16:40 +01:00
|
|
|
self.set_border_width(10)
|
|
|
|
|
|
|
|
self._battery_charge = self._get_battery_status()
|
|
|
|
|
2007-06-10 23:19:59 +02:00
|
|
|
self._battery_box = BoxGraphic()
|
|
|
|
self._battery_box.set_size_request(70, 150)
|
|
|
|
self._battery_box.set_capacity(self._battery_charge)
|
2007-03-10 23:16:40 +01:00
|
|
|
|
|
|
|
fixed = gtk.Fixed();
|
|
|
|
fixed.set_border_width(10)
|
2007-06-10 23:19:59 +02:00
|
|
|
fixed.add(self._battery_box)
|
2007-03-10 23:16:40 +01:00
|
|
|
|
|
|
|
hbox = gtk.HBox(False, 0)
|
|
|
|
hbox.pack_start(fixed, False, False, 4)
|
|
|
|
|
|
|
|
# Battery info
|
|
|
|
table = gtk.Table(2, 2)
|
|
|
|
table.set_border_width(5)
|
|
|
|
table.set_col_spacings(7)
|
|
|
|
table.set_row_spacings(7)
|
|
|
|
|
|
|
|
label_charge = Label('Charge: ' , Label.DESCRIPTION)
|
|
|
|
self.label_charge_value = Label(str(self._battery_charge) + '%', Label.DESCRIPTION)
|
2007-06-10 23:19:59 +02:00
|
|
|
|
2007-03-10 23:16:40 +01:00
|
|
|
table.attach(label_charge, 0, 1, 0, 1)
|
|
|
|
table.attach(self.label_charge_value, 1,2, 0,1)
|
|
|
|
|
|
|
|
# Charging
|
|
|
|
"""
|
|
|
|
hbox_charging = gtk.HBox(False, 2)
|
|
|
|
l_charging = gtk.Label('Charging: ')
|
|
|
|
l_charging.set_justify(gtk.JUSTIFY_LEFT)
|
|
|
|
hbox_charging.pack_start(l_charging, False, False, 0)
|
|
|
|
|
|
|
|
self._label_charging = gtk.Label('No')
|
|
|
|
self._label_charging.set_justify(gtk.JUSTIFY_LEFT)
|
|
|
|
|
|
|
|
hbox_charging.pack_start(self._label_charging, False, False, 0)
|
|
|
|
"""
|
|
|
|
|
|
|
|
alignment = gtk.Alignment(0,0,0,0)
|
|
|
|
alignment.add(table)
|
|
|
|
|
|
|
|
hbox.pack_start(alignment, False, False, 0)
|
|
|
|
self.frame.add(hbox)
|
|
|
|
self.add(self.frame)
|
|
|
|
self.show_all()
|
|
|
|
|
2007-06-12 20:32:48 +02:00
|
|
|
def update_status(self):
|
2007-03-10 23:16:40 +01:00
|
|
|
|
2007-03-10 23:37:44 +01:00
|
|
|
new_charge = self._get_battery_status()
|
2007-06-12 20:32:48 +02:00
|
|
|
frame_label = str(self._battery_charge) + '%'
|
|
|
|
|
2007-03-10 23:37:44 +01:00
|
|
|
if new_charge != self._battery_charge:
|
|
|
|
self._battery_charge = self._get_battery_status()
|
2007-06-12 20:32:48 +02:00
|
|
|
self.label_charge_value.set_text(frame_label)
|
2007-06-10 23:19:59 +02:00
|
|
|
self._battery_box.set_capacity(self._battery_charge)
|
2007-03-10 23:37:44 +01:00
|
|
|
|
2007-03-10 23:16:40 +01:00
|
|
|
def _get_battery_status(self):
|
|
|
|
battery_class_path = '/sys/class/battery/psu_0/'
|
|
|
|
capacity_path = battery_class_path + 'capacity_percentage'
|
|
|
|
try:
|
|
|
|
f = open(capacity_path, 'r')
|
|
|
|
val = f.read().split('\n')
|
|
|
|
capacity = int(val[0])
|
|
|
|
f.close()
|
|
|
|
except:
|
|
|
|
capacity = 0
|
|
|
|
|
|
|
|
return capacity
|