2007-04-01 11:02:04 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2008-08-15 05:20:23 +02:00
|
|
|
## src/tooltips.py
|
2005-08-15 01:52:12 +02:00
|
|
|
##
|
2008-08-15 05:20:23 +02:00
|
|
|
## Copyright (C) 2005 Alex Mauer <hawke AT hawkesnest.net>
|
2008-08-15 19:31:51 +02:00
|
|
|
## Stéphan Kochen <stephan AT kochen.nl>
|
2008-08-15 05:20:23 +02:00
|
|
|
## Copyright (C) 2005-2006 Dimitur Kirov <dkirov AT gmail.com>
|
|
|
|
## Copyright (C) 2005-2007 Nikos Kouremenos <kourem AT gmail.com>
|
2012-01-11 22:20:34 +01:00
|
|
|
## Copyright (C) 2005-2012 Yann Leboulanger <asterix AT lagaule.org>
|
2008-08-15 05:20:23 +02:00
|
|
|
## Copyright (C) 2006 Travis Shirk <travis AT pobox.com>
|
|
|
|
## Stefan Bethge <stefan AT lanpartei.de>
|
|
|
|
## Copyright (C) 2006-2007 Jean-Marie Traissard <jim AT lapin.org>
|
|
|
|
## Copyright (C) 2007 Julien Pivotto <roidelapluie AT gmail.com>
|
|
|
|
## Copyright (C) 2007-2008 Stephan Erb <steve-e AT h3c.de>
|
|
|
|
## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
|
2005-08-15 01:52:12 +02:00
|
|
|
##
|
2007-12-12 09:44:46 +01:00
|
|
|
## This file is part of Gajim.
|
|
|
|
##
|
|
|
|
## Gajim is free software; you can redistribute it and/or modify
|
2005-08-15 01:52:12 +02:00
|
|
|
## it under the terms of the GNU General Public License as published
|
2007-12-12 09:44:46 +01:00
|
|
|
## by the Free Software Foundation; version 3 only.
|
2005-08-15 01:52:12 +02:00
|
|
|
##
|
2007-12-12 09:44:46 +01:00
|
|
|
## Gajim is distributed in the hope that it will be useful,
|
2005-08-15 01:52:12 +02:00
|
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2008-08-15 05:20:23 +02:00
|
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2005-08-15 01:52:12 +02:00
|
|
|
## GNU General Public License for more details.
|
|
|
|
##
|
2007-12-12 09:44:46 +01:00
|
|
|
## You should have received a copy of the GNU General Public License
|
2008-08-15 05:20:23 +02:00
|
|
|
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
|
2007-12-12 09:44:46 +01:00
|
|
|
##
|
2005-08-15 01:52:12 +02:00
|
|
|
|
|
|
|
import gtk
|
|
|
|
import gobject
|
|
|
|
import os
|
2006-02-22 15:31:01 +01:00
|
|
|
import time
|
2006-02-24 13:37:29 +01:00
|
|
|
import locale
|
2010-03-30 14:27:59 +02:00
|
|
|
from datetime import datetime
|
2010-03-30 15:39:49 +02:00
|
|
|
from datetime import timedelta
|
2005-08-15 01:52:12 +02:00
|
|
|
|
|
|
|
import gtkgui_helpers
|
|
|
|
|
|
|
|
from common import gajim
|
|
|
|
from common import helpers
|
2008-07-29 21:02:57 +02:00
|
|
|
from common.pep import MOODS, ACTIVITIES
|
2010-04-03 19:46:57 +02:00
|
|
|
from common.i18n import Q_
|
2005-08-15 01:52:12 +02:00
|
|
|
|
|
|
|
class BaseTooltip:
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
|
|
|
Base Tooltip class
|
|
|
|
|
|
|
|
Usage:
|
|
|
|
tooltip = BaseTooltip()
|
|
|
|
....
|
|
|
|
tooltip.show_tooltip(data, widget_height, widget_y_position)
|
|
|
|
....
|
|
|
|
if tooltip.timeout != 0:
|
|
|
|
tooltip.hide_tooltip()
|
|
|
|
|
|
|
|
* data - the text to be displayed (extenders override this argument and
|
|
|
|
display more complex contents)
|
|
|
|
* widget_height - the height of the widget on which we want to show tooltip
|
|
|
|
* widget_y_position - the vertical position of the widget on the screen
|
|
|
|
|
|
|
|
Tooltip is displayed aligned centered to the mouse poiner and 4px below the widget.
|
|
|
|
In case tooltip goes below the visible area it is shown above the widget.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.timeout = 0
|
|
|
|
self.preferred_position = [0, 0]
|
|
|
|
self.win = None
|
|
|
|
self.id = None
|
|
|
|
self.cur_data = None
|
|
|
|
self.check_last_time = None
|
|
|
|
|
|
|
|
def populate(self, data):
|
|
|
|
"""
|
|
|
|
This method must be overriden by all extenders. This is the most simple
|
|
|
|
implementation: show data as value of a label
|
|
|
|
"""
|
|
|
|
self.create_window()
|
|
|
|
self.win.add(gtk.Label(data))
|
|
|
|
|
|
|
|
def create_window(self):
|
|
|
|
"""
|
|
|
|
Create a popup window each time tooltip is requested
|
|
|
|
"""
|
|
|
|
self.win = gtk.Window(gtk.WINDOW_POPUP)
|
2011-11-10 22:26:11 +01:00
|
|
|
self.win.set_title('tooltip')
|
2010-02-08 15:08:40 +01:00
|
|
|
self.win.set_border_width(3)
|
|
|
|
self.win.set_resizable(False)
|
|
|
|
self.win.set_name('gtk-tooltips')
|
|
|
|
self.win.set_type_hint(gtk.gdk.WINDOW_TYPE_HINT_TOOLTIP)
|
|
|
|
|
|
|
|
self.win.set_events(gtk.gdk.POINTER_MOTION_MASK)
|
|
|
|
self.win.connect_after('expose_event', self.expose)
|
|
|
|
self.win.connect('size-request', self.on_size_request)
|
|
|
|
self.win.connect('motion-notify-event', self.motion_notify_event)
|
|
|
|
self.screen = self.win.get_screen()
|
|
|
|
|
|
|
|
def _get_icon_name_for_tooltip(self, contact):
|
|
|
|
"""
|
|
|
|
Helper function used for tooltip contacts/acounts
|
|
|
|
|
|
|
|
Tooltip on account has fake contact with sub == '', in this case we show
|
|
|
|
real status of the account
|
|
|
|
"""
|
|
|
|
if contact.ask == 'subscribe':
|
|
|
|
return 'requested'
|
|
|
|
elif contact.sub in ('both', 'to', ''):
|
|
|
|
return contact.show
|
|
|
|
return 'not in roster'
|
|
|
|
|
|
|
|
def motion_notify_event(self, widget, event):
|
|
|
|
self.hide_tooltip()
|
|
|
|
|
|
|
|
def on_size_request(self, widget, requisition):
|
|
|
|
half_width = requisition.width / 2 + 1
|
|
|
|
if self.preferred_position[0] < half_width:
|
|
|
|
self.preferred_position[0] = 0
|
|
|
|
elif self.preferred_position[0] + requisition.width > \
|
|
|
|
self.screen.get_width() + half_width:
|
|
|
|
self.preferred_position[0] = self.screen.get_width() - \
|
|
|
|
requisition.width
|
|
|
|
elif not self.check_last_time:
|
|
|
|
self.preferred_position[0] -= half_width
|
|
|
|
if self.preferred_position[1] + requisition.height > \
|
|
|
|
self.screen.get_height():
|
|
|
|
# flip tooltip up
|
|
|
|
self.preferred_position[1] -= requisition.height + \
|
|
|
|
self.widget_height + 8
|
|
|
|
if self.preferred_position[1] < 0:
|
|
|
|
self.preferred_position[1] = 0
|
|
|
|
self.win.move(self.preferred_position[0], self.preferred_position[1])
|
|
|
|
|
|
|
|
def expose(self, widget, event):
|
|
|
|
style = self.win.get_style()
|
|
|
|
size = self.win.get_size()
|
|
|
|
style.paint_flat_box(self.win.window, gtk.STATE_NORMAL, gtk.SHADOW_OUT,
|
|
|
|
None, self.win, 'tooltip', 0, 0, -1, 1)
|
|
|
|
style.paint_flat_box(self.win.window, gtk.STATE_NORMAL, gtk.SHADOW_OUT,
|
|
|
|
None, self.win, 'tooltip', 0, size[1] - 1, -1, 1)
|
|
|
|
style.paint_flat_box(self.win.window, gtk.STATE_NORMAL, gtk.SHADOW_OUT,
|
|
|
|
None, self.win, 'tooltip', 0, 0, 1, -1)
|
|
|
|
style.paint_flat_box(self.win.window, gtk.STATE_NORMAL, gtk.SHADOW_OUT,
|
|
|
|
None, self.win, 'tooltip', size[0] - 1, 0, 1, -1)
|
|
|
|
return True
|
|
|
|
|
|
|
|
def show_tooltip(self, data, widget_height, widget_y_position):
|
|
|
|
"""
|
|
|
|
Show tooltip on widget
|
|
|
|
|
|
|
|
Data contains needed data for tooltip contents.
|
|
|
|
widget_height is the height of the widget on which we show the tooltip.
|
|
|
|
widget_y_position is vertical position of the widget on the screen.
|
|
|
|
"""
|
|
|
|
self.cur_data = data
|
|
|
|
# set tooltip contents
|
|
|
|
self.populate(data)
|
|
|
|
|
|
|
|
# get the X position of mouse pointer on the screen
|
|
|
|
pointer_x = self.screen.get_display().get_pointer()[1]
|
|
|
|
|
|
|
|
# get the prefered X position of the tooltip on the screen in case this position is >
|
|
|
|
# than the height of the screen, tooltip will be shown above the widget
|
|
|
|
preferred_y = widget_y_position + widget_height + 4
|
|
|
|
|
|
|
|
self.preferred_position = [pointer_x, preferred_y]
|
|
|
|
self.widget_height = widget_height
|
|
|
|
self.win.ensure_style()
|
|
|
|
self.win.show_all()
|
|
|
|
|
|
|
|
def hide_tooltip(self):
|
|
|
|
if self.timeout > 0:
|
|
|
|
gobject.source_remove(self.timeout)
|
|
|
|
self.timeout = 0
|
|
|
|
if self.win:
|
|
|
|
self.win.destroy()
|
|
|
|
self.win = None
|
|
|
|
self.id = None
|
|
|
|
self.cur_data = None
|
|
|
|
self.check_last_time = None
|
2005-08-15 01:52:12 +02:00
|
|
|
|
2010-04-03 17:06:42 +02:00
|
|
|
@staticmethod
|
|
|
|
def colorize_status(status):
|
|
|
|
"""
|
|
|
|
Colorize the status message inside the tooltip by it's
|
|
|
|
semantics. Color palette is the Tango.
|
|
|
|
"""
|
|
|
|
formatted = "<span foreground='%s'>%s</span>"
|
2010-04-03 19:46:57 +02:00
|
|
|
if status.startswith(Q_("?user status:Available")):
|
2010-04-03 19:23:15 +02:00
|
|
|
status = formatted % ('#73D216', status)
|
2010-04-03 17:17:54 +02:00
|
|
|
elif status.startswith(_("Free for Chat")):
|
2010-04-03 19:23:15 +02:00
|
|
|
status = formatted % ('#3465A4', status)
|
2010-04-03 17:17:54 +02:00
|
|
|
elif status.startswith(_("Away")):
|
2010-04-03 19:23:15 +02:00
|
|
|
status = formatted % ('#EDD400', status)
|
2010-04-03 17:50:26 +02:00
|
|
|
elif status.startswith(_("Busy")):
|
2010-04-03 19:23:15 +02:00
|
|
|
status = formatted % ('#F57900', status)
|
2010-04-03 17:17:54 +02:00
|
|
|
elif status.startswith(_("Not Available")):
|
2010-04-03 19:23:15 +02:00
|
|
|
status = formatted % ('#CC0000', status)
|
2010-04-03 17:17:54 +02:00
|
|
|
elif status.startswith(_("Offline")):
|
2010-04-03 19:23:15 +02:00
|
|
|
status = formatted % ('#555753', status)
|
|
|
|
return status
|
2010-04-03 17:06:42 +02:00
|
|
|
|
2010-04-03 20:38:54 +02:00
|
|
|
@staticmethod
|
|
|
|
def colorize_affiliation(affiliation):
|
|
|
|
"""
|
|
|
|
Color the affiliation of a MUC participant inside the tooltip by
|
|
|
|
it's semantics. Color palette is the Tango.
|
|
|
|
"""
|
|
|
|
formatted = "<span foreground='%s'>%s</span>"
|
|
|
|
if affiliation.startswith(Q_("?Group Chat Contact Affiliation:None")):
|
|
|
|
affiliation = formatted % ('#555753', affiliation)
|
|
|
|
elif affiliation.startswith(_("Member")):
|
|
|
|
affiliation = formatted % ('#73D216', affiliation)
|
|
|
|
elif affiliation.startswith(_("Administrator")):
|
|
|
|
affiliation = formatted % ('#F57900', affiliation)
|
|
|
|
elif affiliation.startswith(_("Owner")):
|
|
|
|
affiliation = formatted % ('#CC0000', affiliation)
|
|
|
|
return affiliation
|
|
|
|
|
2005-08-15 01:52:12 +02:00
|
|
|
class StatusTable:
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
|
|
|
Contains methods for creating status table. This is used in Roster and
|
|
|
|
NotificationArea tooltips
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.current_row = 1
|
|
|
|
self.table = None
|
|
|
|
self.text_label = None
|
|
|
|
self.spacer_label = ' '
|
|
|
|
|
|
|
|
def create_table(self):
|
|
|
|
self.table = gtk.Table(4, 1)
|
|
|
|
self.table.set_property('column-spacing', 2)
|
|
|
|
|
|
|
|
def add_text_row(self, text, col_inc = 0):
|
|
|
|
self.current_row += 1
|
|
|
|
self.text_label = gtk.Label()
|
|
|
|
self.text_label.set_line_wrap(True)
|
|
|
|
self.text_label.set_alignment(0, 0)
|
|
|
|
self.text_label.set_selectable(False)
|
|
|
|
self.text_label.set_markup(text)
|
|
|
|
self.table.attach(self.text_label, 1 + col_inc, 4, self.current_row,
|
|
|
|
self.current_row + 1)
|
|
|
|
|
|
|
|
def get_status_info(self, resource, priority, show, status):
|
|
|
|
str_status = resource + ' (' + unicode(priority) + ')'
|
|
|
|
if status:
|
|
|
|
status = status.strip()
|
|
|
|
if status != '':
|
|
|
|
# make sure 'status' is unicode before we send to to reduce_chars
|
|
|
|
if isinstance(status, str):
|
|
|
|
status = unicode(status, encoding='utf-8')
|
|
|
|
# reduce to 100 chars, 1 line
|
|
|
|
status = helpers.reduce_chars_newlines(status, 100, 1)
|
|
|
|
str_status = gobject.markup_escape_text(str_status)
|
|
|
|
status = gobject.markup_escape_text(status)
|
|
|
|
str_status += ' - <i>' + status + '</i>'
|
|
|
|
return str_status
|
|
|
|
|
|
|
|
def add_status_row(self, file_path, show, str_status, status_time=None,
|
|
|
|
show_lock=False, indent=True):
|
|
|
|
"""
|
|
|
|
Append a new row with status icon to the table
|
|
|
|
"""
|
|
|
|
self.current_row += 1
|
|
|
|
state_file = show.replace(' ', '_')
|
|
|
|
files = []
|
|
|
|
files.append(os.path.join(file_path, state_file + '.png'))
|
|
|
|
files.append(os.path.join(file_path, state_file + '.gif'))
|
|
|
|
image = gtk.Image()
|
|
|
|
image.set_from_pixbuf(None)
|
|
|
|
for f in files:
|
|
|
|
if os.path.exists(f):
|
|
|
|
image.set_from_file(f)
|
|
|
|
break
|
|
|
|
spacer = gtk.Label(self.spacer_label)
|
|
|
|
image.set_alignment(1, 0.5)
|
|
|
|
if indent:
|
|
|
|
self.table.attach(spacer, 1, 2, self.current_row,
|
|
|
|
self.current_row + 1, 0, 0, 0, 0)
|
|
|
|
self.table.attach(image, 2, 3, self.current_row,
|
|
|
|
self.current_row + 1, gtk.FILL, gtk.FILL, 2, 0)
|
|
|
|
status_label = gtk.Label()
|
|
|
|
status_label.set_markup(str_status)
|
|
|
|
status_label.set_alignment(0, 0)
|
|
|
|
status_label.set_line_wrap(True)
|
|
|
|
self.table.attach(status_label, 3, 4, self.current_row,
|
|
|
|
self.current_row + 1, gtk.FILL | gtk.EXPAND, 0, 0, 0)
|
|
|
|
if show_lock:
|
|
|
|
lock_image = gtk.Image()
|
|
|
|
lock_image.set_from_stock(gtk.STOCK_DIALOG_AUTHENTICATION,
|
|
|
|
gtk.ICON_SIZE_MENU)
|
|
|
|
self.table.attach(lock_image, 4, 5, self.current_row,
|
|
|
|
self.current_row + 1, 0, 0, 0, 0)
|
2008-12-03 22:56:12 +01:00
|
|
|
|
2005-08-15 01:52:12 +02:00
|
|
|
class NotificationAreaTooltip(BaseTooltip, StatusTable):
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
|
|
|
Tooltip that is shown in the notification area
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
BaseTooltip.__init__(self)
|
|
|
|
StatusTable.__init__(self)
|
|
|
|
|
|
|
|
def fill_table_with_accounts(self, accounts):
|
|
|
|
iconset = gajim.config.get('iconset')
|
|
|
|
if not iconset:
|
|
|
|
iconset = 'dcraven'
|
|
|
|
file_path = os.path.join(helpers.get_iconset_path(iconset), '16x16')
|
|
|
|
for acct in accounts:
|
|
|
|
message = acct['message']
|
|
|
|
# before reducing the chars we should assure we send unicode, else
|
|
|
|
# there are possible pango TBs on 'set_markup'
|
|
|
|
if isinstance(message, str):
|
|
|
|
message = unicode(message, encoding = 'utf-8')
|
|
|
|
message = helpers.reduce_chars_newlines(message, 100, 1)
|
|
|
|
message = gobject.markup_escape_text(message)
|
|
|
|
if acct['name'] in gajim.con_types and \
|
|
|
|
gajim.con_types[acct['name']] in ('tls', 'ssl'):
|
|
|
|
show_lock = True
|
|
|
|
else:
|
|
|
|
show_lock = False
|
|
|
|
if message:
|
|
|
|
self.add_status_row(file_path, acct['show'],
|
|
|
|
gobject.markup_escape_text(acct['name']) + \
|
|
|
|
' - ' + message, show_lock=show_lock, indent=False)
|
|
|
|
else:
|
|
|
|
self.add_status_row(file_path, acct['show'],
|
|
|
|
gobject.markup_escape_text(acct['name'])
|
|
|
|
, show_lock=show_lock, indent=False)
|
|
|
|
for line in acct['event_lines']:
|
|
|
|
self.add_text_row(' ' + line, 1)
|
|
|
|
|
|
|
|
def populate(self, data=''):
|
|
|
|
self.create_window()
|
|
|
|
self.create_table()
|
|
|
|
|
|
|
|
accounts = helpers.get_notification_icon_tooltip_dict()
|
|
|
|
self.table.resize(2, 1)
|
|
|
|
self.fill_table_with_accounts(accounts)
|
|
|
|
self.hbox = gtk.HBox()
|
|
|
|
self.table.set_property('column-spacing', 1)
|
|
|
|
|
|
|
|
self.hbox.add(self.table)
|
|
|
|
self.hbox.show_all()
|
2005-08-24 19:29:35 +02:00
|
|
|
|
2005-12-01 22:18:12 +01:00
|
|
|
class GCTooltip(BaseTooltip):
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
|
|
|
Tooltip that is shown in the GC treeview
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.account = None
|
|
|
|
self.text_label = gtk.Label()
|
|
|
|
self.text_label.set_line_wrap(True)
|
|
|
|
self.text_label.set_alignment(0, 0)
|
|
|
|
self.text_label.set_selectable(False)
|
|
|
|
self.avatar_image = gtk.Image()
|
|
|
|
|
|
|
|
BaseTooltip.__init__(self)
|
|
|
|
|
|
|
|
def populate(self, contact):
|
|
|
|
if not contact:
|
|
|
|
return
|
|
|
|
self.create_window()
|
|
|
|
vcard_table = gtk.Table(3, 1)
|
|
|
|
vcard_table.set_property('column-spacing', 2)
|
|
|
|
vcard_table.set_homogeneous(False)
|
|
|
|
vcard_current_row = 1
|
|
|
|
properties = []
|
|
|
|
|
|
|
|
nick_markup = '<b>' + \
|
|
|
|
gobject.markup_escape_text(contact.get_shown_name()) \
|
|
|
|
+ '</b>'
|
|
|
|
properties.append((nick_markup, None))
|
|
|
|
|
|
|
|
if contact.status: # status message
|
|
|
|
status = contact.status.strip()
|
|
|
|
if status != '':
|
|
|
|
# escape markup entities
|
|
|
|
status = helpers.reduce_chars_newlines(status, 300, 5)
|
|
|
|
status = '<i>' +\
|
|
|
|
gobject.markup_escape_text(status) + '</i>'
|
|
|
|
properties.append((status, None))
|
2010-04-03 20:08:09 +02:00
|
|
|
|
|
|
|
show = helpers.get_uf_show(contact.show)
|
|
|
|
show = self.colorize_status(show)
|
|
|
|
properties.append((show, None))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2010-04-03 20:38:54 +02:00
|
|
|
if contact.jid.strip():
|
|
|
|
properties.append((_('Jabber ID: '), "<b>%s</b>" % contact.jid))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
2010-04-03 20:38:54 +02:00
|
|
|
if hasattr(contact, 'resource') and contact.resource.strip():
|
2010-02-08 15:08:40 +01:00
|
|
|
properties.append((_('Resource: '),
|
2010-04-03 20:38:54 +02:00
|
|
|
gobject.markup_escape_text(contact.resource)))
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
if contact.affiliation != 'none':
|
|
|
|
uf_affiliation = helpers.get_uf_affiliation(contact.affiliation)
|
2010-04-03 20:38:54 +02:00
|
|
|
uf_affiliation =\
|
2010-02-08 15:08:40 +01:00
|
|
|
_('%(owner_or_admin_or_member)s of this group chat') %\
|
|
|
|
{'owner_or_admin_or_member': uf_affiliation}
|
2010-04-03 20:38:54 +02:00
|
|
|
uf_affiliation = self.colorize_affiliation(uf_affiliation)
|
|
|
|
properties.append((uf_affiliation, None))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
# Add avatar
|
|
|
|
puny_name = helpers.sanitize_filename(contact.name)
|
|
|
|
puny_room = helpers.sanitize_filename(contact.room_jid)
|
|
|
|
file_ = helpers.get_avatar_path(os.path.join(gajim.AVATAR_PATH, puny_room,
|
|
|
|
puny_name))
|
|
|
|
if file_:
|
|
|
|
self.avatar_image.set_from_file(file_)
|
|
|
|
pix = self.avatar_image.get_pixbuf()
|
|
|
|
pix = gtkgui_helpers.get_scaled_pixbuf(pix, 'tooltip')
|
|
|
|
self.avatar_image.set_from_pixbuf(pix)
|
|
|
|
else:
|
|
|
|
self.avatar_image.set_from_pixbuf(None)
|
|
|
|
while properties:
|
|
|
|
property_ = properties.pop(0)
|
|
|
|
vcard_current_row += 1
|
|
|
|
vertical_fill = gtk.FILL
|
|
|
|
if not properties:
|
|
|
|
vertical_fill |= gtk.EXPAND
|
|
|
|
label = gtk.Label()
|
|
|
|
label.set_alignment(0, 0)
|
|
|
|
if property_[1]:
|
|
|
|
label.set_markup(property_[0])
|
|
|
|
vcard_table.attach(label, 1, 2, vcard_current_row,
|
|
|
|
vcard_current_row + 1, gtk.FILL, vertical_fill, 0, 0)
|
|
|
|
label = gtk.Label()
|
|
|
|
label.set_alignment(0, 0)
|
|
|
|
label.set_markup(property_[1])
|
|
|
|
label.set_line_wrap(True)
|
|
|
|
vcard_table.attach(label, 2, 3, vcard_current_row,
|
|
|
|
vcard_current_row + 1, gtk.EXPAND | gtk.FILL,
|
|
|
|
vertical_fill, 0, 0)
|
|
|
|
else:
|
|
|
|
label.set_markup(property_[0])
|
|
|
|
label.set_line_wrap(True)
|
|
|
|
vcard_table.attach(label, 1, 3, vcard_current_row,
|
|
|
|
vcard_current_row + 1, gtk.FILL, vertical_fill, 0)
|
|
|
|
|
|
|
|
self.avatar_image.set_alignment(0, 0)
|
|
|
|
vcard_table.attach(self.avatar_image, 3, 4, 2, vcard_current_row + 1,
|
|
|
|
gtk.FILL, gtk.FILL | gtk.EXPAND, 3, 3)
|
|
|
|
self.win.add(vcard_table)
|
2005-08-24 14:58:03 +02:00
|
|
|
|
2005-11-09 22:05:55 +01:00
|
|
|
class RosterTooltip(NotificationAreaTooltip):
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
|
|
|
Tooltip that is shown in the roster treeview
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.account = None
|
|
|
|
self.image = gtk.Image()
|
|
|
|
self.image.set_alignment(0, 0)
|
|
|
|
# padding is independent of the total length and better than alignment
|
|
|
|
self.image.set_padding(1, 2)
|
|
|
|
self.avatar_image = gtk.Image()
|
|
|
|
NotificationAreaTooltip.__init__(self)
|
|
|
|
|
|
|
|
def populate(self, contacts):
|
|
|
|
self.create_window()
|
|
|
|
|
|
|
|
self.create_table()
|
|
|
|
if not contacts or len(contacts) == 0:
|
|
|
|
# Tooltip for merged accounts row
|
|
|
|
accounts = helpers.get_notification_icon_tooltip_dict()
|
|
|
|
self.table.resize(2, 1)
|
|
|
|
self.spacer_label = ''
|
|
|
|
self.fill_table_with_accounts(accounts)
|
|
|
|
self.win.add(self.table)
|
|
|
|
return
|
|
|
|
|
|
|
|
# primary contact
|
|
|
|
prim_contact = gajim.contacts.get_highest_prio_contact_from_contacts(
|
|
|
|
contacts)
|
|
|
|
|
|
|
|
puny_jid = helpers.sanitize_filename(prim_contact.jid)
|
|
|
|
table_size = 3
|
|
|
|
|
|
|
|
file_ = helpers.get_avatar_path(os.path.join(gajim.AVATAR_PATH, puny_jid))
|
|
|
|
if file_:
|
|
|
|
self.avatar_image.set_from_file(file_)
|
|
|
|
pix = self.avatar_image.get_pixbuf()
|
|
|
|
pix = gtkgui_helpers.get_scaled_pixbuf(pix, 'tooltip')
|
|
|
|
self.avatar_image.set_from_pixbuf(pix)
|
|
|
|
table_size = 4
|
|
|
|
else:
|
|
|
|
self.avatar_image.set_from_pixbuf(None)
|
|
|
|
vcard_table = gtk.Table(table_size, 1)
|
|
|
|
vcard_table.set_property('column-spacing', 2)
|
|
|
|
vcard_table.set_homogeneous(False)
|
|
|
|
vcard_current_row = 1
|
|
|
|
properties = []
|
|
|
|
|
|
|
|
name_markup = u'<span weight="bold">' + \
|
|
|
|
gobject.markup_escape_text(prim_contact.get_shown_name())\
|
|
|
|
+ '</span>'
|
2012-03-13 14:32:09 +01:00
|
|
|
if gajim.config.get('mergeaccounts'):
|
|
|
|
name_markup += u" <span foreground='#888A85'>(" + \
|
|
|
|
gobject.markup_escape_text(prim_contact.account.name) \
|
|
|
|
+ ')</span>'
|
|
|
|
|
2010-02-08 15:08:40 +01:00
|
|
|
if self.account and helpers.jid_is_blocked(self.account,
|
|
|
|
prim_contact.jid):
|
|
|
|
name_markup += _(' [blocked]')
|
|
|
|
if self.account and \
|
|
|
|
self.account in gajim.interface.minimized_controls and \
|
|
|
|
prim_contact.jid in gajim.interface.minimized_controls[self.account]:
|
|
|
|
name_markup += _(' [minimized]')
|
|
|
|
properties.append((name_markup, None))
|
|
|
|
|
|
|
|
num_resources = 0
|
|
|
|
# put contacts in dict, where key is priority
|
|
|
|
contacts_dict = {}
|
|
|
|
for contact in contacts:
|
|
|
|
if contact.resource:
|
|
|
|
num_resources += 1
|
|
|
|
if contact.priority in contacts_dict:
|
|
|
|
contacts_dict[contact.priority].append(contact)
|
|
|
|
else:
|
|
|
|
contacts_dict[contact.priority] = [contact]
|
|
|
|
|
|
|
|
if num_resources > 1:
|
|
|
|
properties.append((_('Status: '), ' '))
|
|
|
|
transport = gajim.get_transport_name_from_jid(
|
|
|
|
prim_contact.jid)
|
|
|
|
if transport:
|
|
|
|
file_path = os.path.join(helpers.get_transport_path(transport),
|
|
|
|
'16x16')
|
|
|
|
else:
|
|
|
|
iconset = gajim.config.get('iconset')
|
|
|
|
if not iconset:
|
|
|
|
iconset = 'dcraven'
|
|
|
|
file_path = os.path.join(helpers.get_iconset_path(iconset), '16x16')
|
|
|
|
|
|
|
|
contact_keys = sorted(contacts_dict.keys())
|
|
|
|
contact_keys.reverse()
|
|
|
|
for priority in contact_keys:
|
|
|
|
for acontact in contacts_dict[priority]:
|
|
|
|
status_line = self.get_status_info(acontact.resource,
|
|
|
|
acontact.priority, acontact.show, acontact.status)
|
|
|
|
|
|
|
|
icon_name = self._get_icon_name_for_tooltip(acontact)
|
|
|
|
self.add_status_row(file_path, icon_name, status_line,
|
|
|
|
acontact.last_status_time)
|
|
|
|
properties.append((self.table, None))
|
|
|
|
|
|
|
|
else: # only one resource
|
|
|
|
if contact.show:
|
|
|
|
show = helpers.get_uf_show(contact.show)
|
|
|
|
if not self.check_last_time and self.account:
|
|
|
|
if contact.show == 'offline':
|
|
|
|
if not contact.last_status_time:
|
|
|
|
gajim.connections[self.account].request_last_status_time(
|
|
|
|
contact.jid, '')
|
|
|
|
else:
|
|
|
|
self.check_last_time = contact.last_status_time
|
|
|
|
elif contact.resource:
|
|
|
|
gajim.connections[self.account].request_last_status_time(
|
|
|
|
contact.jid, contact.resource)
|
|
|
|
if contact.last_activity_time:
|
|
|
|
self.check_last_time = contact.last_activity_time
|
|
|
|
else:
|
|
|
|
self.check_last_time = None
|
|
|
|
if contact.last_status_time:
|
|
|
|
vcard_current_row += 1
|
|
|
|
if contact.show == 'offline':
|
|
|
|
text = ' - ' + _('Last status: %s')
|
|
|
|
else:
|
|
|
|
text = _(' since %s')
|
|
|
|
|
|
|
|
if time.strftime('%j', time.localtime())== \
|
|
|
|
time.strftime('%j', contact.last_status_time):
|
|
|
|
# it's today, show only the locale hour representation
|
|
|
|
local_time = time.strftime('%X',
|
|
|
|
contact.last_status_time)
|
|
|
|
else:
|
|
|
|
# time.strftime returns locale encoded string
|
|
|
|
local_time = time.strftime('%c',
|
|
|
|
contact.last_status_time)
|
|
|
|
local_time = local_time.decode(
|
|
|
|
locale.getpreferredencoding())
|
|
|
|
text = text % local_time
|
|
|
|
show += text
|
|
|
|
if self.account and \
|
|
|
|
prim_contact.jid in gajim.gc_connected[self.account]:
|
|
|
|
if gajim.gc_connected[self.account][prim_contact.jid]:
|
|
|
|
show = _('Connected')
|
|
|
|
else:
|
|
|
|
show = _('Disconnected')
|
2010-04-03 17:06:42 +02:00
|
|
|
show = self.colorize_status(show)
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
if contact.status:
|
|
|
|
status = contact.status.strip()
|
|
|
|
if status:
|
|
|
|
# reduce long status
|
|
|
|
# (no more than 300 chars on line and no more than 5 lines)
|
|
|
|
# status is wrapped
|
|
|
|
status = helpers.reduce_chars_newlines(status, 300, 5)
|
|
|
|
# escape markup entities.
|
|
|
|
status = gobject.markup_escape_text(status)
|
|
|
|
properties.append(('<i>%s</i>' % status, None))
|
|
|
|
properties.append((show, None))
|
|
|
|
|
|
|
|
self._append_pep_info(contact, properties)
|
|
|
|
|
2010-04-03 20:38:54 +02:00
|
|
|
properties.append((_('Jabber ID: '), "<b>%s</b>" % prim_contact.jid))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
# contact has only one ressource
|
|
|
|
if num_resources == 1 and contact.resource:
|
|
|
|
properties.append((_('Resource: '),
|
|
|
|
gobject.markup_escape_text(contact.resource) +\
|
|
|
|
' (' + unicode(contact.priority) + ')'))
|
|
|
|
|
|
|
|
if self.account and prim_contact.sub and prim_contact.sub != 'both' and\
|
|
|
|
prim_contact.jid not in gajim.gc_connected[self.account]:
|
|
|
|
# ('both' is the normal sub so we don't show it)
|
|
|
|
properties.append(( _('Subscription: '),
|
|
|
|
gobject.markup_escape_text(helpers.get_uf_sub(prim_contact.sub))))
|
|
|
|
|
|
|
|
if prim_contact.keyID:
|
|
|
|
keyID = None
|
|
|
|
if len(prim_contact.keyID) == 8:
|
|
|
|
keyID = prim_contact.keyID
|
|
|
|
elif len(prim_contact.keyID) == 16:
|
|
|
|
keyID = prim_contact.keyID[8:]
|
|
|
|
if keyID:
|
|
|
|
properties.append((_('OpenPGP: '),
|
|
|
|
gobject.markup_escape_text(keyID)))
|
|
|
|
|
|
|
|
if contact.last_activity_time:
|
2010-03-30 14:27:59 +02:00
|
|
|
last_active = datetime(*contact.last_activity_time[:6])
|
|
|
|
current = datetime.now()
|
|
|
|
|
2010-03-30 15:39:49 +02:00
|
|
|
diff = current - last_active
|
|
|
|
diff = timedelta(diff.days, diff.seconds)
|
|
|
|
|
2010-03-30 14:27:59 +02:00
|
|
|
if last_active.date() == current.date():
|
|
|
|
formatted = last_active.strftime("%X")
|
2010-02-08 15:08:40 +01:00
|
|
|
else:
|
2010-03-30 14:27:59 +02:00
|
|
|
formatted = last_active.strftime("%c")
|
|
|
|
|
2010-04-03 17:37:41 +02:00
|
|
|
# Do not show the "Idle since" and "Idle for" items if there
|
|
|
|
# is no meaningful difference between last activity time and
|
|
|
|
# current time.
|
2010-04-03 17:40:40 +02:00
|
|
|
if diff.days > 0 or diff.seconds > 0:
|
2010-04-03 17:37:41 +02:00
|
|
|
cs = "<span foreground='#888A85'>%s</span>"
|
|
|
|
properties.append((str(), None))
|
|
|
|
properties.append(((cs % _("Idle since %s")) % formatted, None))
|
|
|
|
properties.append(((cs % _("Idle for %s")) % str(diff), None))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
while properties:
|
|
|
|
property_ = properties.pop(0)
|
|
|
|
vcard_current_row += 1
|
|
|
|
vertical_fill = gtk.FILL
|
|
|
|
if not properties and table_size == 4:
|
|
|
|
vertical_fill |= gtk.EXPAND
|
|
|
|
label = gtk.Label()
|
|
|
|
label.set_alignment(0, 0)
|
|
|
|
if property_[1]:
|
|
|
|
label.set_markup(property_[0])
|
|
|
|
vcard_table.attach(label, 1, 2, vcard_current_row,
|
|
|
|
vcard_current_row + 1, gtk.FILL, vertical_fill, 0, 0)
|
|
|
|
label = gtk.Label()
|
|
|
|
label.set_alignment(0, 0)
|
|
|
|
label.set_markup(property_[1])
|
|
|
|
label.set_line_wrap(True)
|
|
|
|
vcard_table.attach(label, 2, 3, vcard_current_row,
|
|
|
|
vcard_current_row + 1, gtk.EXPAND | gtk.FILL,
|
|
|
|
vertical_fill, 0, 0)
|
|
|
|
else:
|
|
|
|
if isinstance(property_[0], (unicode, str)): # FIXME: rm unicode?
|
|
|
|
label.set_markup(property_[0])
|
|
|
|
label.set_line_wrap(True)
|
|
|
|
else:
|
|
|
|
label = property_[0]
|
|
|
|
vcard_table.attach(label, 1, 3, vcard_current_row,
|
|
|
|
vcard_current_row + 1, gtk.FILL, vertical_fill, 0)
|
|
|
|
self.avatar_image.set_alignment(0, 0)
|
|
|
|
if table_size == 4:
|
|
|
|
vcard_table.attach(self.avatar_image, 3, 4, 2,
|
|
|
|
vcard_current_row + 1, gtk.FILL, gtk.FILL | gtk.EXPAND, 3, 3)
|
|
|
|
self.win.add(vcard_table)
|
|
|
|
|
|
|
|
def update_last_time(self, last_time):
|
|
|
|
if not self.check_last_time or time.strftime('%x %I:%M %p', last_time) !=\
|
|
|
|
time.strftime('%x %I:%M %p', self.check_last_time):
|
|
|
|
self.win.destroy()
|
|
|
|
self.win = None
|
|
|
|
self.populate(self.cur_data)
|
|
|
|
self.win.ensure_style()
|
|
|
|
self.win.show_all()
|
|
|
|
|
|
|
|
def _append_pep_info(self, contact, properties):
|
|
|
|
"""
|
|
|
|
Append Tune, Mood, Activity, Location information of the specified contact
|
|
|
|
to the given property list.
|
|
|
|
"""
|
|
|
|
if 'mood' in contact.pep:
|
|
|
|
mood = contact.pep['mood'].asMarkupText()
|
2010-03-30 17:14:03 +02:00
|
|
|
properties.append((_("Mood: %s") % mood, None))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
if 'activity' in contact.pep:
|
|
|
|
activity = contact.pep['activity'].asMarkupText()
|
2010-03-30 17:14:03 +02:00
|
|
|
properties.append((_("Activity: %s") % activity, None))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
if 'tune' in contact.pep:
|
|
|
|
tune = contact.pep['tune'].asMarkupText()
|
2010-03-30 20:28:50 +02:00
|
|
|
properties.append((_("Tune: %s") % tune, None))
|
2010-02-08 15:08:40 +01:00
|
|
|
|
|
|
|
if 'location' in contact.pep:
|
|
|
|
location = contact.pep['location'].asMarkupText()
|
2010-03-30 17:14:03 +02:00
|
|
|
properties.append((_("Location: %s") % location, None))
|
2009-12-07 18:32:42 +01:00
|
|
|
|
2008-05-19 23:31:25 +02:00
|
|
|
|
2005-08-15 01:52:12 +02:00
|
|
|
class FileTransfersTooltip(BaseTooltip):
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
|
|
|
Tooltip that is shown in the notification area
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
BaseTooltip.__init__(self)
|
|
|
|
|
|
|
|
def populate(self, file_props):
|
|
|
|
ft_table = gtk.Table(2, 1)
|
|
|
|
ft_table.set_property('column-spacing', 2)
|
|
|
|
current_row = 1
|
|
|
|
self.create_window()
|
|
|
|
properties = []
|
|
|
|
name = file_props['name']
|
|
|
|
if file_props['type'] == 'r':
|
|
|
|
file_name = os.path.split(file_props['file-name'])[1]
|
|
|
|
else:
|
|
|
|
file_name = file_props['name']
|
|
|
|
properties.append((_('Name: '),
|
|
|
|
gobject.markup_escape_text(file_name)))
|
|
|
|
if file_props['type'] == 'r':
|
|
|
|
type_ = _('Download')
|
|
|
|
actor = _('Sender: ')
|
|
|
|
sender = unicode(file_props['sender']).split('/')[0]
|
|
|
|
name = gajim.contacts.get_first_contact_from_jid(
|
|
|
|
file_props['tt_account'], sender).get_shown_name()
|
|
|
|
else:
|
|
|
|
type_ = _('Upload')
|
|
|
|
actor = _('Recipient: ')
|
|
|
|
receiver = file_props['receiver']
|
|
|
|
if hasattr(receiver, 'name'):
|
|
|
|
name = receiver.get_shown_name()
|
|
|
|
else:
|
|
|
|
name = receiver.split('/')[0]
|
|
|
|
properties.append((_('Type: '), type_))
|
|
|
|
properties.append((actor, gobject.markup_escape_text(name)))
|
|
|
|
|
|
|
|
transfered_len = file_props.get('received-len', 0)
|
|
|
|
properties.append((_('Transferred: '), helpers.convert_bytes(transfered_len)))
|
|
|
|
status = ''
|
|
|
|
if 'started' not in file_props or not file_props['started']:
|
|
|
|
status = _('Not started')
|
|
|
|
elif 'connected' in file_props:
|
|
|
|
if 'stopped' in file_props and \
|
|
|
|
file_props['stopped'] == True:
|
|
|
|
status = _('Stopped')
|
|
|
|
elif file_props['completed']:
|
|
|
|
status = _('Completed')
|
|
|
|
elif file_props['connected'] == False:
|
|
|
|
if file_props['completed']:
|
|
|
|
status = _('Completed')
|
|
|
|
else:
|
|
|
|
if 'paused' in file_props and \
|
|
|
|
file_props['paused'] == True:
|
|
|
|
status = _('?transfer status:Paused')
|
|
|
|
elif 'stalled' in file_props and \
|
|
|
|
file_props['stalled'] == True:
|
|
|
|
#stalled is not paused. it is like 'frozen' it stopped alone
|
|
|
|
status = _('Stalled')
|
|
|
|
else:
|
|
|
|
status = _('Transferring')
|
|
|
|
else:
|
|
|
|
status = _('Not started')
|
|
|
|
properties.append((_('Status: '), status))
|
|
|
|
if 'desc' in file_props:
|
|
|
|
file_desc = file_props['desc']
|
|
|
|
properties.append((_('Description: '), gobject.markup_escape_text(
|
|
|
|
file_desc)))
|
|
|
|
while properties:
|
|
|
|
property_ = properties.pop(0)
|
|
|
|
current_row += 1
|
|
|
|
label = gtk.Label()
|
|
|
|
label.set_alignment(0, 0)
|
|
|
|
label.set_markup(property_[0])
|
|
|
|
ft_table.attach(label, 1, 2, current_row, current_row + 1,
|
|
|
|
gtk.FILL, gtk.FILL, 0, 0)
|
|
|
|
label = gtk.Label()
|
|
|
|
label.set_alignment(0, 0)
|
|
|
|
label.set_line_wrap(True)
|
|
|
|
label.set_markup(property_[1])
|
|
|
|
ft_table.attach(label, 2, 3, current_row, current_row + 1,
|
|
|
|
gtk.EXPAND | gtk.FILL, gtk.FILL, 0, 0)
|
|
|
|
|
|
|
|
self.win.add(ft_table)
|
2005-10-30 15:33:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
class ServiceDiscoveryTooltip(BaseTooltip):
|
2010-02-08 15:08:40 +01:00
|
|
|
"""
|
|
|
|
Tooltip that is shown when hovering over a service discovery row
|
|
|
|
"""
|
|
|
|
def populate(self, status):
|
|
|
|
self.create_window()
|
|
|
|
label = gtk.Label()
|
|
|
|
label.set_line_wrap(True)
|
|
|
|
label.set_alignment(0, 0)
|
|
|
|
label.set_selectable(False)
|
|
|
|
if status == 1:
|
|
|
|
label.set_text(
|
|
|
|
_('This service has not yet responded with detailed information'))
|
|
|
|
elif status == 2:
|
|
|
|
label.set_text(
|
|
|
|
_('This service could not respond with detailed information.\n'
|
|
|
|
'It is most likely legacy or broken'))
|
|
|
|
self.win.add(label)
|