use appindicator to also show icon in unity
This commit is contained in:
parent
6ade6c0928
commit
f57b75ac03
1 changed files with 34 additions and 15 deletions
|
@ -8,16 +8,32 @@ import _thread
|
||||||
import gi
|
import gi
|
||||||
gi.require_version('Gtk', '3.0')
|
gi.require_version('Gtk', '3.0')
|
||||||
from gi.repository import Gtk, GLib
|
from gi.repository import Gtk, GLib
|
||||||
|
try:
|
||||||
|
gi.require_version('AppIndicator3', '0.1')
|
||||||
|
from gi.repository import AppIndicator3 as appindicator
|
||||||
|
except:
|
||||||
|
appindicator = None
|
||||||
|
|
||||||
|
|
||||||
base = dirname(dirname(dirname(abspath(__file__))))
|
base = dirname(dirname(dirname(abspath(__file__))))
|
||||||
icon = os.path.join(base, 'openmedialibrary/static/png/oml.png')
|
icon = os.path.join(base, 'openmedialibrary/static/png/oml.png')
|
||||||
title = "Open Media Library"
|
title = "Open Media Library"
|
||||||
ctl = base + '/ctl'
|
ctl = base + '/ctl'
|
||||||
|
|
||||||
|
|
||||||
class OMLIcon:
|
class OMLIcon:
|
||||||
menu = None
|
menu = None
|
||||||
|
icon = None
|
||||||
|
indicator = None
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
if appindicator:
|
||||||
|
self.indicator = appindicator.Indicator.new("OML", icon,
|
||||||
|
appindicator.IndicatorCategory.APPLICATION_STATUS)
|
||||||
|
self.indicator.set_status(appindicator.IndicatorStatus.ACTIVE)
|
||||||
|
self.menu = self.get_menu()
|
||||||
|
self.indicator.set_menu(self.menu)
|
||||||
|
else:
|
||||||
self.icon = Gtk.StatusIcon()
|
self.icon = Gtk.StatusIcon()
|
||||||
self.icon.set_from_file(icon)
|
self.icon.set_from_file(icon)
|
||||||
self.icon.set_title(title)
|
self.icon.set_title(title)
|
||||||
|
@ -31,13 +47,7 @@ class OMLIcon:
|
||||||
self._p.wait()
|
self._p.wait()
|
||||||
self._quit(None)
|
self._quit(None)
|
||||||
|
|
||||||
def _click(self, icon, button=None, time=None):
|
def get_menu(self):
|
||||||
if self.menu:
|
|
||||||
self.menu.destroy()
|
|
||||||
self.menu = None
|
|
||||||
else:
|
|
||||||
button = 1
|
|
||||||
time = Gtk.get_current_event_time()
|
|
||||||
menu = Gtk.Menu()
|
menu = Gtk.Menu()
|
||||||
about = Gtk.MenuItem(label="Open")
|
about = Gtk.MenuItem(label="Open")
|
||||||
about.connect("activate", self._open)
|
about.connect("activate", self._open)
|
||||||
|
@ -46,8 +56,17 @@ class OMLIcon:
|
||||||
quit.connect("activate", self._quit)
|
quit.connect("activate", self._quit)
|
||||||
menu.append(quit)
|
menu.append(quit)
|
||||||
menu.show_all()
|
menu.show_all()
|
||||||
menu.popup(None, None, self.icon.position_menu, icon, button, time)
|
return menu
|
||||||
self.menu = menu
|
|
||||||
|
def _click(self, icon, button=None, time=None):
|
||||||
|
if self.menu:
|
||||||
|
self.menu.destroy()
|
||||||
|
self.menu = None
|
||||||
|
else:
|
||||||
|
self.menu = self.get_menu()
|
||||||
|
button = 1
|
||||||
|
time = Gtk.get_current_event_time()
|
||||||
|
self.menu.popup(None, None, self.icon.position_menu, icon, button, time)
|
||||||
|
|
||||||
def _quit(self, q):
|
def _quit(self, q):
|
||||||
Gtk.main_quit()
|
Gtk.main_quit()
|
||||||
|
|
Loading…
Reference in a new issue