2 battery.py - A Battery Status Monitor for ROX
3 (based largely on Baroque by Tilo Riemer)
6 ############################################################################
8 ## $Id: baroque.py,v 1.13 2004/01/08 04:26:11 rds Exp $
10 ## Copyright (C) 2002-2003 Rds <rds@rdsarts.com> and
11 ## Tilo Riemer <riemer@lincvs.org>
12 ## All rights reserved.
14 ## Baroque is a merge of BatMonitor and the old Baroque
16 ## Redistribution and use in source and binary forms, with or without
17 ## modification, are permitted provided that the following conditions
20 ## 1. Redistributions of source code must retain the above copyright
21 ## notice, this list of conditions and the following disclaimer.
22 ## 2. Redistributions in binary form must reproduce the above copyright
23 ## notice, this list of conditions and the following disclaimer in the
24 ## documentation and/or other materials provided with the distribution.
25 ## 3. The name of the author may not be used to endorse or promote products
26 ## derived from this software without specific prior written permission.
28 ## THIS SOFTWARE IS PROVIDED BY THE AUTHOR `AS IS'' AND ANY EXPRESS OR
29 ## IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
30 ## OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
31 ## IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
32 ## INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
33 ## NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 ## DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 ## THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 ## (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
37 ## THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 ###############################################################################
41 # standard library modules
42 import sys
, os
, time
, gtk
, gobject
, rox
43 from rox
import applet
, filer
, tasks
44 from rox
.options
import Option
51 # Options.xml processing
53 rox
.setup_app_options(APP_NAME
, site
='hayber.us')
54 Menu
.set_save_name(APP_NAME
, site
='hayber.us')
57 WARN
= Option('warn', True)
58 WARN_LEVEL
= Option('warn_level', 10)
59 TIMER
= Option('timeout', "1000")
61 #Enable notification of options changes
62 rox
.app_options
.notify()
64 BATT_TYPE
= -1 # 0 = ACPI, 1 = APM
66 # Initalize the battery object
71 OFFLINE
= acpi
.OFFLINE
72 except (ImportError, NotImplementedError, EnvironmentError):
74 import pmu
#for PowerMac support
78 except (ImportError, NotImplementedError, EnvironmentError):
84 except (ImportError, NotImplementedError, EnvironmentError):
85 rox
.croak(_("Sorry, but we could not load a Power Management module. Your system is not configured with power management support."))
88 class Battery(applet
.Applet
):
89 """A Battery Status Monitor Applet"""
97 def __init__(self
, id):
98 """Initialize applet."""
99 applet
.Applet
.__init
__(self
, id)
101 # load the applet icon
102 self
.image
= gtk
.Image()
105 'battery0', 'battery1', 'battery2', 'battery3', 'battery4',
106 'battery5', 'battery6', 'battery7', 'battery8', 'battery9',
109 self
.images
.append(gtk
.gdk
.pixbuf_new_from_file(os
.path
.join(rox
.app_dir
, 'images', name
+'.svg')))
111 self
.pixbuf
= self
.images
[0]
112 self
.image
.set_from_pixbuf(self
.pixbuf
)
116 self
.vertical
= self
.get_panel_orientation() in ('Right', 'Left')
118 self
.set_size_request(8, -1)
120 self
.set_size_request(-1, 8)
123 self
.tooltips
= gtk
.Tooltips()
129 self
.add_events(gtk
.gdk
.BUTTON_PRESS_MASK
)
130 self
.connect('button-press-event', self
.button_press
)
131 self
.connect('size-allocate', self
.resize
)
132 self
.connect('delete_event', self
.quit
)
133 rox
.app_options
.add_notify(self
.get_options
)
135 gobject
.timeout_add(int(TIMER
.int_value
) * 100, self
.update_display
, BATTERY
)
136 gobject
.timeout_add(5000, self
.update_tooltip
)
138 self
.update_display(BATTERY
)
139 self
.update_tooltip()
142 def update_display(self
, BATTERY
):
143 """Updates all the parts of our applet, and cleans it up if needed."""
145 percent
= BATTERY
.percent()
147 if WARN
.value
== 'True':
148 if (BATTERY
.charging_state() == OFFLINE
and percent
<= WARN_LEVEL
.int_value
):
149 if self
.warned
== False:
150 rox
.info(_("Warning. Battery is currently at %d%%") % (BATTERY
.percent(),))
155 if BATTERY
.charging_state():
158 pb
= self
.images
[(percent
/10)]
160 self
.resize_image(self
.size
)
162 return 1 # to keep the timer going!
165 def update_tooltip(self
):
166 self
.tooltips
.set_tip(self
, self
.status() + self
.percent() + '%')
167 return 1 #to keep timer running
172 if BATTERY
.charging_state() == 1:
173 txt
= _("AC Online: ")
174 elif BATTERY
.charging_state() == 2:
175 txt
= _("Charging: ")
177 # Discharing from the battery
184 temp2
= BATTERY
.time()
185 temp
= int(temp2
/ 60)
188 txt
= _("Calculating... ")
190 txt
= "(%d:%02d) " % (temp
, temp2
)
193 temp
= BATTERY
.estimated_lifetime()
194 temp2
= int(60 * (temp
- int(temp
)))
195 txt
= "(%d:%02d) " % (temp
, temp2
)
201 return str(BATTERY
.percent())
204 def resize(self
, widget
, rectangle
):
205 """Called when the panel sends a size."""
211 if size
!= self
.size
:
212 self
.resize_image(size
)
214 def resize_image(self
, size
):
215 """Resize the application image."""
216 scaled_pixbuf
= self
.pixbuf
.scale_simple(size
, size
, gtk
.gdk
.INTERP_BILINEAR
)
217 self
.image
.set_from_pixbuf(scaled_pixbuf
)
220 def button_press(self
, window
, event
):
221 """Handle mouse clicks by popping up the matching menu."""
222 if event
.button
== 1:
224 elif event
.button
== 2:
226 elif event
.button
== 3:
227 self
.appmenu
.popup(self
, event
, self
.position_menu
)
229 def get_panel_orientation(self
):
230 """ Return panel orientation and margin for displaying a popup menu.
231 Position in ('Top', 'Bottom', 'Left', 'Right').
233 pos
= self
.socket
.property_get('_ROX_PANEL_MENU_POS', 'STRING', False)
236 side
, margin
= pos
.split(',')
239 side
, margin
= None, 2
242 def get_options(self
, widget
=None, rebuild
=False, response
=False):
243 """Used as the notify callback when options change."""
246 def show_options(self
, button
=None):
247 """Open the options edit dialog."""
251 """Display an InfoWin self."""
252 from rox
import InfoWin
253 InfoWin
.infowin(APP_NAME
)
255 def build_appmenu(self
):
256 """Build the right-click app menu."""
258 items
.append(Menu
.Action(_('Info...'), 'get_info', '', gtk
.STOCK_DIALOG_INFO
))
259 items
.append(Menu
.Action(_('Options...'), 'show_options', '', gtk
.STOCK_PREFERENCES
))
260 items
.append(Menu
.Separator())
261 items
.append(Menu
.Action(_('Close'), 'quit', '', gtk
.STOCK_CLOSE
))
262 self
.appmenu
= Menu
.Menu('other', items
)
263 self
.appmenu
.attach(self
, self
)
265 def quit(self
, *args
):
266 """Quit applet and close everything."""