2005-03-12 19:12:15 +01:00
|
|
|
## plugins/tabbed_chat_window.py
|
|
|
|
##
|
|
|
|
## Gajim Team:
|
|
|
|
## - Yann Le Boulanger <asterix@lagaule.org>
|
|
|
|
## - Vincent Hanquez <tab@snarc.org>
|
|
|
|
## - Nikos Kouremenos <kourem@gmail.com>
|
|
|
|
##
|
|
|
|
## 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
|
|
|
|
import pango
|
|
|
|
import gobject
|
|
|
|
import time
|
|
|
|
|
|
|
|
from dialogs import *
|
|
|
|
from history_window import *
|
|
|
|
|
|
|
|
from common import i18n
|
|
|
|
|
|
|
|
_ = i18n._
|
|
|
|
APP = i18n.APP
|
|
|
|
gtk.glade.bindtextdomain(APP, i18n.DIR)
|
|
|
|
gtk.glade.textdomain(APP)
|
|
|
|
|
|
|
|
GTKGUI_GLADE='plugins/gtkgui/gtkgui.glade'
|
|
|
|
|
2005-03-13 18:04:57 +01:00
|
|
|
class Chat:
|
|
|
|
"""Class for chat/groupchat windows"""
|
2005-03-12 19:12:15 +01:00
|
|
|
def __init__(self, plugin, account, widget_name):
|
|
|
|
self.xml = gtk.glade.XML(GTKGUI_GLADE, widget_name, APP)
|
|
|
|
self.notebook = self.xml.get_widget('chat_notebook')
|
|
|
|
self.notebook.remove_page(0)
|
|
|
|
self.plugin = plugin
|
|
|
|
self.account = account
|
|
|
|
self.change_cursor = None
|
|
|
|
self.xmls = {}
|
|
|
|
self.tagIn = {}
|
|
|
|
self.tagOut = {}
|
|
|
|
self.tagStatus = {}
|
|
|
|
self.nb_unread = {}
|
|
|
|
self.last_message_time = {}
|
|
|
|
self.print_time_timeout_id = {}
|
|
|
|
self.names = {} # what is printed in the tab : user.name for example
|
2005-03-12 22:30:50 +01:00
|
|
|
self.childs = {}
|
2005-03-12 19:12:15 +01:00
|
|
|
self.window = self.xml.get_widget(widget_name)
|
2005-03-16 21:48:56 +01:00
|
|
|
self.widget_name = widget_name
|
2005-03-12 19:12:15 +01:00
|
|
|
|
|
|
|
def update_tags(self):
|
|
|
|
for jid in self.tagIn:
|
|
|
|
self.tagIn[jid].set_property("foreground", \
|
|
|
|
self.plugin.config['inmsgcolor'])
|
|
|
|
self.tagOut[jid].set_property("foreground", \
|
|
|
|
self.plugin.config['outmsgcolor'])
|
|
|
|
self.tagStatus[jid].set_property("foreground", \
|
|
|
|
self.plugin.config['statusmsgcolor'])
|
|
|
|
|
|
|
|
def update_print_time(self):
|
|
|
|
if self.plugin.config['print_time'] != 'sometimes':
|
|
|
|
list_jid = self.print_time_timeout_id.keys()
|
|
|
|
for jid in list_jid:
|
|
|
|
gobject.source_remove(self.print_time_timeout_id[jid])
|
|
|
|
del self.print_time_timeout_id[jid]
|
|
|
|
else:
|
|
|
|
for jid in self.xmls:
|
2005-03-16 18:22:20 +01:00
|
|
|
if not self.print_time_timeout_id.has_key(jid):
|
2005-03-12 19:12:15 +01:00
|
|
|
self.print_time_timeout(jid)
|
|
|
|
self.print_time_timeout_id[jid] = gobject.timeout_add(300000, \
|
|
|
|
self.print_time_timeout, jid)
|
|
|
|
|
|
|
|
def show_title(self):
|
|
|
|
"""redraw the window's title"""
|
|
|
|
unread = 0
|
|
|
|
for jid in self.nb_unread:
|
|
|
|
unread += self.nb_unread[jid]
|
|
|
|
start = ""
|
|
|
|
if unread > 1:
|
|
|
|
start = "[" + str(unread) + "] "
|
|
|
|
elif unread == 1:
|
|
|
|
start = "* "
|
|
|
|
chat = self.names[jid]
|
2005-03-16 02:27:37 +01:00
|
|
|
if len(self.xmls) > 1: # if more than one tabs in the same window
|
2005-03-16 21:48:56 +01:00
|
|
|
if self.widget_name == 'tabbed_chat_window':
|
|
|
|
chat = 'Chat'
|
|
|
|
elif self.widget_name == 'groupchat_window':
|
|
|
|
chat = 'Groupchat'
|
2005-03-16 02:27:37 +01:00
|
|
|
if len(self.plugin.accounts.keys()) >= 2: # if we have 2 or more accounts
|
|
|
|
title = start + chat + ' (account: ' + self.account + ')'
|
|
|
|
else:
|
|
|
|
title = start + chat
|
2005-03-16 18:08:38 +01:00
|
|
|
|
2005-03-16 02:27:37 +01:00
|
|
|
self.window.set_title(title)
|
2005-03-12 19:12:15 +01:00
|
|
|
|
|
|
|
def redraw_tab(self, jid):
|
|
|
|
"""redraw the label of the tab"""
|
|
|
|
start = ''
|
|
|
|
if self.nb_unread[jid] > 1:
|
|
|
|
start = "[" + str(self.nb_unread[jid]) + "] "
|
|
|
|
elif self.nb_unread[jid] == 1:
|
|
|
|
start = "* "
|
2005-03-12 22:30:50 +01:00
|
|
|
child = self.childs[jid]
|
2005-03-12 19:12:15 +01:00
|
|
|
tab_label = self.notebook.get_tab_label(child).get_children()[0]
|
|
|
|
tab_label.set_text(start + self.names[jid])
|
|
|
|
|
|
|
|
def on_window_destroy(self, widget, kind): #kind is 'chats' or 'gc'
|
|
|
|
#clean self.plugin.windows[self.account][kind]
|
|
|
|
for jid in self.xmls:
|
2005-03-29 18:16:42 +02:00
|
|
|
if self.plugin.systray_enabled and self.nb_unread[jid] > 0:
|
2005-03-21 23:06:34 +01:00
|
|
|
self.plugin.systray.remove_jid(jid, self.account)
|
2005-03-12 19:12:15 +01:00
|
|
|
del self.plugin.windows[self.account][kind][jid]
|
|
|
|
if self.print_time_timeout_id.has_key(jid):
|
|
|
|
gobject.source_remove(self.print_time_timeout_id[jid])
|
|
|
|
if self.plugin.windows[self.account][kind].has_key('tabbed'):
|
|
|
|
del self.plugin.windows[self.account][kind]['tabbed']
|
|
|
|
|
|
|
|
def get_active_jid(self):
|
|
|
|
active_child = self.notebook.get_nth_page(\
|
|
|
|
self.notebook.get_current_page())
|
|
|
|
active_jid = ''
|
|
|
|
for jid in self.xmls:
|
2005-03-12 22:30:50 +01:00
|
|
|
if self.childs[jid] == active_child:
|
2005-03-12 19:12:15 +01:00
|
|
|
active_jid = jid
|
|
|
|
break
|
|
|
|
return active_jid
|
|
|
|
|
|
|
|
def on_close_button_clicked(self, button, jid):
|
|
|
|
"""When close button is pressed :
|
|
|
|
close a tab"""
|
|
|
|
self.remove_tab(jid)
|
|
|
|
|
|
|
|
def on_chat_window_focus_in_event(self, widget, event):
|
|
|
|
"""When window get focus"""
|
|
|
|
jid = self.get_active_jid()
|
|
|
|
conversation_textview = self.xmls[jid].\
|
|
|
|
get_widget('conversation_textview')
|
|
|
|
conversation_buffer = conversation_textview.get_buffer()
|
|
|
|
end_iter = conversation_buffer.get_end_iter()
|
|
|
|
end_rect = conversation_textview.get_iter_location(end_iter)
|
|
|
|
visible_rect = conversation_textview.get_visible_rect()
|
|
|
|
if end_rect.y <= (visible_rect.y + visible_rect.height):
|
|
|
|
#we are at the end
|
|
|
|
if self.nb_unread[jid] > 0:
|
|
|
|
self.nb_unread[jid] = 0
|
|
|
|
self.redraw_tab(jid)
|
|
|
|
self.show_title()
|
2005-03-29 18:16:42 +02:00
|
|
|
if self.plugin.systray_enabled:
|
|
|
|
self.plugin.systray.remove_jid(jid, self.account)
|
2005-03-12 19:12:15 +01:00
|
|
|
|
|
|
|
def on_chat_notebook_switch_page(self, notebook, page, page_num):
|
|
|
|
new_child = notebook.get_nth_page(page_num)
|
|
|
|
new_jid = ''
|
|
|
|
for jid in self.xmls:
|
2005-03-12 22:30:50 +01:00
|
|
|
if self.childs[jid] == new_child:
|
2005-03-12 19:12:15 +01:00
|
|
|
new_jid = jid
|
|
|
|
break
|
|
|
|
conversation_textview = self.xmls[new_jid].\
|
|
|
|
get_widget('conversation_textview')
|
|
|
|
conversation_buffer = conversation_textview.get_buffer()
|
|
|
|
end_iter = conversation_buffer.get_end_iter()
|
|
|
|
end_rect = conversation_textview.get_iter_location(end_iter)
|
|
|
|
visible_rect = conversation_textview.get_visible_rect()
|
|
|
|
if end_rect.y <= (visible_rect.y + visible_rect.height):
|
|
|
|
#we are at the end
|
|
|
|
if self.nb_unread[new_jid] > 0:
|
|
|
|
self.nb_unread[new_jid] = 0
|
|
|
|
self.redraw_tab(new_jid)
|
|
|
|
self.show_title()
|
2005-03-29 18:16:42 +02:00
|
|
|
if self.plugin.systray_enabled:
|
|
|
|
self.plugin.systray.remove_jid(new_jid, self.account)
|
2005-03-12 19:12:15 +01:00
|
|
|
|
|
|
|
def active_tab(self, jid):
|
|
|
|
self.notebook.set_current_page(\
|
2005-03-12 22:30:50 +01:00
|
|
|
self.notebook.page_num(self.childs[jid]))
|
2005-03-12 19:12:15 +01:00
|
|
|
|
|
|
|
def remove_tab(self, jid, kind): #kind is 'chats' or 'gc'
|
|
|
|
if len(self.xmls) == 1:
|
|
|
|
self.window.destroy()
|
|
|
|
else:
|
2005-03-21 23:06:34 +01:00
|
|
|
if self.nb_unread[jid] > 0:
|
|
|
|
self.nb_unread[jid] = 0
|
|
|
|
self.show_title()
|
2005-03-29 18:16:42 +02:00
|
|
|
if self.plugin.systray_enabled:
|
|
|
|
self.plugin.systray.remove_jid(jid, self.account)
|
2005-03-12 19:12:15 +01:00
|
|
|
if self.print_time_timeout_id.has_key(jid):
|
|
|
|
gobject.source_remove(self.print_time_timeout_id[jid])
|
|
|
|
del self.print_time_timeout_id[jid]
|
|
|
|
self.notebook.remove_page(\
|
2005-03-12 22:30:50 +01:00
|
|
|
self.notebook.page_num(self.childs[jid]))
|
2005-03-12 19:12:15 +01:00
|
|
|
del self.plugin.windows[self.account][kind][jid]
|
|
|
|
del self.nb_unread[jid]
|
|
|
|
del self.last_message_time[jid]
|
|
|
|
del self.xmls[jid]
|
|
|
|
del self.tagIn[jid]
|
|
|
|
del self.tagOut[jid]
|
|
|
|
del self.tagStatus[jid]
|
|
|
|
if len(self.xmls) == 1:
|
|
|
|
self.notebook.set_show_tabs(False)
|
|
|
|
self.show_title()
|
|
|
|
|
|
|
|
def new_tab(self, jid):
|
|
|
|
self.nb_unread[jid] = 0
|
|
|
|
self.last_message_time[jid] = 0
|
|
|
|
|
|
|
|
conversation_textview = \
|
|
|
|
self.xmls[jid].get_widget('conversation_textview')
|
|
|
|
conversation_buffer = conversation_textview.get_buffer()
|
|
|
|
end_iter = conversation_buffer.get_end_iter()
|
|
|
|
conversation_buffer.create_mark('end', end_iter, 0)
|
|
|
|
self.tagIn[jid] = conversation_buffer.create_tag('incoming')
|
|
|
|
color = self.plugin.config['inmsgcolor']
|
|
|
|
self.tagIn[jid].set_property('foreground', color)
|
|
|
|
self.tagOut[jid] = conversation_buffer.create_tag('outgoing')
|
|
|
|
color = self.plugin.config['outmsgcolor']
|
|
|
|
self.tagOut[jid].set_property('foreground', color)
|
|
|
|
self.tagStatus[jid] = conversation_buffer.create_tag('status')
|
|
|
|
color = self.plugin.config['statusmsgcolor']
|
|
|
|
self.tagStatus[jid].set_property('foreground', color)
|
|
|
|
|
|
|
|
tag = conversation_buffer.create_tag('time_sometimes')
|
|
|
|
tag.set_property('foreground', '#9e9e9e')
|
|
|
|
tag.set_property('scale', pango.SCALE_SMALL)
|
|
|
|
tag.set_property('justification', gtk.JUSTIFY_CENTER)
|
|
|
|
|
|
|
|
tag = conversation_buffer.create_tag('url')
|
|
|
|
tag.set_property('foreground', '#0000ff')
|
|
|
|
tag.set_property('underline', pango.UNDERLINE_SINGLE)
|
|
|
|
tag.connect('event', self.hyperlink_handler, 'url')
|
|
|
|
|
|
|
|
tag = conversation_buffer.create_tag('mail')
|
|
|
|
tag.set_property('foreground', '#0000ff')
|
|
|
|
tag.set_property('underline', pango.UNDERLINE_SINGLE)
|
|
|
|
tag.connect('event', self.hyperlink_handler, 'mail')
|
|
|
|
|
|
|
|
tag = conversation_buffer.create_tag('bold')
|
|
|
|
tag.set_property('weight', pango.WEIGHT_BOLD)
|
|
|
|
|
|
|
|
tag = conversation_buffer.create_tag('italic')
|
|
|
|
tag.set_property('style', pango.STYLE_ITALIC)
|
|
|
|
|
|
|
|
tag = conversation_buffer.create_tag('underline')
|
|
|
|
tag.set_property('underline', pango.UNDERLINE_SINGLE)
|
|
|
|
|
|
|
|
self.xmls[jid].signal_autoconnect(self)
|
|
|
|
conversation_scrolledwindow = self.xmls[jid].\
|
|
|
|
get_widget('conversation_scrolledwindow')
|
|
|
|
conversation_scrolledwindow.get_vadjustment().connect('value-changed', \
|
|
|
|
self.on_conversation_vadjustment_value_changed)
|
|
|
|
|
2005-03-12 22:30:50 +01:00
|
|
|
child = self.childs[jid]
|
2005-03-12 19:12:15 +01:00
|
|
|
self.notebook.append_page(child)
|
|
|
|
if len(self.xmls) > 1:
|
|
|
|
self.notebook.set_show_tabs(True)
|
|
|
|
|
2005-03-12 22:30:50 +01:00
|
|
|
xm = gtk.glade.XML(GTKGUI_GLADE, 'tab_hbox', APP)
|
|
|
|
tab_hbox = xm.get_widget('tab_hbox')
|
|
|
|
xm.signal_connect('on_close_button_clicked', \
|
|
|
|
self.on_close_button_clicked, jid)
|
|
|
|
self.notebook.set_tab_label(child, tab_hbox)
|
|
|
|
|
2005-03-12 19:12:15 +01:00
|
|
|
self.show_title()
|
|
|
|
|
2005-03-31 17:03:07 +02:00
|
|
|
def on_conversation_textview_key_press_event(self, widget, event):
|
2005-04-08 20:57:49 +02:00
|
|
|
"""Do not block these events and send them to the notebook"""
|
|
|
|
'''
|
|
|
|
if event.state & (gtk.gdk.CONTROL_MASK | gtk.gdk.SHIFT_MASK):
|
|
|
|
if event.keyval == gtk.keysyms.Tab: # CTRL + SHIFT + TAB
|
2005-03-31 17:03:07 +02:00
|
|
|
self.notebook.emit('key_press_event', event)
|
2005-04-08 20:57:49 +02:00
|
|
|
'''
|
|
|
|
if event.state & gtk.gdk.CONTROL_MASK:
|
|
|
|
if event.keyval == gtk.keysyms.Tab: # CTRL + TAB
|
2005-03-31 17:03:07 +02:00
|
|
|
self.notebook.emit('key_press_event', event)
|
2005-04-08 20:57:49 +02:00
|
|
|
elif event.keyval == gtk.keysyms.Page_Down: # CTRL + PAGE DOWN
|
|
|
|
self.notebook.emit('key_press_event', event)
|
|
|
|
elif event.keyval == gtk.keysyms.Page_Up: # CTRL + PAGE UP
|
|
|
|
self.notebook.emit('key_press_event', event)
|
|
|
|
|
2005-03-12 22:30:50 +01:00
|
|
|
def on_chat_notebook_key_press_event(self, widget, event):
|
2005-03-12 19:12:15 +01:00
|
|
|
st = '1234567890' # zero is here cause humans count from 1, pc from 0 :P
|
|
|
|
jid = self.get_active_jid()
|
|
|
|
if event.keyval == gtk.keysyms.Escape: # ESCAPE
|
|
|
|
self.remove_tab(jid)
|
2005-04-08 20:57:49 +02:00
|
|
|
elif event.keyval == gtk.keysyms.F4 and \
|
|
|
|
(event.state & gtk.gdk.CONTROL_MASK): # CTRL + F4
|
|
|
|
self.remove_tab(jid)
|
2005-03-12 19:12:15 +01:00
|
|
|
elif event.string and event.string in st \
|
|
|
|
and (event.state & gtk.gdk.MOD1_MASK): # alt + 1,2,3..
|
|
|
|
self.notebook.set_current_page(st.index(event.string))
|
2005-04-08 20:57:49 +02:00
|
|
|
elif event.keyval == gtk.keysyms.Page_Down:
|
|
|
|
if event.state & gtk.gdk.CONTROL_MASK: # CTRL + PAGE DOWN
|
2005-03-12 19:12:15 +01:00
|
|
|
current = self.notebook.get_current_page()
|
|
|
|
if current > 0:
|
|
|
|
self.notebook.set_current_page(current-1)
|
2005-04-08 20:57:49 +02:00
|
|
|
elif event.state & gtk.gdk.SHIFT_MASK: # SHIFT + PAGE DOWN
|
2005-03-12 19:12:15 +01:00
|
|
|
conversation_textview = self.xmls[jid].\
|
|
|
|
get_widget('conversation_textview')
|
|
|
|
rect = conversation_textview.get_visible_rect()
|
|
|
|
iter = conversation_textview.get_iter_at_location(rect.x,\
|
|
|
|
rect.y + rect.height)
|
|
|
|
conversation_textview.scroll_to_iter(iter, 0.1, True, 0, 0)
|
2005-04-08 20:57:49 +02:00
|
|
|
elif event.keyval == gtk.keysyms.Page_Up:
|
|
|
|
if event.state & gtk.gdk.CONTROL_MASK: # CTRL + PAGE UP
|
2005-03-12 19:12:15 +01:00
|
|
|
current = self.notebook.get_current_page()
|
|
|
|
if current < (self.notebook.get_n_pages()-1):
|
|
|
|
self.notebook.set_current_page(current+1)
|
2005-04-08 20:57:49 +02:00
|
|
|
elif event.state & gtk.gdk.SHIFT_MASK: # SHIFT + PAGE UP
|
2005-03-12 19:12:15 +01:00
|
|
|
conversation_textview = self.xmls[jid].\
|
|
|
|
get_widget('conversation_textview')
|
|
|
|
rect = conversation_textview.get_visible_rect()
|
|
|
|
iter = conversation_textview.get_iter_at_location(rect.x, rect.y)
|
|
|
|
conversation_textview.scroll_to_iter(iter, 0.1, True, 0, 1)
|
2005-04-08 20:57:49 +02:00
|
|
|
# or event.keyval == gtk.keysyms.KP_Up
|
|
|
|
'''
|
|
|
|
elif event.keyval == gtk.keysyms.Up:
|
|
|
|
if event.state & gtk.gdk.SHIFT_MASK: # SHIFT + UP
|
|
|
|
print 'be' # FIXME: find a way to to keyUP in scrolledwindow
|
|
|
|
conversation_scrolledwindow = self.xml.get_widget('conversation_scrolledwindow')
|
|
|
|
conversation_scrolledwindow.emit('scroll-child', gtk.SCROLL_PAGE_BACKWARD, False)
|
|
|
|
'''
|
|
|
|
if event.keyval == gtk.keysyms.Tab:
|
|
|
|
'''
|
|
|
|
if event.state & (gtk.gdk.CONTROL_MASK | gtk.gdk.SHIFT_MASK):
|
|
|
|
print '^shift+tab'
|
|
|
|
# CTRL + SHIFT + TAB
|
|
|
|
current = self.notebook.get_current_page()
|
|
|
|
if current > 0:
|
|
|
|
self.notebook.set_current_page(current-1)
|
|
|
|
else:
|
|
|
|
self.notebook.set_current_page(0)
|
|
|
|
'''
|
|
|
|
if event.state & gtk.gdk.CONTROL_MASK: # CTRL + TAB
|
|
|
|
current = self.notebook.get_current_page()
|
|
|
|
if current < (self.notebook.get_n_pages()-1):
|
|
|
|
self.notebook.set_current_page(current+1)
|
|
|
|
else:
|
|
|
|
self.notebook.set_current_page(0)
|
2005-03-12 19:12:15 +01:00
|
|
|
elif (event.state & gtk.gdk.CONTROL_MASK) or (event.keyval ==\
|
|
|
|
gtk.keysyms.Control_L) or (event.keyval == gtk.keysyms.Control_R):
|
2005-04-08 20:57:49 +02:00
|
|
|
# we pressed a control key or ctrl+sth: we don't block the event
|
|
|
|
# in order to let ctrl+c (copy text) and others do their default work
|
2005-03-12 19:12:15 +01:00
|
|
|
pass
|
|
|
|
else: # it's a normal key press make sure message_textview has focus
|
|
|
|
message_textview = self.xmls[jid].get_widget('message_textview')
|
|
|
|
if not message_textview.is_focus():
|
|
|
|
message_textview.grab_focus()
|
2005-03-16 19:35:53 +01:00
|
|
|
message_textview.emit('key_press_event', event)
|
2005-03-12 19:12:15 +01:00
|
|
|
|
|
|
|
def on_conversation_vadjustment_value_changed(self, widget):
|
|
|
|
jid = self.get_active_jid()
|
|
|
|
if not self.nb_unread[jid]:
|
|
|
|
return
|
|
|
|
conversation_textview = self.xmls[jid].get_widget('conversation_textview')
|
|
|
|
conversation_buffer = conversation_textview.get_buffer()
|
|
|
|
end_iter = conversation_buffer.get_end_iter()
|
|
|
|
end_rect = conversation_textview.get_iter_location(end_iter)
|
|
|
|
visible_rect = conversation_textview.get_visible_rect()
|
|
|
|
if end_rect.y <= (visible_rect.y + visible_rect.height) and \
|
|
|
|
self.window.is_active():
|
|
|
|
#we are at the end
|
|
|
|
self.nb_unread[jid] = 0
|
|
|
|
self.redraw_tab(jid)
|
|
|
|
self.show_title()
|
2005-03-29 18:16:42 +02:00
|
|
|
if self.plugin.systray_enabled:
|
|
|
|
self.plugin.systray.remove_jid(jid, self.account)
|
2005-03-12 19:12:15 +01:00
|
|
|
|
|
|
|
def on_conversation_textview_motion_notify_event(self, widget, event):
|
|
|
|
"""change the cursor to a hand when we are on a mail or an url"""
|
|
|
|
x, y, spam = widget.window.get_pointer()
|
|
|
|
x, y = widget.window_to_buffer_coords(gtk.TEXT_WINDOW_TEXT, x, y)
|
|
|
|
tags = widget.get_iter_at_location(x, y).get_tags()
|
|
|
|
if self.change_cursor:
|
|
|
|
widget.get_window(gtk.TEXT_WINDOW_TEXT).set_cursor(\
|
|
|
|
gtk.gdk.Cursor(gtk.gdk.XTERM))
|
|
|
|
self.change_cursor = None
|
|
|
|
for tag in tags:
|
|
|
|
if tag == widget.get_buffer().get_tag_table().lookup('url') or \
|
|
|
|
tag == widget.get_buffer().get_tag_table().lookup('mail'):
|
|
|
|
widget.get_window(gtk.TEXT_WINDOW_TEXT).set_cursor(\
|
|
|
|
gtk.gdk.Cursor(gtk.gdk.HAND2))
|
|
|
|
self.change_cursor = tag
|
|
|
|
return False
|
|
|
|
|
|
|
|
def on_conversation_textview_button_press_event(self, widget, event):
|
|
|
|
# Do not open the standard popup menu, so we block right button click
|
|
|
|
# on a taged text
|
|
|
|
if event.button == 3:
|
|
|
|
win = widget.get_window(gtk.TEXT_WINDOW_TEXT)
|
|
|
|
x, y = widget.window_to_buffer_coords(gtk.TEXT_WINDOW_TEXT,\
|
|
|
|
int(event.x), int(event.y))
|
|
|
|
iter = widget.get_iter_at_location(x, y)
|
|
|
|
tags = iter.get_tags()
|
|
|
|
if tags:
|
2005-04-08 22:03:19 +02:00
|
|
|
for tag in tags:
|
|
|
|
tag_name = tag.get_property('name')
|
|
|
|
if 'url' in tag_name or 'mail' in tag_name:
|
|
|
|
return True
|
2005-03-12 19:12:15 +01:00
|
|
|
|
|
|
|
def print_time_timeout(self, jid):
|
|
|
|
if not jid in self.xmls.keys():
|
|
|
|
return 0
|
|
|
|
if self.plugin.config['print_time'] == 'sometimes':
|
|
|
|
conversation_textview = self.xmls[jid].\
|
|
|
|
get_widget('conversation_textview')
|
|
|
|
conversation_buffer = conversation_textview.get_buffer()
|
|
|
|
end_iter = conversation_buffer.get_end_iter()
|
|
|
|
tim = time.localtime()
|
|
|
|
tim_format = time.strftime('%H:%M', tim)
|
|
|
|
conversation_buffer.insert_with_tags_by_name(end_iter, tim_format + \
|
|
|
|
'\n', 'time_sometimes')
|
|
|
|
#scroll to the end of the textview
|
|
|
|
end_rect = conversation_textview.get_iter_location(end_iter)
|
|
|
|
visible_rect = conversation_textview.get_visible_rect()
|
|
|
|
if end_rect.y <= (visible_rect.y + visible_rect.height):
|
|
|
|
#we are at the end
|
|
|
|
conversation_textview.scroll_to_mark(conversation_buffer.\
|
|
|
|
get_mark('end'), 0.1, 0, 0, 0)
|
|
|
|
return 1
|
|
|
|
if self.print_time_timeout_id.has_key(jid):
|
|
|
|
del self.print_time_timeout_id[jid]
|
|
|
|
return 0
|
|
|
|
|
|
|
|
def on_open_link_activated(self, widget, kind, text):
|
|
|
|
self.plugin.launch_browser_mailer(kind, text)
|
|
|
|
|
|
|
|
def on_copy_link_activated(self, widget, text):
|
|
|
|
clip = gtk.clipboard_get()
|
|
|
|
clip.set_text(text)
|
|
|
|
|
|
|
|
def make_link_menu(self, event, kind, text):
|
|
|
|
menu = gtk.Menu()
|
|
|
|
if kind == 'mail':
|
|
|
|
item = gtk.MenuItem(_('_Open email composer'))
|
|
|
|
else:
|
|
|
|
item = gtk.MenuItem(_('_Open link'))
|
|
|
|
item.connect('activate', self.on_open_link_activated, kind, text)
|
|
|
|
menu.append(item)
|
|
|
|
if kind == 'mail':
|
|
|
|
item = gtk.MenuItem(_('_Copy email address'))
|
|
|
|
else: # It's an url
|
|
|
|
item = gtk.MenuItem(_('_Copy link address'))
|
|
|
|
item.connect('activate', self.on_copy_link_activated, text)
|
|
|
|
menu.append(item)
|
|
|
|
|
|
|
|
menu.popup(None, None, None, event.button, event.time)
|
|
|
|
menu.show_all()
|
|
|
|
menu.reposition()
|
|
|
|
|
|
|
|
def hyperlink_handler(self, texttag, widget, event, iter, kind):
|
2005-03-14 18:04:46 +01:00
|
|
|
if event.type == gtk.gdk.BUTTON_PRESS:
|
2005-03-12 19:12:15 +01:00
|
|
|
begin_iter = iter.copy()
|
|
|
|
#we get the begining of the tag
|
|
|
|
while not begin_iter.begins_tag(texttag):
|
|
|
|
begin_iter.backward_char()
|
|
|
|
end_iter = iter.copy()
|
|
|
|
#we get the end of the tag
|
|
|
|
while not end_iter.ends_tag(texttag):
|
|
|
|
end_iter.forward_char()
|
|
|
|
word = begin_iter.get_text(end_iter)
|
2005-04-08 22:03:19 +02:00
|
|
|
if event.button == 3: # right click
|
2005-03-12 19:12:15 +01:00
|
|
|
self.make_link_menu(event, kind, word)
|
|
|
|
else:
|
|
|
|
#we launch the correct application
|
|
|
|
self.plugin.launch_browser_mailer(kind, word)
|
|
|
|
|
2005-03-16 18:22:20 +01:00
|
|
|
def print_with_tag_list(self, buffer, text, iter, tag_list):
|
|
|
|
begin_mark = buffer.create_mark('begin_tag', iter, True)
|
|
|
|
buffer.insert(iter, text)
|
|
|
|
begin_tagged = buffer.get_iter_at_mark(begin_mark)
|
|
|
|
for tag in tag_list:
|
|
|
|
buffer.apply_tag_by_name(tag, begin_tagged, iter)
|
|
|
|
buffer.delete_mark(begin_mark)
|
|
|
|
|
|
|
|
def detect_and_print_special_text(self, otext, jid, other_tags, \
|
|
|
|
print_all_special):
|
2005-03-12 19:12:15 +01:00
|
|
|
conversation_textview = self.xmls[jid].get_widget('conversation_textview')
|
|
|
|
conversation_buffer = conversation_textview.get_buffer()
|
|
|
|
|
2005-03-13 18:04:57 +01:00
|
|
|
start = 0
|
|
|
|
end = 0
|
|
|
|
index = 0
|
|
|
|
|
|
|
|
# basic: links + mail + formatting is always checked (we like that)
|
|
|
|
if self.plugin.config['useemoticons']: # search for emoticons & urls
|
|
|
|
iterator = self.plugin.emot_and_basic_re.finditer(otext)
|
|
|
|
else: # search for just urls + mail + formatting
|
|
|
|
iterator = self.plugin.basic_pattern_re.finditer(otext)
|
|
|
|
for match in iterator:
|
|
|
|
start, end = match.span()
|
|
|
|
special_text = otext[start:end]
|
|
|
|
if start != 0:
|
|
|
|
text_before_special_text = otext[index:start]
|
|
|
|
end_iter = conversation_buffer.get_end_iter()
|
|
|
|
if print_all_special:
|
2005-03-16 18:22:20 +01:00
|
|
|
self.print_with_tag_list(conversation_buffer, \
|
|
|
|
text_before_special_text, end_iter, other_tags)
|
2005-03-13 18:04:57 +01:00
|
|
|
else:
|
|
|
|
conversation_buffer.insert(end_iter, text_before_special_text)
|
|
|
|
if not print_all_special:
|
2005-03-16 18:22:20 +01:00
|
|
|
other_tags = []
|
2005-03-13 18:04:57 +01:00
|
|
|
index = end # update index
|
2005-03-13 23:03:14 +01:00
|
|
|
|
|
|
|
#now print it
|
2005-03-16 18:22:20 +01:00
|
|
|
self.print_special_text(special_text, other_tags, conversation_buffer)
|
2005-03-13 18:04:57 +01:00
|
|
|
|
2005-03-16 18:22:20 +01:00
|
|
|
return index
|
2005-03-13 23:03:14 +01:00
|
|
|
|
2005-03-16 18:22:20 +01:00
|
|
|
def print_special_text(self, special_text, other_tags, conversation_buffer):
|
|
|
|
tags = []
|
|
|
|
use_other_tags = True
|
2005-03-17 01:53:13 +01:00
|
|
|
|
|
|
|
possible_emot_ascii_caps = special_text.upper() # emoticons keys are CAPS
|
2005-03-13 23:03:14 +01:00
|
|
|
if possible_emot_ascii_caps in self.plugin.emoticons.keys():
|
|
|
|
#it's an emoticon
|
|
|
|
emot_ascii = possible_emot_ascii_caps
|
|
|
|
end_iter = conversation_buffer.get_end_iter()
|
|
|
|
conversation_buffer.insert_pixbuf(end_iter, \
|
|
|
|
self.plugin.emoticons[emot_ascii])
|
|
|
|
elif special_text.startswith('mailto:'):
|
|
|
|
#it's a mail
|
2005-03-16 18:22:20 +01:00
|
|
|
tags.append('mail')
|
|
|
|
use_other_tags = False
|
2005-03-13 23:03:14 +01:00
|
|
|
elif self.plugin.sth_at_sth_dot_sth_re.match(special_text):
|
|
|
|
#it's a mail
|
2005-03-16 18:22:20 +01:00
|
|
|
tags.append('mail')
|
|
|
|
use_other_tags = False
|
2005-03-14 02:02:59 +01:00
|
|
|
elif special_text.startswith('*'): # it's a bold text
|
2005-03-16 18:22:20 +01:00
|
|
|
tags.append('bold')
|
2005-03-14 02:02:59 +01:00
|
|
|
if special_text[1] == '/': # it's also italic
|
2005-03-16 18:22:20 +01:00
|
|
|
tags.append('italic')
|
2005-03-14 02:02:59 +01:00
|
|
|
special_text = special_text[2:-2] # remove */ /*
|
|
|
|
elif special_text[1] == '_': # it's also underlined
|
2005-03-16 18:22:20 +01:00
|
|
|
tags.append('underline')
|
2005-03-14 02:02:59 +01:00
|
|
|
special_text = special_text[2:-2] # remove *_ _*
|
|
|
|
else:
|
|
|
|
special_text = special_text[1:-1] # remove * *
|
|
|
|
elif special_text.startswith('/'): # it's an italic text
|
2005-03-16 18:22:20 +01:00
|
|
|
tags.append('italic')
|
2005-03-14 02:02:59 +01:00
|
|
|
if special_text[1] == '*': # it's also bold
|
2005-03-16 18:22:20 +01:00
|
|
|
tags.append('bold')
|
2005-03-14 02:02:59 +01:00
|
|
|
special_text = special_text[2:-2] # remove /* */
|
|
|
|
elif special_text[1] == '_': # it's also underlined
|
2005-03-16 18:22:20 +01:00
|
|
|
tags.append('underline')
|
2005-03-14 02:02:59 +01:00
|
|
|
special_text = special_text[2:-2] # remove /_ _/
|
|
|
|
else:
|
|
|
|
special_text = special_text[1:-1] # remove / /
|
|
|
|
elif special_text.startswith('_'): # it's an underlined text
|
2005-03-16 18:22:20 +01:00
|
|
|
tags.append('underline')
|
2005-03-14 02:02:59 +01:00
|
|
|
if special_text[1] == '*': # it's also bold
|
2005-03-16 18:22:20 +01:00
|
|
|
tags.append('bold')
|
2005-03-14 02:02:59 +01:00
|
|
|
special_text = special_text[2:-2] # remove _* *_
|
|
|
|
elif special_text[1] == '/': # it's also italic
|
2005-03-16 18:22:20 +01:00
|
|
|
tags.append('italic')
|
2005-03-14 02:02:59 +01:00
|
|
|
special_text = special_text[2:-2] # remove _/ /_
|
|
|
|
else:
|
|
|
|
special_text = special_text[1:-1] # remove _ _
|
2005-03-13 23:03:14 +01:00
|
|
|
else:
|
|
|
|
#it's a url
|
2005-03-16 18:22:20 +01:00
|
|
|
tags.append('url')
|
|
|
|
use_other_tags = False
|
|
|
|
|
|
|
|
if len(tags) > 0:
|
|
|
|
end_iter = conversation_buffer.get_end_iter()
|
|
|
|
all_tags = tags[:]
|
|
|
|
if use_other_tags:
|
|
|
|
all_tags += other_tags
|
|
|
|
self.print_with_tag_list(conversation_buffer, special_text, end_iter, \
|
|
|
|
all_tags)
|
2005-03-13 23:03:14 +01:00
|
|
|
|
2005-03-16 18:22:20 +01:00
|
|
|
def print_conversation_line(self, text, jid, kind, name, tim, \
|
|
|
|
other_tags_for_name = []):
|
|
|
|
conversation_textview = self.xmls[jid].get_widget('conversation_textview')
|
|
|
|
conversation_buffer = conversation_textview.get_buffer()
|
|
|
|
print_all_special = False
|
|
|
|
if not text:
|
|
|
|
text = ''
|
2005-03-13 23:03:14 +01:00
|
|
|
end_iter = conversation_buffer.get_end_iter()
|
2005-03-16 18:22:20 +01:00
|
|
|
if self.plugin.config['print_time'] == 'always':
|
|
|
|
if not tim:
|
|
|
|
tim = time.localtime()
|
2005-04-02 21:52:00 +02:00
|
|
|
self.before_time_symbols = self.plugin.config['before_time']
|
|
|
|
self.after_time_symbols = self.plugin.config['after_time']
|
|
|
|
format = self.before_time_symbols + '%H:%M:%S' + self.after_time_symbols
|
|
|
|
tim_format = time.strftime(format, tim)
|
2005-03-16 18:22:20 +01:00
|
|
|
conversation_buffer.insert(end_iter, tim_format + ' ')
|
|
|
|
|
|
|
|
if kind == 'status':
|
|
|
|
print_all_special = True
|
|
|
|
elif text.startswith('/me'):
|
|
|
|
text = name + text[3:]
|
|
|
|
print_all_special = True
|
|
|
|
|
|
|
|
if kind == 'incoming':
|
|
|
|
self.last_message_time[jid] = time.time()
|
|
|
|
|
|
|
|
tags = other_tags_for_name[:] #create a new list
|
|
|
|
tags.append(kind)
|
|
|
|
if name and not print_all_special:
|
2005-04-02 21:52:00 +02:00
|
|
|
self.before_nickname_symbols = self.plugin.config['before_nickname']
|
|
|
|
self.after_nickname_symbols = self.plugin.config['after_nickname']
|
|
|
|
format = self.before_nickname_symbols + name\
|
|
|
|
+ self.after_nickname_symbols + ' '
|
|
|
|
self.print_with_tag_list(conversation_buffer, format, end_iter, tags)
|
2005-03-16 18:22:20 +01:00
|
|
|
|
|
|
|
text += '\n'
|
|
|
|
# detect urls formatting and if the user has it on emoticons
|
|
|
|
index = self.detect_and_print_special_text(text, jid, \
|
|
|
|
tags, print_all_special)
|
|
|
|
|
|
|
|
# add the rest of text located in the index and after
|
|
|
|
end_iter = conversation_buffer.get_end_iter()
|
|
|
|
if print_all_special:
|
|
|
|
conversation_buffer.insert_with_tags_by_name(end_iter, text[index:], \
|
|
|
|
kind)
|
|
|
|
else:
|
|
|
|
conversation_buffer.insert(end_iter, text[index:])
|
|
|
|
|
|
|
|
#scroll to the end of the textview
|
|
|
|
end_iter = conversation_buffer.get_end_iter()
|
|
|
|
end_rect = conversation_textview.get_iter_location(end_iter)
|
|
|
|
visible_rect = conversation_textview.get_visible_rect()
|
|
|
|
end = False
|
|
|
|
if end_rect.y <= (visible_rect.y + visible_rect.height) or \
|
2005-03-16 20:04:20 +01:00
|
|
|
(kind == 'outgoing'):
|
2005-03-16 18:22:20 +01:00
|
|
|
#we are at the end or we are sending something
|
|
|
|
end = True
|
|
|
|
conversation_textview.scroll_to_mark(conversation_buffer.\
|
|
|
|
get_mark('end'), 0.1, 0, 0, 0)
|
|
|
|
if ((jid != self.get_active_jid()) or (not self.window.is_active()) or \
|
|
|
|
(not end)) and kind == 'incoming':
|
|
|
|
self.nb_unread[jid] += 1
|
2005-03-29 18:16:42 +02:00
|
|
|
if self.plugin.systray_enabled:
|
|
|
|
self.plugin.systray.add_jid(jid, self.account)
|
2005-03-16 18:22:20 +01:00
|
|
|
self.redraw_tab(jid)
|
|
|
|
self.show_title()
|