gajim-plural/src/history_window.py

153 lines
4.6 KiB
Python
Raw Normal View History

## history_window.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>
##
## 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 time
import os
import gtkgui_helpers
2005-03-11 18:57:35 +01:00
from common import gajim
from common import helpers
2005-03-11 18:57:35 +01:00
from common import i18n
_ = i18n._
APP = i18n.APP
gtk.glade.bindtextdomain(APP, i18n.DIR)
gtk.glade.textdomain(APP)
GTKGUI_GLADE = 'gtkgui.glade'
2005-03-11 18:57:35 +01:00
class HistoryWindow:
'''Class for browsing logs of conversations with contacts'''
def __init__(self, jid, account):
self.jid = jid
self.account = account
xml = gtk.glade.XML(GTKGUI_GLADE, 'history_window', APP)
self.window = xml.get_widget('history_window')
if account and gajim.contacts[account].has_key(jid):
contact = gajim.get_first_contact_instance_from_jid(account, jid)
title = _('Conversation History with %s') % contact.name
else:
title = _('Conversation History with %s') % jid
self.window.set_title(title)
self.history_buffer = xml.get_widget('history_textview').get_buffer()
2005-10-31 22:28:39 +01:00
xml.signal_autoconnect(self)
tag = self.history_buffer.create_tag('incoming')
color = gajim.config.get('inmsgcolor')
tag.set_property('foreground', color)
tag = self.history_buffer.create_tag('outgoing')
color = gajim.config.get('outmsgcolor')
tag.set_property('foreground', color)
tag = self.history_buffer.create_tag('status')
color = gajim.config.get('statusmsgcolor')
tag.set_property('foreground', color)
date = time.localtime()
y, m, d = date[0], date[1], date[2]
self.add_lines_for_date(y, m, d)
self.window.show_all()
2005-03-11 18:57:35 +01:00
def on_history_window_destroy(self, widget):
del gajim.interface.instances['logs'][self.jid]
2005-03-11 18:57:35 +01:00
def on_close_button_clicked(self, widget):
self.window.destroy()
2005-03-11 18:57:35 +01:00
def on_calendar_day_selected(self, widget):
year, month, day = widget.get_date() # integers
month = gtkgui_helpers.make_gtk_month_python_month(month)
self.add_lines_for_date(year, month, day)
def add_lines_for_date(self, year, month, day):
'''adds all the lines for given date in textbuffer'''
self.history_buffer.set_text('') # clear the buffer first
lines = gajim.logger.get_conversation_for_date(self.jid, year, month, day)
2005-04-16 00:02:13 +02:00
for line in lines:
# line[0] is date, line[1] is type of message
# line[2:] is message
date = line[0]
self.add_new_line(date, line[1], line[2:])
def add_new_line(self, date, type, data):
'''add a new line in textbuffer'''
buf = self.history_buffer
end_iter = buf.get_end_iter()
tim = time.strftime('[%X] ', time.localtime(float(date)))
buf.insert(end_iter, tim)
name = None
tag_name = ''
tag_msg = ''
2005-06-13 16:46:08 +02:00
if type == 'gc':
name = data[0]
2005-06-13 16:46:08 +02:00
msg = ':'.join(data[1:])
tag_name = 'incoming'
2005-06-13 16:46:08 +02:00
elif type == 'gcstatus':
nick = data[0]
show = data[1]
status_msg = ':'.join(data[2:])
if status_msg:
msg = _('%(nick)s is now %(status)s: %(status_msg)s') % {'nick': nick,
2005-11-21 07:20:32 +01:00
'status': helpers.get_uf_show(show), 'status_msg': status_msg }
else:
2005-11-21 09:56:45 +01:00
show = show[:-1] # remove last \n
msg = _('%(nick)s is now %(status)s\n') % {'nick': nick,
2005-11-21 07:20:32 +01:00
'status': helpers.get_uf_show(show) }
tag_msg = 'status'
2005-06-13 16:46:08 +02:00
elif type == 'recv':
try:
name = gajim.contacts[self.account][self.jid][0].name
except:
name = None
if not name:
name = self.jid.split('@')[0]
2005-04-16 00:02:13 +02:00
msg = ':'.join(data[0:])
tag_name = 'incoming'
2005-04-16 00:02:13 +02:00
elif type == 'sent':
name = gajim.nicks[self.account]
2005-04-16 00:02:13 +02:00
msg = ':'.join(data[0:])
tag_name = 'outgoing'
else: # status
status_msg = ':'.join(data[1:])
if status_msg:
msg = _('Status is now: %(status)s: %(status_msg)s') % \
2005-11-21 07:20:32 +01:00
{'status': helpers.get_uf_show(data[0]), 'status_msg': status_msg}
else:
2005-11-21 09:56:45 +01:00
data[0] = data[0][:-1] # remove last \n
msg = _('Status is now: %(status)s\n') % { 'status':
2005-11-21 07:20:32 +01:00
helpers.get_uf_show(data[0]) }
tag_msg = 'status'
if name:
before_str = gajim.config.get('before_nickname')
after_str = gajim.config.get('after_nickname')
format = before_str + name + after_str + ' '
buf.insert_with_tags_by_name(end_iter, format, tag_name)
if tag_msg:
buf.insert_with_tags_by_name(end_iter, msg, tag_msg)
else:
buf.insert(end_iter, msg)