2005-05-12 15:52:09 +02:00
|
|
|
## systray.py
|
2005-03-11 18:57:35 +01:00
|
|
|
##
|
|
|
|
## Gajim Team:
|
|
|
|
## - Yann Le Boulanger <asterix@lagaule.org>
|
|
|
|
## - Vincent Hanquez <tab@snarc.org>
|
|
|
|
## - Nikos Kouremenos <kourem@gmail.com>
|
2005-08-09 18:33:45 +02:00
|
|
|
## - Dimitur Kirov <dkirov@gmail.com>
|
2005-03-11 18:57:35 +01:00
|
|
|
##
|
|
|
|
## Copyright (C) 2003-2005 Gajim Team
|
|
|
|
##
|
|
|
|
## 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; version 2 only.
|
|
|
|
##
|
|
|
|
## 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.
|
|
|
|
##
|
|
|
|
|
|
|
|
import gtk
|
|
|
|
import gtk.glade
|
2005-07-31 21:21:11 +02:00
|
|
|
import gobject
|
2005-04-14 19:07:55 +02:00
|
|
|
import dialogs
|
2005-06-20 19:45:04 +02:00
|
|
|
import os
|
2005-03-11 18:57:35 +01:00
|
|
|
|
2005-08-15 01:52:12 +02:00
|
|
|
import tooltips
|
|
|
|
|
2005-09-24 11:42:10 +02:00
|
|
|
from gajim import Contact
|
2005-04-17 18:06:12 +02:00
|
|
|
from common import gajim
|
2005-05-20 17:58:23 +02:00
|
|
|
from common import helpers
|
2005-03-11 18:57:35 +01:00
|
|
|
from common import i18n
|
|
|
|
|
2005-05-17 22:31:43 +02:00
|
|
|
try:
|
|
|
|
import egg.trayicon as trayicon # gnomepythonextras trayicon
|
|
|
|
except:
|
|
|
|
try:
|
|
|
|
import trayicon # our trayicon
|
|
|
|
except:
|
|
|
|
gajim.log.debug('No trayicon module available')
|
|
|
|
pass
|
|
|
|
|
2005-03-11 18:57:35 +01:00
|
|
|
_ = i18n._
|
|
|
|
APP = i18n.APP
|
|
|
|
gtk.glade.bindtextdomain(APP, i18n.DIR)
|
|
|
|
gtk.glade.textdomain(APP)
|
|
|
|
|
2005-04-22 01:20:18 +02:00
|
|
|
GTKGUI_GLADE = 'gtkgui.glade'
|
2005-03-11 18:57:35 +01:00
|
|
|
|
2005-03-29 18:37:59 +02:00
|
|
|
class Systray:
|
2005-08-15 21:52:18 +02:00
|
|
|
'''Class for icon in the notification area
|
|
|
|
This class is both base class (for systraywin32.py) and normal class
|
|
|
|
for trayicon in GNU/Linux'''
|
|
|
|
|
2005-06-15 13:14:59 +02:00
|
|
|
def __init__(self, plugin):
|
|
|
|
self.plugin = plugin
|
2005-09-24 11:42:10 +02:00
|
|
|
self.jids = [] # Contain things like [account, jid, type_of_msg]
|
2005-07-21 08:25:49 +02:00
|
|
|
self.new_message_handler_id = None
|
2005-06-15 13:14:59 +02:00
|
|
|
self.t = None
|
|
|
|
self.img_tray = gtk.Image()
|
|
|
|
self.status = 'offline'
|
|
|
|
self.xml = gtk.glade.XML(GTKGUI_GLADE, 'systray_context_menu', APP)
|
|
|
|
self.systray_context_menu = self.xml.get_widget('systray_context_menu')
|
|
|
|
self.xml.signal_autoconnect(self)
|
|
|
|
|
2005-03-11 18:57:35 +01:00
|
|
|
def set_img(self):
|
|
|
|
if len(self.jids) > 0:
|
2005-08-16 22:24:56 +02:00
|
|
|
state = 'message'
|
2005-03-11 18:57:35 +01:00
|
|
|
else:
|
2005-08-16 22:24:56 +02:00
|
|
|
state = self.status
|
|
|
|
image = self.plugin.roster.jabber_state_images[state]
|
2005-03-11 18:57:35 +01:00
|
|
|
if image.get_storage_type() == gtk.IMAGE_ANIMATION:
|
|
|
|
self.img_tray.set_from_animation(image.get_animation())
|
|
|
|
elif image.get_storage_type() == gtk.IMAGE_PIXBUF:
|
|
|
|
self.img_tray.set_from_pixbuf(image.get_pixbuf())
|
|
|
|
|
2005-09-24 11:42:10 +02:00
|
|
|
def add_jid(self, jid, account, typ):
|
|
|
|
l = [account, jid, typ]
|
2005-10-16 15:18:34 +02:00
|
|
|
# We can keep several single message 'cause we open them one by one
|
|
|
|
if not l in self.jids or typ == 'normal':
|
2005-07-19 22:12:02 +02:00
|
|
|
self.jids.append(l)
|
2005-03-11 18:57:35 +01:00
|
|
|
self.set_img()
|
2005-07-01 19:15:01 +02:00
|
|
|
|
2005-09-24 11:42:10 +02:00
|
|
|
def remove_jid(self, jid, account, typ):
|
|
|
|
l = [account, jid, typ]
|
2005-07-19 22:12:02 +02:00
|
|
|
if l in self.jids:
|
|
|
|
self.jids.remove(l)
|
2005-03-11 18:57:35 +01:00
|
|
|
self.set_img()
|
2005-09-24 11:59:34 +02:00
|
|
|
|
2005-07-31 21:32:06 +02:00
|
|
|
def change_status(self, global_status):
|
|
|
|
''' set tray image to 'global_status' '''
|
2005-07-30 02:20:28 +02:00
|
|
|
# change image and status, only if it is different
|
2005-07-30 11:09:47 +02:00
|
|
|
if global_status is not None and self.status != global_status:
|
2005-07-30 02:20:28 +02:00
|
|
|
self.status = global_status
|
2005-07-30 11:09:47 +02:00
|
|
|
self.set_img()
|
2005-07-30 02:20:28 +02:00
|
|
|
|
2005-03-11 18:57:35 +01:00
|
|
|
def start_chat(self, widget, account, jid):
|
|
|
|
if self.plugin.windows[account]['chats'].has_key(jid):
|
|
|
|
self.plugin.windows[account]['chats'][jid].window.present()
|
2005-06-18 13:41:29 +02:00
|
|
|
self.plugin.windows[account]['chats'][jid].set_active_tab(jid)
|
2005-07-18 23:08:31 +02:00
|
|
|
elif gajim.contacts[account].has_key(jid):
|
2005-03-11 18:57:35 +01:00
|
|
|
self.plugin.roster.new_chat(
|
2005-07-18 23:08:31 +02:00
|
|
|
gajim.contacts[account][jid][0], account)
|
2005-06-18 13:41:29 +02:00
|
|
|
self.plugin.windows[account]['chats'][jid].set_active_tab(jid)
|
2005-03-14 14:25:34 +01:00
|
|
|
|
|
|
|
def on_new_message_menuitem_activate(self, widget, account):
|
|
|
|
"""When new message menuitem is activated:
|
2005-06-10 23:14:16 +02:00
|
|
|
call the NewMessageDialog class"""
|
|
|
|
dialogs.NewMessageDialog(self.plugin, account)
|
2005-03-11 18:57:35 +01:00
|
|
|
|
2005-08-11 15:20:46 +02:00
|
|
|
def make_menu(self, event = None):
|
|
|
|
'''create chat with and new message (sub) menus/menuitems
|
|
|
|
event is None when we're in Windows
|
|
|
|
'''
|
2005-03-11 18:57:35 +01:00
|
|
|
|
2005-03-15 01:40:08 +01:00
|
|
|
chat_with_menuitem = self.xml.get_widget('chat_with_menuitem')
|
|
|
|
new_message_menuitem = self.xml.get_widget('new_message_menuitem')
|
2005-06-20 19:45:04 +02:00
|
|
|
status_menuitem = self.xml.get_widget('status_menu')
|
2005-07-21 08:25:49 +02:00
|
|
|
|
|
|
|
if self.new_message_handler_id:
|
|
|
|
new_message_menuitem.handler_disconnect(
|
|
|
|
self.new_message_handler_id)
|
|
|
|
self.new_message_handler_id = None
|
2005-06-20 19:45:04 +02:00
|
|
|
|
|
|
|
sub_menu = gtk.Menu()
|
|
|
|
status_menuitem.set_submenu(sub_menu)
|
|
|
|
|
2005-06-20 21:18:53 +02:00
|
|
|
# We need our own set of status icons, let's make 'em!
|
|
|
|
iconset = gajim.config.get('iconset')
|
|
|
|
if not iconset:
|
|
|
|
iconset = 'sun'
|
|
|
|
path = os.path.join(gajim.DATA_DIR, 'iconsets/' + iconset + '/16x16/')
|
|
|
|
state_images = self.plugin.roster.load_iconset(path)
|
2005-06-20 19:45:04 +02:00
|
|
|
|
2005-10-09 16:49:14 +02:00
|
|
|
for show in ['online', 'chat', 'away', 'xa', 'dnd', 'invisible']:
|
2005-10-09 18:08:18 +02:00
|
|
|
uf_show = helpers.get_uf_show(show, use_mnemonic = True)
|
2005-08-09 18:33:45 +02:00
|
|
|
item = gtk.ImageMenuItem(uf_show)
|
|
|
|
item.set_image(state_images[show])
|
2005-06-20 19:45:04 +02:00
|
|
|
sub_menu.append(item)
|
|
|
|
item.connect('activate', self.on_show_menuitem_activate, show)
|
|
|
|
|
2005-10-09 16:49:14 +02:00
|
|
|
item = gtk.SeparatorMenuItem()
|
|
|
|
sub_menu.append(item)
|
|
|
|
|
2005-10-10 00:24:18 +02:00
|
|
|
item = gtk.ImageMenuItem(_('_Change Status Message...'))
|
2005-10-09 20:45:03 +02:00
|
|
|
path = os.path.join(gajim.DATA_DIR, 'pixmaps', 'rename.png')
|
|
|
|
img = gtk.Image()
|
|
|
|
img.set_from_file(path)
|
|
|
|
item.set_image(img)
|
2005-10-09 16:49:14 +02:00
|
|
|
sub_menu.append(item)
|
|
|
|
item.connect('activate', self.on_change_status_message_activate)
|
|
|
|
if not helpers.one_account_connected():
|
|
|
|
item.set_sensitive(False)
|
|
|
|
|
|
|
|
item = gtk.SeparatorMenuItem()
|
|
|
|
sub_menu.append(item)
|
|
|
|
|
2005-10-09 18:08:18 +02:00
|
|
|
uf_show = helpers.get_uf_show('offline', use_mnemonic = True)
|
2005-10-09 16:49:14 +02:00
|
|
|
item = gtk.ImageMenuItem(uf_show)
|
|
|
|
item.set_image(state_images['offline'])
|
|
|
|
sub_menu.append(item)
|
|
|
|
item.connect('activate', self.on_show_menuitem_activate, 'offline')
|
|
|
|
|
2005-06-15 13:14:59 +02:00
|
|
|
iskey = len(gajim.connections) > 0
|
2005-04-22 03:35:36 +02:00
|
|
|
chat_with_menuitem.set_sensitive(iskey)
|
|
|
|
new_message_menuitem.set_sensitive(iskey)
|
2005-03-14 14:25:34 +01:00
|
|
|
|
2005-06-15 13:14:59 +02:00
|
|
|
if len(gajim.connections) >= 2: # 2 or more connections? make submenus
|
2005-03-14 18:30:52 +01:00
|
|
|
account_menu_for_chat_with = gtk.Menu()
|
|
|
|
chat_with_menuitem.set_submenu(account_menu_for_chat_with)
|
|
|
|
|
|
|
|
account_menu_for_new_message = gtk.Menu()
|
|
|
|
new_message_menuitem.set_submenu(account_menu_for_new_message)
|
|
|
|
|
2005-04-17 17:23:52 +02:00
|
|
|
for account in gajim.connections:
|
|
|
|
our_jid = gajim.config.get_per('accounts', account, 'name') + '@' +\
|
|
|
|
gajim.config.get_per('accounts', account, 'hostname')
|
2005-03-14 14:25:34 +01:00
|
|
|
#for chat_with
|
2005-03-27 22:30:00 +02:00
|
|
|
item = gtk.MenuItem(_('as ') + our_jid)
|
2005-03-14 18:30:52 +01:00
|
|
|
account_menu_for_chat_with.append(item)
|
|
|
|
group_menu = self.make_groups_submenus_for_chat_with(account)
|
|
|
|
item.set_submenu(group_menu)
|
|
|
|
#for new_message
|
2005-03-27 22:30:00 +02:00
|
|
|
item = gtk.MenuItem(_('as ') + our_jid)
|
2005-06-15 13:14:59 +02:00
|
|
|
item.connect('activate',
|
2005-03-14 18:30:52 +01:00
|
|
|
self.on_new_message_menuitem_activate, account)
|
|
|
|
account_menu_for_new_message.append(item)
|
|
|
|
|
2005-04-17 17:23:52 +02:00
|
|
|
elif len(gajim.connections) == 1: # one account
|
2005-08-11 15:46:37 +02:00
|
|
|
# one account, no need to show 'as jid'
|
2005-08-11 15:20:46 +02:00
|
|
|
# for chat_with
|
2005-04-17 17:23:52 +02:00
|
|
|
account = gajim.connections.keys()[0]
|
2005-03-14 18:30:52 +01:00
|
|
|
|
|
|
|
group_menu = self.make_groups_submenus_for_chat_with(account)
|
|
|
|
chat_with_menuitem.set_submenu(group_menu)
|
2005-03-14 14:25:34 +01:00
|
|
|
|
2005-08-11 15:20:46 +02:00
|
|
|
# for new message
|
2005-05-17 21:23:55 +02:00
|
|
|
self.new_message_handler_id = new_message_menuitem.connect(
|
2005-03-14 14:25:34 +01:00
|
|
|
'activate', self.on_new_message_menuitem_activate, account)
|
|
|
|
|
2005-09-25 20:37:50 +02:00
|
|
|
if event is None:
|
|
|
|
# None means windows (we explicitly popup in systraywin32.py)
|
2005-08-26 16:36:20 +02:00
|
|
|
if self.added_hide_menuitem is False:
|
2005-08-30 00:25:48 +02:00
|
|
|
self.systray_context_menu.prepend(gtk.SeparatorMenuItem())
|
2005-09-25 20:37:50 +02:00
|
|
|
item = gtk.MenuItem(_('Hide this menu'))
|
2005-08-29 22:47:26 +02:00
|
|
|
self.systray_context_menu.prepend(item)
|
2005-08-26 16:36:20 +02:00
|
|
|
self.added_hide_menuitem = True
|
|
|
|
|
|
|
|
else: # GNU and Unices
|
2005-08-11 15:20:46 +02:00
|
|
|
self.systray_context_menu.popup(None, None, None, event.button, event.time)
|
2005-08-15 21:52:18 +02:00
|
|
|
self.systray_context_menu.show_all()
|
2005-06-15 13:14:59 +02:00
|
|
|
|
|
|
|
def on_preferences_menuitem_activate(self, widget):
|
|
|
|
if self.plugin.windows['preferences'].window.get_property('visible'):
|
|
|
|
self.plugin.windows['preferences'].window.present()
|
|
|
|
else:
|
|
|
|
self.plugin.windows['preferences'].window.show_all()
|
|
|
|
|
2005-03-15 01:40:08 +01:00
|
|
|
def on_quit_menuitem_activate(self, widget):
|
|
|
|
self.plugin.roster.on_quit_menuitem_activate(widget)
|
|
|
|
|
2005-03-14 18:30:52 +01:00
|
|
|
def make_groups_submenus_for_chat_with(self, account):
|
|
|
|
groups_menu = gtk.Menu()
|
|
|
|
|
2005-07-18 23:08:31 +02:00
|
|
|
for group in gajim.groups[account].keys():
|
2005-07-07 19:25:04 +02:00
|
|
|
if group == _('Transports'):
|
2005-03-14 18:30:52 +01:00
|
|
|
continue
|
2005-05-13 18:53:30 +02:00
|
|
|
# at least one 'not offline' or 'without errors' in this group
|
2005-03-14 18:30:52 +01:00
|
|
|
at_least_one = False
|
|
|
|
item = gtk.MenuItem(group)
|
|
|
|
groups_menu.append(item)
|
|
|
|
contacts_menu = gtk.Menu()
|
|
|
|
item.set_submenu(contacts_menu)
|
2005-07-18 23:08:31 +02:00
|
|
|
for users in gajim.contacts[account].values():
|
2005-03-14 18:30:52 +01:00
|
|
|
user = users[0]
|
|
|
|
if group in user.groups and user.show != 'offline' and \
|
|
|
|
user.show != 'error':
|
|
|
|
at_least_one = True
|
2005-05-20 18:31:52 +02:00
|
|
|
show = helpers.get_uf_show(user.show)
|
|
|
|
s = user.name.replace('_', '__') + ' (' + show + ')'
|
2005-03-14 18:30:52 +01:00
|
|
|
item = gtk.MenuItem(s)
|
|
|
|
item.connect('activate', self.start_chat, account,\
|
|
|
|
user.jid)
|
|
|
|
contacts_menu.append(item)
|
|
|
|
|
|
|
|
if not at_least_one:
|
|
|
|
message = _('All contacts in this group are offline or have errors')
|
|
|
|
item = gtk.MenuItem(message)
|
|
|
|
item.set_sensitive(False)
|
|
|
|
contacts_menu.append(item)
|
|
|
|
|
|
|
|
return groups_menu
|
2005-03-11 18:57:35 +01:00
|
|
|
|
2005-08-11 15:46:37 +02:00
|
|
|
def on_left_click(self):
|
2005-06-07 15:34:25 +02:00
|
|
|
win = self.plugin.roster.window
|
2005-08-11 15:46:37 +02:00
|
|
|
if len(self.jids) == 0:
|
|
|
|
if win.get_property('visible'):
|
2005-06-07 01:42:31 +02:00
|
|
|
win.hide()
|
2005-06-07 00:51:10 +02:00
|
|
|
else:
|
2005-06-07 01:42:31 +02:00
|
|
|
win.present()
|
2005-08-11 15:46:37 +02:00
|
|
|
else:
|
|
|
|
account = self.jids[0][0]
|
|
|
|
jid = self.jids[0][1]
|
2005-09-24 11:42:10 +02:00
|
|
|
typ = self.jids[0][2]
|
|
|
|
wins = self.plugin.windows[account]
|
2005-08-11 15:46:37 +02:00
|
|
|
w = None
|
2005-09-24 11:42:10 +02:00
|
|
|
if typ == 'gc':
|
|
|
|
if wins['gc'].has_key(jid):
|
|
|
|
w = wins['gc'][jid]
|
|
|
|
elif typ == 'chat':
|
|
|
|
if wins['chats'].has_key(jid):
|
|
|
|
w = wins['chats'][jid]
|
|
|
|
else:
|
|
|
|
self.plugin.roster.new_chat(
|
|
|
|
gajim.contacts[account][jid][0], account)
|
|
|
|
w = wins['chats'][jid]
|
|
|
|
elif typ == 'pm':
|
|
|
|
if wins['chats'].has_key(jid):
|
|
|
|
w = wins['chats'][jid]
|
|
|
|
else:
|
|
|
|
room_jid, nick = jid.split('/', 1)
|
|
|
|
show = gajim.gc_contacts[account][room_jid][nick].show
|
|
|
|
c = Contact(jid = jid, name = nick, groups = ['none'],
|
|
|
|
show = show, ask = 'none')
|
|
|
|
self.plugin.roster.new_chat(c, account)
|
|
|
|
w = wins['chats'][jid]
|
2005-10-19 22:16:22 +02:00
|
|
|
elif typ in ('normal', 'file-request', 'file-request-error',
|
2005-10-19 23:14:51 +02:00
|
|
|
'file-send-error', 'file-error', 'file-stopped', 'file-completed'):
|
2005-10-18 11:07:52 +02:00
|
|
|
# Get the first single message event
|
2005-10-18 22:30:26 +02:00
|
|
|
ev = gajim.get_first_event(account, jid, typ)
|
2005-10-18 11:07:52 +02:00
|
|
|
# Open the window
|
2005-10-18 22:30:26 +02:00
|
|
|
self.plugin.roster.open_event(account, jid, ev)
|
2005-08-11 15:46:37 +02:00
|
|
|
if w:
|
|
|
|
w.set_active_tab(jid)
|
|
|
|
w.window.present()
|
|
|
|
tv = w.xmls[jid].get_widget('conversation_textview')
|
|
|
|
w.scroll_to_end(tv)
|
|
|
|
|
|
|
|
def on_middle_click(self):
|
|
|
|
win = self.plugin.roster.window
|
|
|
|
if win.is_active():
|
|
|
|
win.hide()
|
|
|
|
else:
|
|
|
|
win.present()
|
|
|
|
|
|
|
|
def on_clicked(self, widget, event):
|
|
|
|
self.on_tray_leave_notify_event(widget, None)
|
|
|
|
if event.button == 1: # Left click
|
|
|
|
self.on_left_click()
|
|
|
|
if event.button == 2: # middle click
|
|
|
|
self.on_middle_click()
|
2005-03-15 02:05:28 +01:00
|
|
|
if event.button == 3: # right click
|
2005-05-18 14:51:01 +02:00
|
|
|
self.make_menu(event)
|
2005-03-15 01:40:08 +01:00
|
|
|
|
2005-06-20 19:45:04 +02:00
|
|
|
def on_show_menuitem_activate(self, widget, show):
|
2005-07-19 22:12:02 +02:00
|
|
|
l = ['online', 'chat', 'away', 'xa', 'dnd', 'invisible', 'offline']
|
|
|
|
index = l.index(show)
|
2005-06-20 19:45:04 +02:00
|
|
|
self.plugin.roster.status_combobox.set_active(index)
|
2005-10-09 16:49:14 +02:00
|
|
|
|
|
|
|
def on_change_status_message_activate(self, widget):
|
|
|
|
dlg = dialogs.ChangeStatusMessageDialog(self.plugin)
|
|
|
|
message = dlg.run()
|
2005-10-10 00:24:18 +02:00
|
|
|
if message is not None: # None if user press Cancel
|
|
|
|
accounts = gajim.connections.keys()
|
|
|
|
for acct in accounts:
|
2005-10-10 21:10:59 +02:00
|
|
|
if not gajim.config.get_per('accounts', acct,
|
|
|
|
'sync_with_global_status'):
|
|
|
|
continue
|
2005-10-10 00:24:18 +02:00
|
|
|
show = gajim.SHOW_LIST[gajim.connections[acct].connected]
|
|
|
|
self.plugin.roster.send_status(acct, show, message)
|
2005-10-09 16:49:14 +02:00
|
|
|
|
2005-07-31 21:21:11 +02:00
|
|
|
def show_tooltip(self, widget):
|
|
|
|
position = widget.window.get_origin()
|
|
|
|
if self.tooltip.id == position:
|
|
|
|
size = widget.window.get_size()
|
|
|
|
self.tooltip.show_tooltip('',
|
|
|
|
(widget.window.get_pointer()[0], size[1]), position)
|
|
|
|
|
|
|
|
def on_tray_motion_notify_event(self, widget, event):
|
|
|
|
wireq=widget.size_request()
|
|
|
|
position = widget.window.get_origin()
|
|
|
|
if self.tooltip.timeout > 0:
|
|
|
|
if self.tooltip.id != position:
|
|
|
|
self.tooltip.hide_tooltip()
|
|
|
|
if self.tooltip.timeout == 0 and \
|
|
|
|
self.tooltip.id != position:
|
|
|
|
self.tooltip.id = position
|
|
|
|
self.tooltip.timeout = gobject.timeout_add(500,
|
|
|
|
self.show_tooltip, widget)
|
|
|
|
|
|
|
|
def on_tray_leave_notify_event(self, widget, event):
|
|
|
|
position = widget.window.get_origin()
|
|
|
|
if self.tooltip.timeout > 0 and \
|
|
|
|
self.tooltip.id == position:
|
|
|
|
self.tooltip.hide_tooltip()
|
|
|
|
|
2005-03-11 18:57:35 +01:00
|
|
|
def show_icon(self):
|
|
|
|
if not self.t:
|
2005-03-15 15:21:09 +01:00
|
|
|
self.t = trayicon.TrayIcon('Gajim')
|
2005-03-11 18:57:35 +01:00
|
|
|
eb = gtk.EventBox()
|
2005-07-30 12:06:58 +02:00
|
|
|
# avoid draw seperate bg color in some gtk themes
|
|
|
|
eb.set_visible_window(False)
|
2005-07-31 21:21:11 +02:00
|
|
|
eb.set_events(gtk.gdk.POINTER_MOTION_MASK)
|
2005-03-15 15:21:09 +01:00
|
|
|
eb.connect('button-press-event', self.on_clicked)
|
2005-07-31 21:21:11 +02:00
|
|
|
eb.connect('motion-notify-event', self.on_tray_motion_notify_event)
|
|
|
|
eb.connect('leave-notify-event', self.on_tray_leave_notify_event)
|
2005-08-15 01:52:12 +02:00
|
|
|
self.tooltip = tooltips.NotificationAreaTooltip(self.plugin)
|
2005-07-31 21:32:06 +02:00
|
|
|
|
2005-03-11 18:57:35 +01:00
|
|
|
self.img_tray = gtk.Image()
|
|
|
|
eb.add(self.img_tray)
|
|
|
|
self.t.add(eb)
|
|
|
|
self.set_img()
|
|
|
|
self.t.show_all()
|
|
|
|
|
|
|
|
def hide_icon(self):
|
|
|
|
if self.t:
|
|
|
|
self.t.destroy()
|
|
|
|
self.t = None
|