pamac-classic/pamac-tray

109 lines
3.0 KiB
Plaintext
Raw Normal View History

2013-02-10 11:59:53 -03:00
#! /usr/bin/python
# -*-coding:utf-8-*-
2013-02-02 10:02:18 -03:00
2013-02-22 12:43:52 -03:00
from gi.repository import Gtk, GObject
from subprocess import call
2013-03-18 07:07:58 -03:00
from pamac import common, transaction
2013-02-11 11:45:24 -03:00
import dbus
2013-02-16 13:27:46 -03:00
import threading
2013-02-11 11:45:24 -03:00
2013-02-22 12:43:52 -03:00
GObject.threads_init()
2013-02-11 11:45:24 -03:00
bus = dbus.SystemBus()
2013-02-10 11:59:53 -03:00
2013-03-18 07:07:58 -03:00
icon = ''
info = ''
update_icon = '/usr/share/pamac/icons/scalable/status/update-normal.svg'
update_info = '{} Updates Available'
noupdate_icon = '/usr/share/pamac/icons/scalable/status/update-enhancement.svg'
noupdate_info = ' No Update Available'
2013-02-10 11:59:53 -03:00
class Tray:
2013-02-16 13:27:46 -03:00
def __init__(self):
2013-02-10 11:59:53 -03:00
self.statusIcon = Gtk.StatusIcon()
self.statusIcon.set_visible(True)
self.menu = Gtk.Menu()
2013-02-16 13:27:46 -03:00
self.menuItem = Gtk.ImageMenuItem('Install/Check for updates')
2013-02-10 11:59:53 -03:00
self.menuItem.connect('activate', self.execute_update, self.statusIcon)
self.menu.append(self.menuItem)
2013-02-16 13:27:46 -03:00
self.menuItem = Gtk.ImageMenuItem('Run pamac-manager')
2013-02-10 11:59:53 -03:00
self.menuItem.connect('activate', self.execute_manager, self.statusIcon)
self.menu.append(self.menuItem)
self.menuItem = Gtk.ImageMenuItem('Quit')
self.menuItem.connect('activate', self.quit_tray, self.statusIcon)
self.menu.append(self.menuItem)
self.statusIcon.connect('popup-menu', self.popup_menu_cb, self.menu)
2013-03-18 07:07:58 -03:00
self.statusIcon.connect('activate', self.activate_cb, self.menu)
2013-02-10 11:59:53 -03:00
def execute_update(self, widget, event, data = None):
2013-02-22 12:43:52 -03:00
call(['/usr/bin/pamac-updater'])
2013-02-10 11:59:53 -03:00
def execute_manager(self, widget, event, data = None):
2013-02-22 12:43:52 -03:00
call(['/usr/bin/pamac-manager'])
2013-02-10 11:59:53 -03:00
def quit_tray(self, widget, data = None):
2013-02-16 13:27:46 -03:00
t.shutdown()
2013-02-10 11:59:53 -03:00
Gtk.main_quit()
def popup_menu_cb(self, widget, button, time, data = None):
if button == 3:
if data:
data.show_all()
data.popup(None, None, Gtk.StatusIcon.position_menu, self.statusIcon, 3, time)
2013-03-18 07:07:58 -03:00
def activate_cb(self, widget, data = None):
call(['notify-send', '-i', icon, '-u', 'normal', 'Pamac', info])
2013-02-16 13:27:46 -03:00
def update_icon(self, icon, info):
self.statusIcon.set_from_file(icon)
self.statusIcon.set_tooltip_markup(info)
2013-02-10 11:59:53 -03:00
2013-02-16 13:27:46 -03:00
class PeriodicTask(threading.Thread):
"""Thread that executes a task every N seconds"""
def __init__(self):
threading.Thread.__init__(self)
self._finished = threading.Event()
2013-02-23 13:02:53 -03:00
self._interval = 3600*3
2013-02-16 13:27:46 -03:00
def setInterval(self, interval):
"""Set the number of seconds we sleep between executing our task"""
self._interval = interval
def shutdown(self):
"""Stop this thread"""
self._finished.set()
def run(self):
while 1:
if self._finished.isSet():
return
self.task()
# sleep for interval or until shutdown
self._finished.wait(self._interval)
def task(self):
2013-03-18 07:07:58 -03:00
call(['/usr/bin/pamac-refresh'])
2013-02-16 13:27:46 -03:00
2013-02-23 13:02:53 -03:00
def set_icon(updates):
2013-03-18 07:07:58 -03:00
global icon
global info
2013-02-10 11:59:53 -03:00
if updates:
2013-03-18 07:07:58 -03:00
icon = update_icon
info = update_info.format(updates)
if not common.pid_file_exists():
call(['notify-send', '-i', icon, '-u', 'normal', 'Pamac', info])
2013-02-10 11:59:53 -03:00
else:
2013-03-18 07:07:58 -03:00
icon = noupdate_icon
info = noupdate_info
2013-02-22 12:43:52 -03:00
print(info)
2013-02-16 13:27:46 -03:00
tray.update_icon(icon, info)
2013-02-23 13:02:53 -03:00
bus.add_signal_receiver(set_icon, dbus_interface = "org.manjaro.pamac", signal_name = "EmitAvailableUpdates")
2013-02-11 11:45:24 -03:00
2013-02-22 12:43:52 -03:00
tray = Tray()
#set_icon()
2013-02-16 13:27:46 -03:00
t = PeriodicTask()
t.start()
2013-02-22 12:43:52 -03:00
Gtk.main()