2003-11-30 23:40:24 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
## plugins/gtkgui.py
|
|
|
|
##
|
|
|
|
## Gajim Team:
|
|
|
|
## - Yann Le Boulanger <asterix@crans.org>
|
|
|
|
## - Vincent Hanquez <tab@tuxfamily.org>
|
|
|
|
##
|
|
|
|
## Copyright (C) 2003 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 pygtk
|
|
|
|
pygtk.require('2.0')
|
|
|
|
import gtk
|
|
|
|
from gtk import TRUE, FALSE
|
2004-01-02 16:21:02 +01:00
|
|
|
import gtk.glade,gobject
|
|
|
|
import os,string,time,Queue
|
|
|
|
import common.optparser,common.sleepy
|
2004-05-17 01:47:14 +02:00
|
|
|
from common import i18n
|
|
|
|
_ = i18n._
|
|
|
|
APP = i18n.APP
|
|
|
|
gtk.glade.bindtextdomain (APP, i18n.DIR)
|
|
|
|
gtk.glade.textdomain (APP)
|
2004-02-17 03:23:38 +01:00
|
|
|
|
2004-05-15 18:50:38 +02:00
|
|
|
from config import *
|
|
|
|
from dialogs import *
|
|
|
|
|
2004-02-17 03:23:38 +01:00
|
|
|
GTKGUI_GLADE='plugins/gtkgui/gtkgui.glade'
|
2003-11-30 23:40:24 +01:00
|
|
|
|
|
|
|
class user:
|
2004-01-17 16:38:29 +01:00
|
|
|
"""Informations concerning each users"""
|
2003-11-30 23:40:24 +01:00
|
|
|
def __init__(self, *args):
|
|
|
|
if len(args) == 0:
|
|
|
|
self.jid = ''
|
|
|
|
self.name = ''
|
|
|
|
self.groups = []
|
|
|
|
self.show = ''
|
|
|
|
self.status = ''
|
|
|
|
self.sub == ''
|
2004-01-14 02:06:27 +01:00
|
|
|
self.resource == ''
|
|
|
|
elif len(args) == 7:
|
2003-11-30 23:40:24 +01:00
|
|
|
self.jid = args[0]
|
|
|
|
self.name = args[1]
|
|
|
|
self.groups = args[2]
|
|
|
|
self.show = args[3]
|
|
|
|
self.status = args[4]
|
|
|
|
self.sub = args[5]
|
2004-01-14 02:06:27 +01:00
|
|
|
self.resource = args[6]
|
2004-05-17 01:47:14 +02:00
|
|
|
else: raise TypeError, _('bad arguments')
|
2003-11-30 23:40:24 +01:00
|
|
|
|
|
|
|
|
2004-02-17 03:23:38 +01:00
|
|
|
class message_Window:
|
2004-01-20 13:46:27 +01:00
|
|
|
"""Class for chat window"""
|
2003-11-30 23:40:24 +01:00
|
|
|
def delete_event(self, widget):
|
2004-01-17 16:38:29 +01:00
|
|
|
"""close window"""
|
2004-03-18 17:38:14 +01:00
|
|
|
del self.plugin.windows[self.account]['chats'][self.user.jid]
|
2003-11-30 23:40:24 +01:00
|
|
|
|
2003-12-28 01:47:40 +01:00
|
|
|
def print_conversation(self, txt, contact = None, tim = None):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""Print a line in the conversation :
|
|
|
|
if contact is set to status : it's a status message
|
|
|
|
if contact is set to another value : it's an outgoing message
|
|
|
|
if contact is not set : it's an incomming message"""
|
2004-03-18 17:38:14 +01:00
|
|
|
conversation = self.xml.get_widget('conversation')
|
|
|
|
buffer = conversation.get_buffer()
|
2003-12-27 03:17:28 +01:00
|
|
|
if not txt:
|
|
|
|
txt = ""
|
2004-01-18 23:56:28 +01:00
|
|
|
end_iter = buffer.get_end_iter()
|
2003-12-28 01:47:40 +01:00
|
|
|
if not tim:
|
|
|
|
tim = time.strftime("[%H:%M:%S]")
|
2004-01-18 23:56:28 +01:00
|
|
|
buffer.insert(end_iter, tim)
|
2003-11-30 23:40:24 +01:00
|
|
|
if contact:
|
2003-12-02 13:39:28 +01:00
|
|
|
if contact == 'status':
|
2004-01-18 23:56:28 +01:00
|
|
|
buffer.insert_with_tags_by_name(end_iter, txt+'\n', \
|
2003-12-02 13:39:28 +01:00
|
|
|
'status')
|
|
|
|
else:
|
2004-04-22 14:31:20 +02:00
|
|
|
buffer.insert_with_tags_by_name(end_iter, '<'+self.plugin.nicks[self.account]+'> ', 'outgoing')
|
2004-01-18 23:56:28 +01:00
|
|
|
buffer.insert(end_iter, txt+'\n')
|
2003-11-30 23:40:24 +01:00
|
|
|
else:
|
2004-01-24 21:32:51 +01:00
|
|
|
buffer.insert_with_tags_by_name(end_iter, '<' + \
|
|
|
|
self.user.name + '> ', 'incoming')
|
2004-01-18 23:56:28 +01:00
|
|
|
buffer.insert(end_iter, txt+'\n')
|
2004-01-20 13:46:27 +01:00
|
|
|
#scroll to the end of the textview
|
2004-03-18 17:38:14 +01:00
|
|
|
conversation.scroll_to_mark(buffer.get_mark('end'), 0.1, 0, 0, 0)
|
2003-11-30 23:40:24 +01:00
|
|
|
|
|
|
|
def read_queue(self, q):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""read queue and print messages containted in it"""
|
2003-11-30 23:40:24 +01:00
|
|
|
while not q.empty():
|
2003-12-28 01:47:40 +01:00
|
|
|
evt = q.get()
|
|
|
|
self.print_conversation(evt[0], tim = evt[1])
|
2004-03-18 17:38:14 +01:00
|
|
|
del self.plugin.queues[self.account][self.user.jid]
|
|
|
|
for i in self.plugin.roster.get_user_iter(self.user.jid, self.account):
|
|
|
|
if self.plugin.roster.pixbufs.has_key(self.user.show):
|
|
|
|
self.plugin.roster.tree.get_model().set_value(i, 0, \
|
|
|
|
self.plugin.roster.pixbufs[self.user.show])
|
2003-11-30 23:40:24 +01:00
|
|
|
|
|
|
|
def on_msg_key_press_event(self, widget, event):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""When a key is pressed :
|
2004-01-24 21:32:51 +01:00
|
|
|
if enter is pressed without the shit key, message (if not empty) is sent
|
|
|
|
and printed in the conversation"""
|
2003-11-30 23:40:24 +01:00
|
|
|
if event.keyval == gtk.keysyms.Return:
|
|
|
|
if (event.state & gtk.gdk.SHIFT_MASK):
|
|
|
|
return 0
|
|
|
|
txt_buffer = widget.get_buffer()
|
|
|
|
start_iter = txt_buffer.get_start_iter()
|
|
|
|
end_iter = txt_buffer.get_end_iter()
|
|
|
|
txt = txt_buffer.get_text(start_iter, end_iter, 0)
|
2003-12-27 03:17:28 +01:00
|
|
|
if txt != '':
|
2004-03-18 17:38:14 +01:00
|
|
|
self.plugin.send('MSG', self.account, (self.user.jid, txt))
|
2003-12-27 03:17:28 +01:00
|
|
|
txt_buffer.set_text('', -1)
|
|
|
|
self.print_conversation(txt, self.user.jid)
|
|
|
|
widget.grab_focus()
|
2003-11-30 23:40:24 +01:00
|
|
|
return 1
|
|
|
|
return 0
|
|
|
|
|
2004-01-02 00:41:47 +01:00
|
|
|
def on_clear(self, widget):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""When clear button is pressed :
|
|
|
|
clear the conversation"""
|
2004-03-18 17:38:14 +01:00
|
|
|
buffer = self.xml.get_widget('conversation').get_buffer()
|
2004-01-18 23:56:28 +01:00
|
|
|
deb, end = buffer.get_bounds()
|
|
|
|
buffer.delete(deb, end)
|
2004-01-02 00:41:47 +01:00
|
|
|
|
2004-04-05 00:09:56 +02:00
|
|
|
def on_history(self, widget):
|
|
|
|
"""When history button is pressed : call log window"""
|
|
|
|
if not self.plugin.windows['logs'].has_key(self.user.jid):
|
|
|
|
self.plugin.windows['logs'][self.user.jid] = log_Window(self.plugin, self.user.jid)
|
|
|
|
|
2004-03-18 17:38:14 +01:00
|
|
|
def __init__(self, user, plugin, account):
|
2003-11-30 23:40:24 +01:00
|
|
|
self.user = user
|
2004-03-18 17:38:14 +01:00
|
|
|
self.plugin = plugin
|
|
|
|
self.account = account
|
2004-05-17 01:47:14 +02:00
|
|
|
self.xml = gtk.glade.XML(GTKGUI_GLADE, 'Chat', APP)
|
2004-03-20 22:58:21 +01:00
|
|
|
self.window = self.xml.get_widget('Chat')
|
2004-03-18 17:38:14 +01:00
|
|
|
# hbox = xml.get_widget('hbox1')
|
|
|
|
# hbox.set_property('resize-mode', 2)
|
2004-03-20 22:58:21 +01:00
|
|
|
self.window.set_title('Chat with ' + user.name)
|
2004-03-18 17:38:14 +01:00
|
|
|
self.img = self.xml.get_widget('image')
|
|
|
|
self.img.set_from_pixbuf(self.plugin.roster.pixbufs[user.show])
|
|
|
|
self.xml.get_widget('button_contact').set_label(user.name + ' <'\
|
2003-11-30 23:40:24 +01:00
|
|
|
+ user.jid + '>')
|
2004-03-18 17:38:14 +01:00
|
|
|
self.xml.get_widget('button_contact').set_resize_mode(gtk.RESIZE_QUEUE)
|
|
|
|
message = self.xml.get_widget('message')
|
|
|
|
message.grab_focus()
|
|
|
|
conversation = self.xml.get_widget('conversation')
|
|
|
|
buffer = conversation.get_buffer()
|
2004-01-18 23:56:28 +01:00
|
|
|
end_iter = buffer.get_end_iter()
|
|
|
|
buffer.create_mark('end', end_iter, 0)
|
2004-03-18 17:38:14 +01:00
|
|
|
self.xml.signal_connect('gtk_widget_destroy', self.delete_event)
|
2004-03-20 22:58:21 +01:00
|
|
|
self.xml.signal_connect('on_clear_clicked', self.on_clear)
|
2004-04-05 00:09:56 +02:00
|
|
|
self.xml.signal_connect('on_history_clicked', self.on_history)
|
2004-03-18 17:38:14 +01:00
|
|
|
self.xml.signal_connect('on_msg_key_press_event', \
|
|
|
|
self.on_msg_key_press_event)
|
2004-05-10 16:50:30 +02:00
|
|
|
self.tagIn = buffer.create_tag("incoming")
|
2004-03-18 17:38:14 +01:00
|
|
|
color = self.plugin.config['inmsgcolor']
|
2003-11-30 23:40:24 +01:00
|
|
|
if not color:
|
2004-03-29 13:24:18 +02:00
|
|
|
color = 'red'
|
2004-05-10 16:50:30 +02:00
|
|
|
self.tagIn.set_property("foreground", color)
|
|
|
|
self.tagOut = buffer.create_tag("outgoing")
|
2004-03-18 17:38:14 +01:00
|
|
|
color = self.plugin.config['outmsgcolor']
|
2003-11-30 23:40:24 +01:00
|
|
|
if not color:
|
2004-03-29 13:24:18 +02:00
|
|
|
color = 'blue'
|
2004-05-10 16:50:30 +02:00
|
|
|
self.tagOut.set_property("foreground", color)
|
|
|
|
self.tagStatus = buffer.create_tag("status")
|
2004-03-18 17:38:14 +01:00
|
|
|
color = self.plugin.config['statusmsgcolor']
|
2003-12-02 13:39:28 +01:00
|
|
|
if not color:
|
2004-03-29 13:24:18 +02:00
|
|
|
color = 'green'
|
2004-05-10 16:50:30 +02:00
|
|
|
self.tagStatus.set_property("foreground", color)
|
2004-03-18 17:38:14 +01:00
|
|
|
#print queued messages
|
|
|
|
if plugin.queues[account].has_key(user.jid):
|
|
|
|
self.read_queue(plugin.queues[account][user.jid])
|
2003-11-30 23:40:24 +01:00
|
|
|
|
2004-04-05 00:09:56 +02:00
|
|
|
class log_Window:
|
|
|
|
"""Class for bowser agent window :
|
|
|
|
to know the agents on the selected server"""
|
|
|
|
def delete_event(self, widget):
|
|
|
|
"""close window"""
|
|
|
|
del self.plugin.windows['logs'][self.jid]
|
|
|
|
|
|
|
|
def on_close(self, widget):
|
|
|
|
"""When Close button is clicked"""
|
|
|
|
widget.get_toplevel().destroy()
|
|
|
|
|
|
|
|
def on_earliest(self, widget):
|
|
|
|
buffer = self.xml.get_widget('textview').get_buffer()
|
|
|
|
start, end = buffer.get_bounds()
|
|
|
|
buffer.delete(start, end)
|
|
|
|
self.xml.get_widget('earliest_button').set_sensitive(False)
|
|
|
|
self.xml.get_widget('previous_button').set_sensitive(False)
|
|
|
|
self.xml.get_widget('forward_button').set_sensitive(True)
|
2004-04-11 01:00:39 +02:00
|
|
|
self.xml.get_widget('latest_button').set_sensitive(True)
|
2004-04-05 00:09:56 +02:00
|
|
|
end = 50
|
|
|
|
if end > self.nb_line:
|
2004-05-02 00:30:53 +02:00
|
|
|
end = self.nb_line
|
2004-04-05 00:09:56 +02:00
|
|
|
self.plugin.send('LOG_GET_RANGE', None, (self.jid, 0, end))
|
|
|
|
self.num_begin = self.nb_line
|
|
|
|
|
|
|
|
def on_previous(self, widget):
|
|
|
|
buffer = self.xml.get_widget('textview').get_buffer()
|
|
|
|
start, end = buffer.get_bounds()
|
|
|
|
buffer.delete(start, end)
|
|
|
|
self.xml.get_widget('earliest_button').set_sensitive(True)
|
|
|
|
self.xml.get_widget('previous_button').set_sensitive(True)
|
|
|
|
self.xml.get_widget('forward_button').set_sensitive(True)
|
2004-04-11 01:00:39 +02:00
|
|
|
self.xml.get_widget('latest_button').set_sensitive(True)
|
2004-04-05 00:09:56 +02:00
|
|
|
begin = self.num_begin - 50
|
|
|
|
if begin < 0:
|
|
|
|
begin = 0
|
|
|
|
end = begin + 50
|
|
|
|
if end > self.nb_line:
|
|
|
|
end = self.nb_line
|
|
|
|
self.plugin.send('LOG_GET_RANGE', None, (self.jid, begin, end))
|
|
|
|
self.num_begin = self.nb_line
|
|
|
|
|
|
|
|
def on_forward(self, widget):
|
|
|
|
buffer = self.xml.get_widget('textview').get_buffer()
|
|
|
|
start, end = buffer.get_bounds()
|
|
|
|
buffer.delete(start, end)
|
|
|
|
self.xml.get_widget('earliest_button').set_sensitive(True)
|
|
|
|
self.xml.get_widget('previous_button').set_sensitive(True)
|
|
|
|
self.xml.get_widget('forward_button').set_sensitive(True)
|
2004-04-11 01:00:39 +02:00
|
|
|
self.xml.get_widget('latest_button').set_sensitive(True)
|
2004-04-05 00:09:56 +02:00
|
|
|
begin = self.num_begin + 50
|
|
|
|
if begin > self.nb_line:
|
|
|
|
begin = self.nb_line
|
|
|
|
end = begin + 50
|
|
|
|
if end > self.nb_line:
|
|
|
|
end = self.nb_line
|
|
|
|
self.plugin.send('LOG_GET_RANGE', None, (self.jid, begin, end))
|
|
|
|
self.num_begin = self.nb_line
|
|
|
|
|
|
|
|
def on_latest(self, widget):
|
|
|
|
buffer = self.xml.get_widget('textview').get_buffer()
|
|
|
|
start, end = buffer.get_bounds()
|
|
|
|
buffer.delete(start, end)
|
|
|
|
self.xml.get_widget('earliest_button').set_sensitive(True)
|
|
|
|
self.xml.get_widget('previous_button').set_sensitive(True)
|
|
|
|
self.xml.get_widget('forward_button').set_sensitive(False)
|
2004-04-11 01:00:39 +02:00
|
|
|
self.xml.get_widget('latest_button').set_sensitive(False)
|
2004-04-05 00:09:56 +02:00
|
|
|
begin = self.nb_line - 50
|
|
|
|
if begin < 0:
|
|
|
|
begin = 0
|
|
|
|
self.plugin.send('LOG_GET_RANGE', None, (self.jid, begin, self.nb_line))
|
|
|
|
self.num_begin = self.nb_line
|
|
|
|
|
|
|
|
def new_line(self, infos):
|
|
|
|
"""write a new line"""
|
|
|
|
#infos = [num_line, date, type, data]
|
|
|
|
if infos[0] < self.num_begin:
|
|
|
|
self.num_begin = infos[0]
|
|
|
|
if infos[0] == 0:
|
|
|
|
self.xml.get_widget('earliest_button').set_sensitive(False)
|
|
|
|
self.xml.get_widget('previous_button').set_sensitive(False)
|
|
|
|
if infos[0] == self.nb_line:
|
|
|
|
self.xml.get_widget('forward_button').set_sensitive(False)
|
2004-04-11 01:00:39 +02:00
|
|
|
self.xml.get_widget('latest_button').set_sensitive(False)
|
2004-04-05 00:09:56 +02:00
|
|
|
buffer = self.xml.get_widget('textview').get_buffer()
|
|
|
|
start_iter = buffer.get_start_iter()
|
|
|
|
end_iter = buffer.get_end_iter()
|
|
|
|
tim = time.strftime("[%x %X] ", time.localtime(float(infos[1])))
|
|
|
|
buffer.insert(start_iter, tim)
|
|
|
|
if infos[2] == 'recv':
|
|
|
|
msg = string.join(infos[3][0:], ':')
|
|
|
|
msg = string.replace(msg, '\\n', '\n')
|
|
|
|
buffer.insert_with_tags_by_name(start_iter, msg, 'incoming')
|
|
|
|
elif infos[2] == 'sent':
|
|
|
|
msg = string.join(infos[3][0:], ':')
|
|
|
|
msg = string.replace(msg, '\\n', '\n')
|
|
|
|
buffer.insert_with_tags_by_name(start_iter, msg, 'outgoing')
|
|
|
|
else:
|
|
|
|
msg = string.join(infos[3][1:], ':')
|
|
|
|
msg = string.replace(msg, '\\n', '\n')
|
2004-05-17 01:47:14 +02:00
|
|
|
buffer.insert_with_tags_by_name(start_iter, _('Status is now : ') + \
|
2004-04-05 00:09:56 +02:00
|
|
|
infos[3][0]+' : ' + msg, 'status')
|
|
|
|
|
|
|
|
def set_nb_line(self, nb_line):
|
|
|
|
self.nb_line = nb_line
|
|
|
|
self.num_begin = nb_line
|
|
|
|
|
|
|
|
def __init__(self, plugin, jid):
|
|
|
|
self.plugin = plugin
|
|
|
|
self.jid = jid
|
|
|
|
self.nb_line = 0
|
|
|
|
self.num_begin = 0
|
2004-05-17 01:47:14 +02:00
|
|
|
self.xml = gtk.glade.XML(GTKGUI_GLADE, 'Log', APP)
|
2004-04-05 00:09:56 +02:00
|
|
|
self.xml.signal_connect('gtk_widget_destroy', self.delete_event)
|
|
|
|
self.xml.signal_connect('on_close_clicked', self.on_close)
|
|
|
|
self.xml.signal_connect('on_earliest_clicked', self.on_earliest)
|
|
|
|
self.xml.signal_connect('on_previous_clicked', self.on_previous)
|
|
|
|
self.xml.signal_connect('on_forward_clicked', self.on_forward)
|
|
|
|
self.xml.signal_connect('on_latest_clicked', self.on_latest)
|
|
|
|
buffer = self.xml.get_widget('textview').get_buffer()
|
|
|
|
tagIn = buffer.create_tag("incoming")
|
|
|
|
color = self.plugin.config['inmsgcolor']
|
|
|
|
if not color:
|
|
|
|
color = 'red'
|
|
|
|
tagIn.set_property("foreground", color)
|
|
|
|
tagOut = buffer.create_tag("outgoing")
|
|
|
|
color = self.plugin.config['outmsgcolor']
|
|
|
|
if not color:
|
|
|
|
color = 'blue'
|
|
|
|
tagOut.set_property("foreground", color)
|
|
|
|
tagStatus = buffer.create_tag("status")
|
|
|
|
color = self.plugin.config['statusmsgcolor']
|
|
|
|
if not color:
|
|
|
|
color = 'green'
|
|
|
|
tagStatus.set_property("foreground", color)
|
|
|
|
self.plugin.send('LOG_NB_LINE', None, jid)
|
|
|
|
|
2004-02-17 03:23:38 +01:00
|
|
|
class roster_Window:
|
2004-01-20 13:46:27 +01:00
|
|
|
"""Class for main gtk window"""
|
2004-03-13 04:09:12 +01:00
|
|
|
|
|
|
|
def get_account_iter(self, name):
|
|
|
|
model = self.tree.get_model()
|
|
|
|
fin = False
|
2004-03-16 19:53:49 +01:00
|
|
|
account = model.get_iter_root()
|
|
|
|
if not account:
|
|
|
|
return None
|
2004-03-13 04:09:12 +01:00
|
|
|
while not fin:
|
|
|
|
account_name = model.get_value(account, 3)
|
2004-03-16 19:53:49 +01:00
|
|
|
if name == account_name:
|
2004-03-13 04:09:12 +01:00
|
|
|
return account
|
2004-03-18 17:38:14 +01:00
|
|
|
account = model.iter_next(account)
|
|
|
|
if not account:
|
2004-03-13 04:09:12 +01:00
|
|
|
fin = True
|
|
|
|
return None
|
|
|
|
|
|
|
|
def get_group_iter(self, name, account):
|
|
|
|
model = self.tree.get_model()
|
2004-03-16 19:53:49 +01:00
|
|
|
root = self.get_account_iter(account)
|
2004-03-13 04:09:12 +01:00
|
|
|
fin = False
|
|
|
|
group = model.iter_children(root)
|
|
|
|
if not group:
|
|
|
|
fin = True
|
|
|
|
while not fin:
|
|
|
|
group_name = model.get_value(group, 3)
|
|
|
|
if name == group_name:
|
|
|
|
return group
|
2004-03-18 17:38:14 +01:00
|
|
|
group = model.iter_next(group)
|
|
|
|
if not group:
|
2004-03-13 04:09:12 +01:00
|
|
|
fin = True
|
|
|
|
return None
|
|
|
|
|
|
|
|
def get_user_iter(self, jid, account):
|
|
|
|
model = self.tree.get_model()
|
2004-03-16 19:53:49 +01:00
|
|
|
acct = self.get_account_iter(account)
|
2004-03-13 04:09:12 +01:00
|
|
|
found = []
|
|
|
|
fin = False
|
2004-03-16 19:53:49 +01:00
|
|
|
group = model.iter_children(acct)
|
2004-03-13 04:09:12 +01:00
|
|
|
if not group:
|
|
|
|
return found
|
|
|
|
while not fin:
|
|
|
|
fin2 = False
|
|
|
|
user = model.iter_children(group)
|
2004-03-16 19:53:49 +01:00
|
|
|
if not user:
|
|
|
|
fin2=True
|
2004-03-13 04:09:12 +01:00
|
|
|
while not fin2:
|
|
|
|
if jid == model.get_value(user, 3):
|
|
|
|
found.append(user)
|
2004-03-18 17:38:14 +01:00
|
|
|
user = model.iter_next(user)
|
|
|
|
if not user:
|
2004-03-13 04:09:12 +01:00
|
|
|
fin2 = True
|
2004-03-18 17:38:14 +01:00
|
|
|
group = model.iter_next(group)
|
|
|
|
if not group:
|
2004-03-13 04:09:12 +01:00
|
|
|
fin = True
|
|
|
|
return found
|
|
|
|
|
|
|
|
def add_account_to_roster(self, account):
|
2004-03-16 19:53:49 +01:00
|
|
|
model = self.tree.get_model()
|
2004-03-13 04:09:12 +01:00
|
|
|
if self.get_account_iter(account):
|
|
|
|
return
|
2004-05-02 00:30:53 +02:00
|
|
|
statuss = ['offline', 'online', 'away', 'xa', 'dnd', 'invisible']
|
|
|
|
status = statuss[self.plugin.connected[account]]
|
2004-03-23 22:48:19 +01:00
|
|
|
model.append(None, (self.pixbufs[status], account, 'account', account,\
|
2004-03-13 04:09:12 +01:00
|
|
|
FALSE))
|
|
|
|
|
|
|
|
def add_user_to_roster(self, user, account):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""Add a user to the roster and add groups if they aren't in roster"""
|
2004-03-16 16:39:36 +01:00
|
|
|
showOffline = self.plugin.config['showoffline']
|
2004-03-18 17:38:14 +01:00
|
|
|
if not self.contacts[account].has_key(user.jid):
|
|
|
|
self.contacts[account][user.jid] = user
|
2004-03-13 04:09:12 +01:00
|
|
|
if user.groups == []:
|
|
|
|
if string.find(user.jid, "@") <= 0:
|
|
|
|
user.groups.append('Agents')
|
2003-12-20 23:42:10 +01:00
|
|
|
else:
|
2004-03-13 04:09:12 +01:00
|
|
|
user.groups.append('general')
|
2004-03-29 13:17:48 +02:00
|
|
|
|
2004-03-31 03:09:07 +02:00
|
|
|
if (user.show == 'offline' or user.show == 'error') and not showOffline\
|
|
|
|
and not 'Agents' in user.groups:
|
2004-03-29 13:17:48 +02:00
|
|
|
return
|
|
|
|
|
|
|
|
model = self.tree.get_model()
|
|
|
|
for g in user.groups:
|
|
|
|
iterG = self.get_group_iter(g, account)
|
|
|
|
if not iterG:
|
|
|
|
acct = self.get_account_iter(account)
|
|
|
|
iterG = model.append(acct, \
|
|
|
|
(self.pixbufs['closed'], g, 'group', \
|
|
|
|
g, FALSE))
|
|
|
|
if not self.groups[account].has_key(g):
|
|
|
|
self.groups[account][g] = {'expand': True}
|
|
|
|
self.tree.expand_row((model.get_path(iterG)[0]), False)
|
|
|
|
|
|
|
|
typestr = 'user'
|
|
|
|
if g == 'Agents':
|
|
|
|
typestr = 'agent'
|
|
|
|
|
|
|
|
model.append(iterG, (self.pixbufs[user.show], \
|
|
|
|
user.name, typestr, user.jid, TRUE))
|
|
|
|
|
|
|
|
if self.groups[account][g]['expand']:
|
|
|
|
self.tree.expand_row(model.get_path(iterG), FALSE)
|
2004-01-22 00:09:03 +01:00
|
|
|
|
2004-03-13 04:09:12 +01:00
|
|
|
def remove_user(self, user, account):
|
2004-04-22 14:31:20 +02:00
|
|
|
"""Remove a user from the roster"""
|
2004-01-22 00:09:03 +01:00
|
|
|
model = self.tree.get_model()
|
2004-03-13 04:09:12 +01:00
|
|
|
for i in self.get_user_iter(user.jid, account):
|
2004-01-22 00:09:03 +01:00
|
|
|
parent_i = model.iter_parent(i)
|
2004-03-13 04:09:12 +01:00
|
|
|
model.remove(i)
|
|
|
|
if model.iter_n_children(parent_i) == 0:
|
2004-01-22 00:09:03 +01:00
|
|
|
model.remove(parent_i)
|
2004-03-20 22:58:21 +01:00
|
|
|
|
|
|
|
def mkmenu(self):
|
2004-04-22 14:31:20 +02:00
|
|
|
"""create the browse agents and add sub menus"""
|
|
|
|
if len(self.plugin.accounts.keys()) > 0:
|
|
|
|
self.xml.get_widget('add').set_sensitive(True)
|
|
|
|
self.xml.get_widget('browse_agents').set_sensitive(True)
|
|
|
|
else:
|
|
|
|
self.xml.get_widget('add').set_sensitive(False)
|
|
|
|
self.xml.get_widget('browse_agents').set_sensitive(False)
|
2004-03-20 22:58:21 +01:00
|
|
|
if len(self.plugin.accounts.keys()) > 1:
|
|
|
|
#add
|
|
|
|
menu_sub = gtk.Menu()
|
|
|
|
self.xml.get_widget('add').set_submenu(menu_sub)
|
|
|
|
for a in self.plugin.accounts.keys():
|
|
|
|
item = gtk.MenuItem(a)
|
|
|
|
menu_sub.append(item)
|
|
|
|
item.connect("activate", self.on_add, a)
|
|
|
|
menu_sub.show_all()
|
|
|
|
#agents
|
|
|
|
menu_sub = gtk.Menu()
|
|
|
|
self.xml.get_widget('browse_agents').set_submenu(menu_sub)
|
|
|
|
for a in self.plugin.accounts.keys():
|
|
|
|
item = gtk.MenuItem(a)
|
|
|
|
menu_sub.append(item)
|
|
|
|
item.connect("activate", self.on_browse, a)
|
|
|
|
menu_sub.show_all()
|
2004-03-28 16:43:37 +02:00
|
|
|
elif len(self.plugin.accounts.keys()) == 1:
|
2004-03-20 22:58:21 +01:00
|
|
|
#add
|
|
|
|
self.xml.get_widget('add').connect("activate", self.on_add, \
|
|
|
|
self.plugin.accounts.keys()[0])
|
|
|
|
#agents
|
|
|
|
self.xml.get_widget('browse_agents').connect("activate", \
|
|
|
|
self.on_browse, self.plugin.accounts.keys()[0])
|
2003-12-31 11:55:13 +01:00
|
|
|
|
|
|
|
def draw_roster(self):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""Clear and draw roster"""
|
2004-03-20 22:58:21 +01:00
|
|
|
self.mkmenu()
|
2004-01-18 23:56:28 +01:00
|
|
|
self.tree.get_model().clear()
|
2004-03-16 16:39:36 +01:00
|
|
|
for acct in self.contacts.keys():
|
2004-03-13 04:09:12 +01:00
|
|
|
self.add_account_to_roster(acct)
|
2004-03-16 19:53:49 +01:00
|
|
|
for user in self.contacts[acct].values():
|
2004-03-13 04:09:12 +01:00
|
|
|
self.add_user_to_roster(user, acct)
|
2003-12-20 23:42:10 +01:00
|
|
|
|
2004-03-13 04:09:12 +01:00
|
|
|
def mklists(self, array, account):
|
|
|
|
"""fill self.contacts and self.groups"""
|
2004-03-24 16:33:40 +01:00
|
|
|
if not self.contacts.has_key(account):
|
|
|
|
self.contacts[account] = {}
|
|
|
|
if not self.groups.has_key(account):
|
|
|
|
self.groups[account] = {}
|
2004-03-13 04:09:12 +01:00
|
|
|
for jid in array.keys():
|
|
|
|
jids = string.split(jid, '/')
|
|
|
|
#get jid
|
|
|
|
ji = jids[0]
|
|
|
|
#get resource
|
|
|
|
resource = ''
|
|
|
|
if len(jids) > 1:
|
|
|
|
resource = jids[1:]
|
|
|
|
#get name
|
|
|
|
name = array[jid]['name']
|
2003-11-30 23:40:24 +01:00
|
|
|
if not name:
|
|
|
|
if string.find(ji, "@") <= 0:
|
|
|
|
name = ji
|
|
|
|
else:
|
2003-12-27 03:17:28 +01:00
|
|
|
name = string.split(jid, '@')[0]
|
2004-03-13 04:09:12 +01:00
|
|
|
#get show
|
|
|
|
show = array[jid]['show']
|
2003-11-30 23:40:24 +01:00
|
|
|
if not show:
|
|
|
|
show = 'offline'
|
|
|
|
|
2004-03-13 04:09:12 +01:00
|
|
|
user1 = user(ji, name, array[jid]['groups'], show, \
|
|
|
|
array[jid]['status'], array[jid]['sub'], resource)
|
|
|
|
self.contacts[account][ji] = user1
|
|
|
|
for g in array[jid]['groups'] :
|
|
|
|
if not g in self.groups[account].keys():
|
2004-03-23 22:48:19 +01:00
|
|
|
self.groups[account][g] = {'expand':True}
|
2004-03-13 04:09:12 +01:00
|
|
|
|
|
|
|
def chg_user_status(self, user, show, status, account):
|
2004-03-11 22:14:09 +01:00
|
|
|
"""When a user change his status"""
|
2004-03-16 16:39:36 +01:00
|
|
|
showOffline = self.plugin.config['showoffline']
|
2004-03-16 19:53:49 +01:00
|
|
|
iters = self.get_user_iter(user.jid, account)
|
2004-03-16 16:39:36 +01:00
|
|
|
if not iters:
|
2004-03-16 19:53:49 +01:00
|
|
|
self.add_user_to_roster(user, account)
|
2003-11-30 23:40:24 +01:00
|
|
|
else:
|
2004-01-18 23:56:28 +01:00
|
|
|
model = self.tree.get_model()
|
2004-03-31 03:09:07 +02:00
|
|
|
if (show == 'offline' or show == 'error') and not showOffline:
|
2004-03-20 22:58:21 +01:00
|
|
|
self.remove_user(user, account)
|
2003-11-30 23:40:24 +01:00
|
|
|
else:
|
2004-03-16 16:39:36 +01:00
|
|
|
for i in iters:
|
2003-11-30 23:40:24 +01:00
|
|
|
if self.pixbufs.has_key(show):
|
2004-01-18 23:56:28 +01:00
|
|
|
model.set_value(i, 0, self.pixbufs[show])
|
2004-03-16 16:39:36 +01:00
|
|
|
user.show = show
|
|
|
|
user.status = status
|
2004-03-11 22:14:09 +01:00
|
|
|
#Print status in chat window
|
2004-03-18 17:38:14 +01:00
|
|
|
if self.plugin.windows[account]['chats'].has_key(user.jid):
|
|
|
|
self.plugin.windows[account]['chats'][user.jid].\
|
|
|
|
img.set_from_pixbuf(self.pixbufs[show])
|
|
|
|
self.plugin.windows[account]['chats'][user.jid].print_conversation(\
|
2004-05-17 01:47:14 +02:00
|
|
|
_("%s is now %s (%s)") % (user.name, show, status), 'status')
|
2004-01-14 02:06:27 +01:00
|
|
|
|
2004-03-16 16:39:36 +01:00
|
|
|
def on_info(self, widget, user, account):
|
2004-02-17 03:23:38 +01:00
|
|
|
"""Call infoUser_Window class to display user's information"""
|
2004-03-18 17:38:14 +01:00
|
|
|
if not self.plugin.windows[account]['infos'].has_key(user.jid):
|
|
|
|
self.plugin.windows[account]['infos'][user.jid] = \
|
|
|
|
infoUser_Window(user, self.plugin, account)
|
2004-03-04 21:56:39 +01:00
|
|
|
|
2004-03-16 16:39:36 +01:00
|
|
|
def on_agent_logging(self, widget, jid, state, account):
|
2004-03-04 21:56:39 +01:00
|
|
|
"""When an agent is requested to log in or off"""
|
2004-03-16 16:39:36 +01:00
|
|
|
self.plugin.send('AGENT_LOGGING', account, (jid, state))
|
2004-03-04 21:56:39 +01:00
|
|
|
|
2004-04-17 21:38:43 +02:00
|
|
|
def on_history(self, widget, user):
|
|
|
|
"""When history button is pressed : call log window"""
|
|
|
|
if not self.plugin.windows['logs'].has_key(user.jid):
|
|
|
|
self.plugin.windows['logs'][user.jid] = log_Window(self.plugin, \
|
|
|
|
user.jid)
|
|
|
|
|
2004-03-16 16:39:36 +01:00
|
|
|
def mk_menu_user(self, event, iter):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""Make user's popup menu"""
|
2004-01-18 23:56:28 +01:00
|
|
|
model = self.tree.get_model()
|
2004-03-16 16:39:36 +01:00
|
|
|
jid = model.get_value(iter, 3)
|
2004-01-18 23:56:28 +01:00
|
|
|
path = model.get_path(iter)
|
2004-03-18 17:38:14 +01:00
|
|
|
acct_iter = model.get_iter((path[0]))
|
|
|
|
account = model.get_value(acct_iter, 3)
|
|
|
|
user = self.contacts[account][jid]
|
|
|
|
|
2004-03-04 21:56:39 +01:00
|
|
|
menu = gtk.Menu()
|
2004-05-17 01:47:14 +02:00
|
|
|
item = gtk.MenuItem(_("Start chat"))
|
2004-03-04 21:56:39 +01:00
|
|
|
menu.append(item)
|
2003-11-30 23:40:24 +01:00
|
|
|
item.connect("activate", self.on_row_activated, path)
|
2004-05-17 01:47:14 +02:00
|
|
|
item = gtk.MenuItem(_("Rename"))
|
2004-03-04 21:56:39 +01:00
|
|
|
menu.append(item)
|
2004-01-24 21:32:51 +01:00
|
|
|
#item.connect("activate", self.on_rename, iter)
|
2003-11-30 23:40:24 +01:00
|
|
|
item = gtk.MenuItem()
|
2004-03-04 21:56:39 +01:00
|
|
|
menu.append(item)
|
2004-05-17 01:47:14 +02:00
|
|
|
item = gtk.MenuItem(_("Subscription"))
|
2004-03-04 21:56:39 +01:00
|
|
|
menu.append(item)
|
2003-11-30 23:40:24 +01:00
|
|
|
|
|
|
|
menu_sub = gtk.Menu()
|
|
|
|
item.set_submenu(menu_sub)
|
2004-05-17 01:47:14 +02:00
|
|
|
item = gtk.MenuItem(_("Resend authorization to"))
|
2003-11-30 23:40:24 +01:00
|
|
|
menu_sub.append(item)
|
2004-03-22 14:09:59 +01:00
|
|
|
item.connect("activate", self.authorize, jid, account)
|
2004-05-17 01:47:14 +02:00
|
|
|
item = gtk.MenuItem(_("Rerequest authorization from"))
|
2003-11-30 23:40:24 +01:00
|
|
|
menu_sub.append(item)
|
2004-01-24 21:32:51 +01:00
|
|
|
item.connect("activate", self.req_sub, jid, \
|
2004-05-17 01:47:14 +02:00
|
|
|
_('I would like to add you to my contact list, please.'), account)
|
2003-11-30 23:40:24 +01:00
|
|
|
|
|
|
|
item = gtk.MenuItem()
|
2004-03-04 21:56:39 +01:00
|
|
|
menu.append(item)
|
2004-05-17 01:47:14 +02:00
|
|
|
item = gtk.MenuItem(_("Remove"))
|
2004-03-04 21:56:39 +01:00
|
|
|
menu.append(item)
|
2004-03-18 17:38:14 +01:00
|
|
|
item.connect("activate", self.on_req_usub, user, account)
|
2004-01-14 02:06:27 +01:00
|
|
|
|
|
|
|
item = gtk.MenuItem()
|
2004-03-04 21:56:39 +01:00
|
|
|
menu.append(item)
|
2004-05-17 01:47:14 +02:00
|
|
|
item = gtk.MenuItem(_("Informations"))
|
2004-03-04 21:56:39 +01:00
|
|
|
menu.append(item)
|
2004-03-18 17:38:14 +01:00
|
|
|
item.connect("activate", self.on_info, user, account)
|
2004-05-17 01:47:14 +02:00
|
|
|
item = gtk.MenuItem(_("History"))
|
2004-04-17 21:38:43 +02:00
|
|
|
menu.append(item)
|
|
|
|
item.connect("activate", self.on_history, user)
|
2004-01-14 02:06:27 +01:00
|
|
|
|
2004-03-04 21:56:39 +01:00
|
|
|
menu.popup(None, None, None, event.button, event.time)
|
|
|
|
menu.show_all()
|
2003-11-30 23:40:24 +01:00
|
|
|
|
|
|
|
def mk_menu_g(self, event):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""Make group's popup menu"""
|
2004-03-04 21:56:39 +01:00
|
|
|
menu = gtk.Menu()
|
2004-05-17 01:47:14 +02:00
|
|
|
item = gtk.MenuItem(_("grp1"))
|
2004-04-22 14:31:20 +02:00
|
|
|
# menu.append(item)
|
2004-05-17 01:47:14 +02:00
|
|
|
item = gtk.MenuItem(_("grp2"))
|
2004-04-22 14:31:20 +02:00
|
|
|
# menu.append(item)
|
2004-05-17 01:47:14 +02:00
|
|
|
item = gtk.MenuItem(_("grp3"))
|
2004-04-22 14:31:20 +02:00
|
|
|
# menu.append(item)
|
2004-03-04 21:56:39 +01:00
|
|
|
menu.popup(None, None, None, event.button, event.time)
|
|
|
|
menu.show_all()
|
|
|
|
|
|
|
|
def mk_menu_agent(self, event, iter):
|
|
|
|
"""Make agent's popup menu"""
|
|
|
|
model = self.tree.get_model()
|
2004-03-16 16:39:36 +01:00
|
|
|
jid = model.get_value(iter, 3)
|
2004-03-24 16:33:40 +01:00
|
|
|
path = model.get_path(iter)
|
|
|
|
acct_iter = model.get_iter((path[0]))
|
|
|
|
account = model.get_value(acct_iter, 3)
|
2004-03-04 21:56:39 +01:00
|
|
|
menu = gtk.Menu()
|
2004-05-17 01:47:14 +02:00
|
|
|
item = gtk.MenuItem(_("Log on"))
|
2004-03-24 16:33:40 +01:00
|
|
|
if self.contacts[account][jid].show != 'offline':
|
2004-03-04 21:56:39 +01:00
|
|
|
item.set_sensitive(FALSE)
|
|
|
|
menu.append(item)
|
2004-03-24 16:33:40 +01:00
|
|
|
item.connect("activate", self.on_agent_logging, jid, 'available', account)
|
2004-03-04 21:56:39 +01:00
|
|
|
|
2004-05-17 01:47:14 +02:00
|
|
|
item = gtk.MenuItem(_("Log off"))
|
2004-03-24 16:33:40 +01:00
|
|
|
if self.contacts[account][jid].show == 'offline':
|
2004-03-04 21:56:39 +01:00
|
|
|
item.set_sensitive(FALSE)
|
|
|
|
menu.append(item)
|
2004-03-24 16:33:40 +01:00
|
|
|
item.connect("activate", self.on_agent_logging, jid, 'unavailable', account)
|
|
|
|
|
|
|
|
menu.popup(None, None, None, event.button, event.time)
|
|
|
|
menu.show_all()
|
|
|
|
|
2004-05-02 18:25:04 +02:00
|
|
|
def on_edit_account(self, widget, account):
|
|
|
|
if not self.plugin.windows.has_key('accountPreference'):
|
|
|
|
infos = {}
|
|
|
|
infos['name'] = account
|
2004-05-05 03:12:08 +02:00
|
|
|
if self.plugin.accounts[account].has_key("name"):
|
|
|
|
infos['jid'] = self.plugin.accounts[account]["name"] + \
|
|
|
|
'@' + self.plugin.accounts[account]["hostname"]
|
|
|
|
if self.plugin.accounts[account].has_key("password"):
|
|
|
|
infos['password'] = self.plugin.accounts[account]["password"]
|
|
|
|
if self.plugin.accounts[account].has_key("ressource"):
|
|
|
|
infos['ressource'] = self.plugin.accounts[account]["ressource"]
|
|
|
|
if self.plugin.accounts[account].has_key("use_proxy"):
|
|
|
|
infos['use_proxy'] = self.plugin.accounts[account]["use_proxy"]
|
|
|
|
if self.plugin.accounts[account].has_key("proxyhost"):
|
|
|
|
infos['proxyhost'] = self.plugin.accounts[account]["proxyhost"]
|
|
|
|
if self.plugin.accounts[account].has_key("proxyport"):
|
|
|
|
infos['proxyport'] = self.plugin.accounts[account]["proxyport"]
|
2004-05-02 18:25:04 +02:00
|
|
|
self.plugin.windows['accountPreference'] = \
|
|
|
|
accountPreference_Window(self.plugin, infos)
|
|
|
|
|
2004-03-24 16:33:40 +01:00
|
|
|
def mk_menu_account(self, event, iter):
|
|
|
|
"""Make account's popup menu"""
|
|
|
|
model = self.tree.get_model()
|
|
|
|
account = model.get_value(iter, 3)
|
|
|
|
|
|
|
|
menu = gtk.Menu()
|
2004-05-17 01:47:14 +02:00
|
|
|
item = gtk.MenuItem(_("Status"))
|
2004-03-24 16:33:40 +01:00
|
|
|
menu.append(item)
|
|
|
|
|
|
|
|
menu_sub = gtk.Menu()
|
|
|
|
item.set_submenu(menu_sub)
|
2004-05-17 01:47:14 +02:00
|
|
|
item = gtk.MenuItem(_("Online"))
|
2004-03-24 16:33:40 +01:00
|
|
|
menu_sub.append(item)
|
|
|
|
item.connect("activate", self.change_status, account, 'online')
|
2004-05-17 01:47:14 +02:00
|
|
|
item = gtk.MenuItem(_("Away"))
|
2004-03-24 16:33:40 +01:00
|
|
|
menu_sub.append(item)
|
|
|
|
item.connect("activate", self.change_status, account, 'away')
|
2004-05-17 01:47:14 +02:00
|
|
|
item = gtk.MenuItem(_("NA"))
|
2004-03-24 16:33:40 +01:00
|
|
|
menu_sub.append(item)
|
|
|
|
item.connect("activate", self.change_status, account, 'na')
|
2004-05-17 01:47:14 +02:00
|
|
|
item = gtk.MenuItem(_("DND"))
|
2004-03-24 16:33:40 +01:00
|
|
|
menu_sub.append(item)
|
|
|
|
item.connect("activate", self.change_status, account, 'dnd')
|
|
|
|
item = gtk.MenuItem()
|
|
|
|
menu_sub.append(item)
|
2004-05-17 01:47:14 +02:00
|
|
|
item = gtk.MenuItem(_("Offline"))
|
2004-03-24 16:33:40 +01:00
|
|
|
menu_sub.append(item)
|
|
|
|
item.connect("activate", self.change_status, account, 'offline')
|
|
|
|
|
|
|
|
item = gtk.MenuItem()
|
|
|
|
menu.append(item)
|
2004-03-04 21:56:39 +01:00
|
|
|
|
2004-05-17 01:47:14 +02:00
|
|
|
item = gtk.MenuItem(_("Edit account"))
|
2004-05-02 18:25:04 +02:00
|
|
|
menu.append(item)
|
|
|
|
item.connect("activate", self.on_edit_account, account)
|
|
|
|
|
2004-03-04 21:56:39 +01:00
|
|
|
menu.popup(None, None, None, event.button, event.time)
|
|
|
|
menu.show_all()
|
2003-11-30 23:40:24 +01:00
|
|
|
|
2004-03-16 16:39:36 +01:00
|
|
|
def authorize(self, widget, jid, account):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""Authorize a user"""
|
2004-03-16 16:39:36 +01:00
|
|
|
self.plugin.send('AUTH', account, jid)
|
2003-11-30 23:40:24 +01:00
|
|
|
|
2004-03-16 16:39:36 +01:00
|
|
|
def req_sub(self, widget, jid, txt, account):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""Request subscription to a user"""
|
2004-03-16 16:39:36 +01:00
|
|
|
self.plugin.send('SUB', account, (jid, txt))
|
|
|
|
if not self.contacts[account].has_key(jid):
|
2004-01-24 21:32:51 +01:00
|
|
|
user1 = user(jid, jid, ['general'], 'requested', \
|
|
|
|
'requested', 'sub', '')
|
2004-03-16 19:53:49 +01:00
|
|
|
self.add_user_to_roster(user1, account)
|
2004-01-05 16:02:03 +01:00
|
|
|
|
2003-11-30 23:40:24 +01:00
|
|
|
def on_treeview_event(self, widget, event):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""popup user's group's or agent menu"""
|
2004-05-19 01:39:11 +02:00
|
|
|
if event.type == gtk.gdk.BUTTON_PRESS:
|
|
|
|
if event.button == 3:
|
|
|
|
try:
|
|
|
|
path, column, x, y = self.tree.get_path_at_pos(int(event.x), \
|
|
|
|
int(event.y))
|
|
|
|
except TypeError:
|
|
|
|
self.tree.get_selection().unselect_all()
|
|
|
|
return
|
|
|
|
model = self.tree.get_model()
|
|
|
|
iter = model.get_iter(path)
|
|
|
|
type = model.get_value(iter, 2)
|
|
|
|
if type == 'group':
|
|
|
|
self.mk_menu_g(event)
|
|
|
|
elif type == 'agent':
|
|
|
|
self.mk_menu_agent(event, iter)
|
|
|
|
elif type == 'user':
|
|
|
|
self.mk_menu_user(event, iter)
|
|
|
|
elif type == 'account':
|
|
|
|
self.mk_menu_account(event, iter)
|
|
|
|
return gtk.TRUE
|
|
|
|
if event.button == 1:
|
|
|
|
try:
|
|
|
|
path, column, x, y = self.tree.get_path_at_pos(int(event.x), \
|
|
|
|
int(event.y))
|
|
|
|
except TypeError:
|
|
|
|
self.tree.get_selection().unselect_all()
|
|
|
|
if event.type == gtk.gdk.KEY_RELEASE:
|
|
|
|
if event.keyval == gtk.keysyms.Escape:
|
|
|
|
self.tree.get_selection().unselect_all()
|
2003-11-30 23:40:24 +01:00
|
|
|
return gtk.FALSE
|
2004-03-16 16:39:36 +01:00
|
|
|
|
2004-03-18 17:38:14 +01:00
|
|
|
def on_req_usub(self, widget, user, account):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""Remove a user"""
|
2004-05-17 01:47:14 +02:00
|
|
|
window = confirm_Window(_("Are you sure you want to remove %s (%s) from your roster ?") % (user.name, user.jid))
|
2004-04-26 02:59:23 +02:00
|
|
|
if window.wait() == gtk.RESPONSE_OK:
|
|
|
|
self.plugin.send('UNSUB', account, user.jid)
|
|
|
|
self.remove_user(user, account)
|
|
|
|
del self.contacts[account][user.jid]
|
2003-11-30 23:40:24 +01:00
|
|
|
|
2004-03-24 16:33:40 +01:00
|
|
|
def change_status(self, widget, account, status):
|
|
|
|
if status != 'online' and status != 'offline':
|
|
|
|
w = awayMsg_Window()
|
|
|
|
txt = w.run()
|
2004-05-02 17:20:42 +02:00
|
|
|
if txt != -1:
|
|
|
|
self.plugin.send('STATUS', account, (status, txt))
|
2004-03-24 16:33:40 +01:00
|
|
|
else:
|
|
|
|
txt = status
|
2004-05-02 17:20:42 +02:00
|
|
|
self.plugin.send('STATUS', account, (status, txt))
|
2004-03-24 16:33:40 +01:00
|
|
|
|
2004-03-11 22:14:09 +01:00
|
|
|
def on_optionmenu_changed(self, widget):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""When we change our status"""
|
2004-03-11 22:14:09 +01:00
|
|
|
optionmenu = self.xml.get_widget('optionmenu')
|
|
|
|
history = optionmenu.get_history()
|
|
|
|
status = optionmenu.get_menu().get_children()[history].name
|
|
|
|
if status != 'online' and status != 'offline':
|
2004-02-17 03:23:38 +01:00
|
|
|
w = awayMsg_Window()
|
2004-01-14 02:06:27 +01:00
|
|
|
txt = w.run()
|
2004-05-02 17:20:42 +02:00
|
|
|
if txt == -1:
|
|
|
|
self.set_optionmenu()
|
|
|
|
return
|
2004-01-14 02:06:27 +01:00
|
|
|
else:
|
2004-03-11 22:14:09 +01:00
|
|
|
txt = status
|
2004-03-16 19:53:49 +01:00
|
|
|
accounts = self.plugin.accounts.keys()
|
2004-03-16 16:39:36 +01:00
|
|
|
if len(accounts) == 0:
|
2004-05-17 01:47:14 +02:00
|
|
|
warning_Window(_("You must setup an account before connecting to jabber network."))
|
2004-03-16 16:39:36 +01:00
|
|
|
return
|
|
|
|
for acct in accounts:
|
|
|
|
self.plugin.send('STATUS', acct, (status, txt))
|
2004-05-02 00:30:53 +02:00
|
|
|
|
|
|
|
def set_optionmenu(self):
|
|
|
|
#table to change index in plugin.connected to index in optionmenu
|
|
|
|
table = {0:6, 1:0, 2:1, 3:2, 4:3, 5:4}
|
|
|
|
mini = min(self.plugin.connected.values())
|
|
|
|
optionmenu = self.xml.get_widget('optionmenu')
|
2004-05-02 01:50:07 +02:00
|
|
|
#temporarily block signal in order not to send status that we show
|
|
|
|
#in the optionmenu
|
|
|
|
optionmenu.handler_block(self.id_signal_optionmenu)
|
2004-05-02 00:30:53 +02:00
|
|
|
optionmenu.set_history(table[mini])
|
2004-05-02 01:50:07 +02:00
|
|
|
optionmenu.handler_unblock(self.id_signal_optionmenu)
|
2003-11-30 23:40:24 +01:00
|
|
|
|
2004-03-11 22:14:09 +01:00
|
|
|
def on_status_changed(self, account, status):
|
2004-03-16 16:39:36 +01:00
|
|
|
"""the core tells us that our status has changed"""
|
2004-04-27 04:29:48 +02:00
|
|
|
if not self.contacts.has_key(account):
|
|
|
|
return
|
2004-03-23 22:48:19 +01:00
|
|
|
model = self.tree.get_model()
|
|
|
|
accountIter = self.get_account_iter(account)
|
|
|
|
if accountIter:
|
|
|
|
model.set_value(accountIter, 0, self.pixbufs[status])
|
2004-05-02 00:30:53 +02:00
|
|
|
statuss = ['offline', 'online', 'away', 'xa', 'dnd', 'invisible']
|
2004-03-11 22:14:09 +01:00
|
|
|
if status == 'offline':
|
|
|
|
self.plugin.sleeper = None
|
2004-03-18 17:38:14 +01:00
|
|
|
for jid in self.contacts[account]:
|
|
|
|
user = self.contacts[account][jid]
|
2004-03-16 16:39:36 +01:00
|
|
|
self.chg_user_status(user, 'offline', 'Disconnected', account)
|
|
|
|
elif self.plugin.connected[account] == 0:
|
2004-03-11 22:14:09 +01:00
|
|
|
self.plugin.sleeper = None#common.sleepy.Sleepy(\
|
2004-03-16 19:53:49 +01:00
|
|
|
#self.plugin.config['autoawaytime']*60, \
|
|
|
|
#self.plugin.config['autoxatime']*60)
|
2004-05-02 02:47:29 +02:00
|
|
|
self.plugin.connected[account] = statuss.index(status)
|
2004-05-02 00:30:53 +02:00
|
|
|
self.set_optionmenu()
|
2004-03-11 22:14:09 +01:00
|
|
|
|
|
|
|
def on_message(self, jid, msg, account):
|
|
|
|
"""when we receive a message"""
|
2004-03-20 22:58:21 +01:00
|
|
|
if not self.contacts[account].has_key(jid):
|
2004-03-11 22:14:09 +01:00
|
|
|
user1 = user(jid, jid, ['not in list'], \
|
|
|
|
'not in list', 'not in list', 'none', '')
|
2004-03-16 19:53:49 +01:00
|
|
|
self.add_user_to_roster(user1, account)
|
2004-05-19 03:34:57 +02:00
|
|
|
iter = self.get_user_iter(jid, account)
|
2004-05-20 15:20:24 +02:00
|
|
|
path = self.tree.get_model().get_path(iter)
|
2004-03-11 22:14:09 +01:00
|
|
|
autopopup = self.plugin.config['autopopup']
|
2004-03-18 17:38:14 +01:00
|
|
|
if autopopup == 0 and not \
|
|
|
|
self.plugin.windows[account]['chats'].has_key(jid):
|
2004-03-11 22:14:09 +01:00
|
|
|
#We save it in a queue
|
2004-03-16 16:39:36 +01:00
|
|
|
if not self.plugin.queues[account].has_key(jid):
|
2004-03-11 22:14:09 +01:00
|
|
|
model = self.tree.get_model()
|
2004-03-16 16:39:36 +01:00
|
|
|
self.plugin.queues[account][jid] = Queue.Queue(50)
|
|
|
|
for i in self.get_user_iter(jid, account):
|
2004-03-11 22:14:09 +01:00
|
|
|
model.set_value(i, 0, self.pixbufs['message'])
|
|
|
|
tim = time.strftime("[%H:%M:%S]")
|
2004-03-16 16:39:36 +01:00
|
|
|
self.plugin.queues[account][jid].put((msg, tim))
|
2004-05-19 03:34:57 +02:00
|
|
|
self.tree.expand_row(path[0:1], FALSE)
|
|
|
|
self.tree.expand_row(path[0:2], FALSE)
|
|
|
|
self.tree.scroll_to_cell(path)
|
|
|
|
self.tree.set_cursor(path)
|
2004-03-11 22:14:09 +01:00
|
|
|
else:
|
2004-03-18 17:38:14 +01:00
|
|
|
if not self.plugin.windows[account]['chats'].has_key(jid):
|
2004-05-19 03:34:57 +02:00
|
|
|
self.tree.expand_row(path[0:1], FALSE)
|
|
|
|
self.tree.expand_row(path[0:2], FALSE)
|
|
|
|
self.tree.scroll_to_cell(path)
|
|
|
|
self.tree.set_cursor(path)
|
2004-03-18 17:38:14 +01:00
|
|
|
self.plugin.windows[account]['chats'][jid] = \
|
2004-03-20 22:58:21 +01:00
|
|
|
message_Window(self.contacts[account][jid], self.plugin, account)
|
2004-03-18 17:38:14 +01:00
|
|
|
self.plugin.windows[account]['chats'][jid].print_conversation(msg)
|
2004-03-11 22:14:09 +01:00
|
|
|
|
2003-12-29 19:37:31 +01:00
|
|
|
def on_prefs(self, widget):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""When preferences is selected :
|
2004-02-17 03:23:38 +01:00
|
|
|
call the preference_Window class"""
|
2004-03-16 16:39:36 +01:00
|
|
|
if not self.plugin.windows.has_key('preferences'):
|
2004-03-18 17:38:14 +01:00
|
|
|
self.plugin.windows['preferences'] = preference_Window(self.plugin)
|
2003-12-29 19:37:31 +01:00
|
|
|
|
2004-03-18 17:38:14 +01:00
|
|
|
def on_add(self, widget, account):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""When add user is selected :
|
|
|
|
call the add class"""
|
2004-03-22 14:09:59 +01:00
|
|
|
addContact_Window(self.plugin, account)
|
2003-11-30 23:40:24 +01:00
|
|
|
|
|
|
|
def on_about(self, widget):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""When about is selected :
|
|
|
|
call the about class"""
|
2004-03-16 16:39:36 +01:00
|
|
|
if not self.plugin.windows.has_key('about'):
|
2004-03-30 16:58:18 +02:00
|
|
|
self.plugin.windows['about'] = about_Window(self.plugin)
|
2003-11-30 23:40:24 +01:00
|
|
|
|
|
|
|
def on_accounts(self, widget):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""When accounts is seleted :
|
|
|
|
call the accounts class to modify accounts"""
|
2004-03-16 16:39:36 +01:00
|
|
|
if not self.plugin.windows.has_key('accounts'):
|
2004-03-18 17:38:14 +01:00
|
|
|
self.plugin.windows['accounts'] = accounts_Window(self.plugin)
|
2003-11-30 23:40:24 +01:00
|
|
|
|
|
|
|
def on_quit(self, widget):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""When we quit the gtk plugin :
|
|
|
|
tell that to the core and exit gtk"""
|
2004-03-16 16:39:36 +01:00
|
|
|
self.plugin.send('QUIT', None, '')
|
2004-05-17 01:47:14 +02:00
|
|
|
print _("plugin gtkgui stopped")
|
2003-11-30 23:40:24 +01:00
|
|
|
gtk.mainquit()
|
|
|
|
|
|
|
|
def on_row_activated(self, widget, path, col=0):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""When an iter is dubble clicked :
|
|
|
|
open the chat window"""
|
2004-01-18 23:56:28 +01:00
|
|
|
model = self.tree.get_model()
|
2004-03-16 16:39:36 +01:00
|
|
|
acct_iter = model.get_iter((path[0]))
|
|
|
|
account = model.get_value(acct_iter, 3)
|
2004-01-18 23:56:28 +01:00
|
|
|
iter = model.get_iter(path)
|
2004-03-16 16:39:36 +01:00
|
|
|
type = model.get_value(iter, 2)
|
|
|
|
jid = model.get_value(iter, 3)
|
2004-03-20 22:58:21 +01:00
|
|
|
if (type == 'group') or (type == 'account'):
|
2003-12-10 12:03:57 +01:00
|
|
|
if (self.tree.row_expanded(path)):
|
|
|
|
self.tree.collapse_row(path)
|
|
|
|
else:
|
2004-03-23 22:48:19 +01:00
|
|
|
self.tree.expand_row(path, False)
|
2003-12-10 12:03:57 +01:00
|
|
|
else:
|
2004-03-18 17:38:14 +01:00
|
|
|
if self.plugin.windows[account]['chats'].has_key(jid):
|
|
|
|
self.plugin.windows[account]['chats'][jid].window.present()
|
2004-03-16 16:39:36 +01:00
|
|
|
elif self.contacts[account].has_key(jid):
|
2004-03-18 17:38:14 +01:00
|
|
|
self.plugin.windows[account]['chats'][jid] = \
|
|
|
|
message_Window(self.contacts[account][jid], self.plugin, account)
|
2003-12-10 12:03:57 +01:00
|
|
|
|
|
|
|
def on_row_expanded(self, widget, iter, path):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""When a row is expanded :
|
|
|
|
change the icon of the arrow"""
|
2004-03-23 22:48:19 +01:00
|
|
|
model = self.tree.get_model()
|
|
|
|
acct_iter = model.get_iter((path[0]))
|
|
|
|
account = model.get_value(acct_iter, 3)
|
|
|
|
type = model.get_value(iter, 2)
|
|
|
|
if type == 'group':
|
|
|
|
model.set_value(iter, 0, self.pixbufs['opened'])
|
|
|
|
jid = model.get_value(iter, 3)
|
|
|
|
self.groups[account][jid]['expand'] = True
|
|
|
|
elif type == 'account':
|
|
|
|
for g in self.groups[account]:
|
|
|
|
groupIter = self.get_group_iter(g, account)
|
|
|
|
if groupIter and self.groups[account][g]['expand']:
|
|
|
|
pathG = model.get_path(groupIter)
|
|
|
|
self.tree.expand_row(pathG, False)
|
|
|
|
|
2003-12-10 12:03:57 +01:00
|
|
|
|
|
|
|
def on_row_collapsed(self, widget, iter, path):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""When a row is collapsed :
|
|
|
|
change the icon of the arrow"""
|
2004-03-23 22:48:19 +01:00
|
|
|
model = self.tree.get_model()
|
|
|
|
acct_iter = model.get_iter((path[0]))
|
|
|
|
account = model.get_value(acct_iter, 3)
|
|
|
|
type = model.get_value(iter, 2)
|
|
|
|
if type == 'group':
|
|
|
|
model.set_value(iter, 0, self.pixbufs['closed'])
|
|
|
|
jid = model.get_value(iter, 3)
|
|
|
|
self.groups[account][jid]['expand'] = False
|
2003-11-30 23:40:24 +01:00
|
|
|
|
|
|
|
def on_cell_edited (self, cell, row, new_text):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""When an iter is editer :
|
|
|
|
if text has changed, rename the user
|
|
|
|
else open chat window"""
|
2004-01-18 23:56:28 +01:00
|
|
|
model = self.tree.get_model()
|
|
|
|
iter = model.get_iter_from_string(row)
|
2004-03-18 17:38:14 +01:00
|
|
|
path = model.get_path(iter)
|
|
|
|
acct_iter = model.get_iter((path[0]))
|
|
|
|
account = model.get_value(acct_iter, 3)
|
|
|
|
jid = model.get_value(iter, 3)
|
|
|
|
old_text = self.contacts[account][jid].name
|
|
|
|
#FIXME:If it is a double click, old_text == new_text
|
2003-11-30 23:40:24 +01:00
|
|
|
if old_text == new_text:
|
2004-03-18 17:38:14 +01:00
|
|
|
if self.plugin.windows[account]['chats'].has_key(jid):
|
|
|
|
chat = self.plugin.windows[account]['chats'][jid]
|
|
|
|
chat.xml.get_widget('Chat').present()
|
|
|
|
elif self.contacts[account].has_key(jid):
|
|
|
|
self.plugin.windows[account]['chats'][jid] = \
|
|
|
|
message_Window(self.contacts[account][jid], self.plugin, account)
|
2003-11-30 23:40:24 +01:00
|
|
|
else:
|
2004-01-18 23:56:28 +01:00
|
|
|
model.set_value(iter, 1, new_text)
|
2004-03-18 17:38:14 +01:00
|
|
|
self.contacts[account][jid].name = new_text
|
|
|
|
self.plugin.send('UPDUSER', account, (jid, new_text, \
|
|
|
|
self.contacts[account][jid].groups))
|
2003-11-30 23:40:24 +01:00
|
|
|
|
2004-03-20 22:58:21 +01:00
|
|
|
def on_browse(self, widget, account):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""When browse agent is selected :
|
|
|
|
Call browse class"""
|
2004-03-20 22:58:21 +01:00
|
|
|
if not self.plugin.windows[account].has_key('browser'):
|
|
|
|
self.plugin.windows[account]['browser'] = browseAgent_Window(self.plugin, account)
|
2003-11-30 23:40:24 +01:00
|
|
|
|
2003-12-30 02:07:38 +01:00
|
|
|
def mkpixbufs(self):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""initialise pixbufs array"""
|
2004-03-16 16:39:36 +01:00
|
|
|
iconstyle = self.plugin.config['iconstyle']
|
|
|
|
if not iconstyle:
|
|
|
|
iconstyle = 'sun'
|
|
|
|
self.path = 'plugins/gtkgui/icons/' + iconstyle + '/'
|
2003-12-30 02:07:38 +01:00
|
|
|
self.pixbufs = {}
|
2004-05-17 17:37:34 +02:00
|
|
|
for state in ('online', 'chat', 'away', 'xa', 'dnd', 'offline', 'error', \
|
2004-01-24 21:32:51 +01:00
|
|
|
'requested', 'message', 'opened', 'closed', 'not in list'):
|
2004-02-17 03:23:38 +01:00
|
|
|
# try to open a pixfile with the correct method
|
|
|
|
files = []
|
|
|
|
files.append(self.path + state + '.gif')
|
|
|
|
files.append(self.path + state + '.png')
|
|
|
|
files.append(self.path + state + '.xpm')
|
|
|
|
self.pixbufs[state] = None
|
|
|
|
for file in files:
|
|
|
|
if not os.path.exists(file):
|
|
|
|
continue
|
|
|
|
fct = gtk.gdk.pixbuf_new_from_file
|
|
|
|
if file.find('.gif') != -1:
|
2004-05-15 18:50:38 +02:00
|
|
|
fct = gtk.gdk.PixbufAnimation
|
2004-02-17 03:23:38 +01:00
|
|
|
pix = fct(file)
|
2003-12-30 02:07:38 +01:00
|
|
|
self.pixbufs[state] = pix
|
2004-02-17 03:23:38 +01:00
|
|
|
break
|
2004-05-11 22:30:59 +02:00
|
|
|
for state in ('online', 'away', 'xa', 'dnd', 'offline'):
|
|
|
|
image = gtk.Image()
|
|
|
|
image.set_from_pixbuf(self.pixbufs[state])
|
|
|
|
image.show()
|
|
|
|
self.xml.get_widget(state).set_image(image)
|
2004-05-13 19:40:36 +02:00
|
|
|
self.xml.get_widget('invisible').set_sensitive(False)
|
2003-12-30 02:07:38 +01:00
|
|
|
|
2003-12-31 11:55:13 +01:00
|
|
|
def on_show_off(self, widget):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""when show offline option is changed :
|
|
|
|
redraw the treeview"""
|
2004-03-16 16:39:36 +01:00
|
|
|
self.plugin.config['showoffline'] = 1 - self.plugin.config['showoffline']
|
2004-04-25 01:45:46 +02:00
|
|
|
self.plugin.send('CONFIG', None, ('GtkGui', self.plugin.config))
|
2004-03-22 14:09:59 +01:00
|
|
|
self.draw_roster()
|
2003-12-31 11:55:13 +01:00
|
|
|
|
2004-03-29 03:38:22 +02:00
|
|
|
def iconCellDataFunc(self, column, renderer, model, iter, data=None):
|
2004-03-30 05:26:53 +02:00
|
|
|
"""When a row is added, set properties for icon renderer"""
|
2004-03-29 03:38:22 +02:00
|
|
|
if model.get_value(iter, 2) == 'account':
|
|
|
|
renderer.set_property('cell-background', '#9fdfff')
|
|
|
|
renderer.set_property('xalign', 0)
|
|
|
|
elif model.get_value(iter, 2) == 'group':
|
|
|
|
renderer.set_property('cell-background-set', False)
|
|
|
|
renderer.set_property('xalign', 0.3)
|
|
|
|
else:
|
|
|
|
renderer.set_property('cell-background-set', False)
|
|
|
|
renderer.set_property('xalign', 1)
|
|
|
|
renderer.set_property('width', 30)
|
|
|
|
|
|
|
|
def nameCellDataFunc(self, column, renderer, model, iter, data=None):
|
2004-03-30 05:26:53 +02:00
|
|
|
"""When a row is added, set properties for name renderer"""
|
2004-03-29 03:38:22 +02:00
|
|
|
if model.get_value(iter, 2) == 'account':
|
|
|
|
renderer.set_property('foreground', 'red')
|
2004-03-29 18:51:45 +02:00
|
|
|
renderer.set_property('cell-background', '#9fdfff')
|
2004-03-29 03:38:22 +02:00
|
|
|
renderer.set_property('font', 'Normal')
|
|
|
|
renderer.set_property('weight', 700)
|
|
|
|
renderer.set_property('xpad', 0)
|
|
|
|
elif model.get_value(iter, 2) == 'group':
|
|
|
|
renderer.set_property('foreground', 'blue')
|
2004-03-29 18:51:45 +02:00
|
|
|
renderer.set_property('cell-background-set', False)
|
2004-03-29 03:38:22 +02:00
|
|
|
renderer.set_property('font', 'Italic')
|
|
|
|
renderer.set_property('weight-set', False)
|
|
|
|
renderer.set_property('xpad', 8)
|
|
|
|
else:
|
|
|
|
renderer.set_property('foreground-set', False)
|
2004-03-29 18:51:45 +02:00
|
|
|
renderer.set_property('cell-background-set', False)
|
2004-03-29 03:38:22 +02:00
|
|
|
renderer.set_property('font', 'Normal')
|
|
|
|
renderer.set_property('weight-set', False)
|
|
|
|
renderer.set_property('xpad', 16)
|
|
|
|
|
2004-03-30 05:26:53 +02:00
|
|
|
def compareIters(self, model, iter1, iter2, data = None):
|
|
|
|
"""Compare two iters to sort them"""
|
|
|
|
name1 = model.get_value(iter1, 1)
|
|
|
|
name2 = model.get_value(iter2, 1)
|
|
|
|
if not name1 or not name2:
|
|
|
|
return 0
|
|
|
|
type = model.get_value(iter1, 2)
|
|
|
|
if type == 'group':
|
|
|
|
if name1 == 'Agents':
|
|
|
|
return 1
|
|
|
|
if name2 == 'Agents':
|
|
|
|
return -1
|
|
|
|
if name1.lower() < name2.lower():
|
|
|
|
return -1
|
|
|
|
if name2.lower < name1.lower():
|
|
|
|
return 1
|
|
|
|
return 0
|
|
|
|
|
2004-03-11 22:14:09 +01:00
|
|
|
def __init__(self, plugin):
|
2003-11-30 23:40:24 +01:00
|
|
|
# FIXME : handle no file ...
|
2004-05-17 01:47:14 +02:00
|
|
|
self.xml = gtk.glade.XML(GTKGUI_GLADE, 'Gajim', APP)
|
2004-03-11 22:14:09 +01:00
|
|
|
self.tree = self.xml.get_widget('treeview')
|
|
|
|
self.plugin = plugin
|
2004-03-16 19:53:49 +01:00
|
|
|
self.groups = {}
|
2004-03-16 16:39:36 +01:00
|
|
|
self.contacts = {}
|
|
|
|
for a in self.plugin.accounts.keys():
|
|
|
|
self.contacts[a] = {}
|
2004-03-20 22:58:21 +01:00
|
|
|
self.groups[a] = {}
|
2004-03-13 04:09:12 +01:00
|
|
|
#(icon, name, type, jid, editable)
|
2004-05-15 18:50:38 +02:00
|
|
|
model = gtk.TreeStore(gobject.GObject, str, str, str, \
|
|
|
|
# model = gtk.TreeStore(gtk.gdk.Pixbuf, str, str, str, \
|
2004-03-13 04:09:12 +01:00
|
|
|
gobject.TYPE_BOOLEAN)
|
2004-03-30 05:26:53 +02:00
|
|
|
model.set_sort_func(1, self.compareIters)
|
|
|
|
model.set_sort_column_id(1, gtk.SORT_ASCENDING)
|
2004-01-18 23:56:28 +01:00
|
|
|
self.tree.set_model(model)
|
2003-12-30 02:07:38 +01:00
|
|
|
self.mkpixbufs()
|
2003-12-04 20:57:06 +01:00
|
|
|
# map = self.tree.get_colormap()
|
|
|
|
# colour = map.alloc_color("red") # light red
|
|
|
|
# colour2 = map.alloc_color("blue") # light red
|
|
|
|
# colour = map.alloc_color("#FF9999") # light red
|
|
|
|
# st = self.tree.get_style().copy()
|
|
|
|
# st.bg[gtk.STATE_NORMAL] = colour
|
|
|
|
# st.fg[gtk.STATE_NORMAL] = colour
|
|
|
|
# st.bg[gtk.STATE_ACTIVE] = colour2
|
|
|
|
# st.fg[gtk.STATE_ACTIVE] = colour2
|
|
|
|
# st.bg[gtk.STATE_INSENSITIVE] = colour
|
|
|
|
# st.bg[gtk.STATE_PRELIGHT] = colour
|
|
|
|
# st.bg[gtk.STATE_SELECTED] = colour
|
|
|
|
# st.fg[gtk.STATE_SELECTED] = colour2
|
|
|
|
# st.white = colour
|
|
|
|
# print st.bg
|
|
|
|
# print self.tree.get_property('expander-column')
|
|
|
|
# self.tree.set_style(st)
|
2004-03-11 22:14:09 +01:00
|
|
|
self.xml.get_widget('optionmenu').set_history(6)
|
2003-11-30 23:40:24 +01:00
|
|
|
|
2004-03-16 16:39:36 +01:00
|
|
|
showOffline = self.plugin.config['showoffline']
|
|
|
|
self.xml.get_widget('show_offline').set_active(showOffline)
|
2003-12-04 20:57:06 +01:00
|
|
|
|
2003-11-30 23:40:24 +01:00
|
|
|
#columns
|
2004-01-18 23:56:28 +01:00
|
|
|
col = gtk.TreeViewColumn()
|
2004-03-29 03:38:22 +02:00
|
|
|
self.tree.append_column(col)
|
2003-11-30 23:40:24 +01:00
|
|
|
render_pixbuf = gtk.CellRendererPixbuf()
|
2004-01-18 23:56:28 +01:00
|
|
|
col.pack_start(render_pixbuf, expand = False)
|
|
|
|
col.add_attribute(render_pixbuf, 'pixbuf', 0)
|
2004-03-29 03:38:22 +02:00
|
|
|
col.set_cell_data_func(render_pixbuf, self.iconCellDataFunc, None)
|
|
|
|
|
2003-11-30 23:40:24 +01:00
|
|
|
render_text = gtk.CellRendererText()
|
|
|
|
render_text.connect('edited', self.on_cell_edited)
|
2004-01-18 23:56:28 +01:00
|
|
|
col.pack_start(render_text, expand = True)
|
|
|
|
col.add_attribute(render_text, 'text', 1)
|
2004-03-13 04:09:12 +01:00
|
|
|
col.add_attribute(render_text, 'editable', 4)
|
2004-03-29 03:38:22 +02:00
|
|
|
col.set_cell_data_func(render_text, self.nameCellDataFunc, None)
|
|
|
|
|
2004-01-18 23:56:28 +01:00
|
|
|
col = gtk.TreeViewColumn()
|
2003-12-10 12:03:57 +01:00
|
|
|
render_pixbuf = gtk.CellRendererPixbuf()
|
2004-01-18 23:56:28 +01:00
|
|
|
col.pack_start(render_pixbuf, expand = False)
|
|
|
|
self.tree.append_column(col)
|
|
|
|
col.set_visible(FALSE)
|
2004-03-29 03:38:22 +02:00
|
|
|
self.tree.set_expander_column(col)
|
2003-11-30 23:40:24 +01:00
|
|
|
|
|
|
|
#signals
|
2004-03-16 16:39:36 +01:00
|
|
|
self.xml.signal_connect('gtk_main_quit', self.on_quit)
|
|
|
|
self.xml.signal_connect('on_preferences_activate', self.on_prefs)
|
|
|
|
self.xml.signal_connect('on_accounts_activate', self.on_accounts)
|
|
|
|
self.xml.signal_connect('on_show_offline_activate', self.on_show_off)
|
|
|
|
self.xml.signal_connect('on_about_activate', self.on_about)
|
|
|
|
self.xml.signal_connect('on_quit_activate', self.on_quit)
|
|
|
|
self.xml.signal_connect('on_treeview_event', self.on_treeview_event)
|
|
|
|
self.xml.signal_connect('on_status_changed', self.on_status_changed)
|
2004-05-02 01:50:07 +02:00
|
|
|
optionmenu = self.xml.get_widget('optionmenu')
|
|
|
|
self.id_signal_optionmenu = optionmenu.connect('changed', \
|
2004-03-18 17:38:14 +01:00
|
|
|
self.on_optionmenu_changed)
|
2004-03-16 16:39:36 +01:00
|
|
|
self.xml.signal_connect('on_row_activated', self.on_row_activated)
|
|
|
|
self.xml.signal_connect('on_row_expanded', self.on_row_expanded)
|
|
|
|
self.xml.signal_connect('on_row_collapsed', self.on_row_collapsed)
|
2003-11-30 23:40:24 +01:00
|
|
|
|
2004-03-18 17:38:14 +01:00
|
|
|
self.draw_roster()
|
|
|
|
|
2003-11-30 23:40:24 +01:00
|
|
|
class plugin:
|
2004-01-20 13:46:27 +01:00
|
|
|
"""Class called by the core in a new thread"""
|
2004-03-11 22:14:09 +01:00
|
|
|
|
|
|
|
class accounts:
|
|
|
|
"""Class where are stored the accounts and users in them"""
|
|
|
|
def __init__(self):
|
|
|
|
self.__accounts = {}
|
|
|
|
|
|
|
|
def add_account(self, account, users=()):
|
|
|
|
#users must be like (user1, user2)
|
|
|
|
self.__accounts[account] = users
|
|
|
|
|
|
|
|
def add_user_to_account(self, account, user):
|
|
|
|
if self.__accounts.has_key(account):
|
|
|
|
self.__accounts[account].append(user)
|
|
|
|
else :
|
|
|
|
return 1
|
|
|
|
|
|
|
|
def get_accounts(self):
|
|
|
|
return self.__accounts.keys();
|
|
|
|
|
|
|
|
def get_users(self, account):
|
|
|
|
if self.__accounts.has_key(account):
|
|
|
|
return self.__accounts[account]
|
|
|
|
else :
|
|
|
|
return None
|
|
|
|
|
|
|
|
def which_account(self, user):
|
|
|
|
for a in self.__accounts.keys():
|
|
|
|
if user in self.__accounts[a]:
|
|
|
|
return a
|
|
|
|
return None
|
|
|
|
|
|
|
|
def send(self, event, account, data):
|
|
|
|
self.queueOUT.put((event, account, data))
|
|
|
|
|
2004-01-24 21:32:51 +01:00
|
|
|
def wait(self, what):
|
|
|
|
"""Wait for a message from Core"""
|
2004-02-17 03:23:38 +01:00
|
|
|
#TODO: timeout
|
|
|
|
temp_q = Queue.Queue(50)
|
2004-01-24 21:32:51 +01:00
|
|
|
while 1:
|
|
|
|
if not self.queueIN.empty():
|
|
|
|
ev = self.queueIN.get()
|
2004-03-11 22:14:09 +01:00
|
|
|
if ev[0] == what and ev[2][0] == 'GtkGui':
|
2004-02-17 03:23:38 +01:00
|
|
|
#Restore messages
|
|
|
|
while not temp_q.empty():
|
|
|
|
ev2 = temp_q.get()
|
2004-02-17 19:40:14 +01:00
|
|
|
self.queueIN.put(ev2)
|
2004-03-11 22:14:09 +01:00
|
|
|
return ev[2][1]
|
2004-02-17 03:23:38 +01:00
|
|
|
else:
|
|
|
|
#Save messages
|
|
|
|
temp_q.put(ev)
|
2004-01-24 21:32:51 +01:00
|
|
|
|
2003-11-30 23:40:24 +01:00
|
|
|
def read_queue(self):
|
2004-01-20 13:46:27 +01:00
|
|
|
"""Read queue from the core and execute commands from it"""
|
2004-03-11 22:14:09 +01:00
|
|
|
model = self.roster.tree.get_model()
|
2003-11-30 23:40:24 +01:00
|
|
|
while self.queueIN.empty() == 0:
|
|
|
|
ev = self.queueIN.get()
|
|
|
|
if ev[0] == 'ROSTER':
|
2004-03-16 19:53:49 +01:00
|
|
|
self.roster.mklists(ev[2], ev[1])
|
2004-03-11 22:14:09 +01:00
|
|
|
self.roster.draw_roster()
|
2004-01-08 00:49:23 +01:00
|
|
|
elif ev[0] == 'WARNING':
|
2004-03-11 22:14:09 +01:00
|
|
|
warning_Window(ev[2])
|
|
|
|
#('STATUS', account, status)
|
2004-01-08 00:49:23 +01:00
|
|
|
elif ev[0] == 'STATUS':
|
2004-03-11 22:14:09 +01:00
|
|
|
self.roster.on_status_changed(ev[1], ev[2])
|
|
|
|
#('NOTIFY', account, (jid, status, message, resource))
|
2003-11-30 23:40:24 +01:00
|
|
|
elif ev[0] == 'NOTIFY':
|
2004-03-11 22:14:09 +01:00
|
|
|
jid = string.split(ev[2][0], '/')[0]
|
|
|
|
resource = ev[2][3]
|
|
|
|
if not resource:
|
|
|
|
resource = ''
|
2003-12-31 11:55:13 +01:00
|
|
|
if string.find(jid, "@") <= 0:
|
|
|
|
#It must be an agent
|
|
|
|
ji = string.replace(jid, '@', '')
|
|
|
|
else:
|
|
|
|
ji = jid
|
2003-12-02 13:39:28 +01:00
|
|
|
#Update user
|
2004-03-16 19:53:49 +01:00
|
|
|
if self.roster.contacts[ev[1]].has_key(ji):
|
|
|
|
user = self.roster.contacts[ev[1]][ji]
|
2004-03-11 22:14:09 +01:00
|
|
|
user.show = ev[2][1]
|
|
|
|
user.status = ev[2][2]
|
|
|
|
user.resource = resource
|
2003-11-30 23:40:24 +01:00
|
|
|
if string.find(jid, "@") <= 0:
|
|
|
|
#It must be an agent
|
2004-03-16 19:53:49 +01:00
|
|
|
if not self.roster.contacts[ev[1]].has_key(ji):
|
2004-03-11 22:14:09 +01:00
|
|
|
user1 = user(ji, ji, ['Agents'], ev[2][1], \
|
|
|
|
ev[2][2], 'from', resource)
|
2004-03-16 19:53:49 +01:00
|
|
|
self.roster.add_user_to_roster(user1, ev[1])
|
2003-11-30 23:40:24 +01:00
|
|
|
else:
|
2004-01-20 13:46:27 +01:00
|
|
|
#Update existing iter
|
2004-03-16 19:53:49 +01:00
|
|
|
for i in self.roster.get_user_iter(ji, ev[1]):
|
2004-03-11 22:14:09 +01:00
|
|
|
if self.roster.pixbufs.has_key(ev[2][1]):
|
2004-03-18 17:38:14 +01:00
|
|
|
model.set_value(i, 0, self.roster.pixbufs[ev[2][1]])
|
2004-03-16 19:53:49 +01:00
|
|
|
elif self.roster.contacts[ev[1]].has_key(ji):
|
2003-11-30 23:40:24 +01:00
|
|
|
#It isn't an agent
|
2004-03-16 19:53:49 +01:00
|
|
|
self.roster.chg_user_status(user, ev[2][1], ev[2][2], ev[1])
|
2004-03-11 22:14:09 +01:00
|
|
|
#('MSG', account, (user, msg))
|
2003-11-30 23:40:24 +01:00
|
|
|
elif ev[0] == 'MSG':
|
2004-03-11 22:14:09 +01:00
|
|
|
if string.find(ev[2][0], "@") <= 0:
|
|
|
|
jid = string.replace(ev[2][0], '@', '')
|
2003-11-30 23:40:24 +01:00
|
|
|
else:
|
2004-03-11 22:14:09 +01:00
|
|
|
jid = ev[2][0]
|
|
|
|
self.roster.on_message(jid, ev[2][1], ev[1])
|
2004-03-18 17:38:14 +01:00
|
|
|
#('SUBSCRIBE', account, (jid, text))
|
2003-11-30 23:40:24 +01:00
|
|
|
elif ev[0] == 'SUBSCRIBE':
|
2004-03-18 17:38:14 +01:00
|
|
|
authorize_Window(self, ev[2][0], ev[2][1], ev[1])
|
2004-03-11 22:14:09 +01:00
|
|
|
#('SUBSCRIBED', account, (jid, nom, resource))
|
2003-11-30 23:40:24 +01:00
|
|
|
elif ev[0] == 'SUBSCRIBED':
|
2004-04-26 02:59:23 +02:00
|
|
|
if self.roster.contacts[ev[1]].has_key(ev[2][0]):
|
|
|
|
u = self.roster.contacts[ev[1]][ev[2][0]]['user']
|
2004-03-11 22:14:09 +01:00
|
|
|
u.name = ev[2][1]
|
|
|
|
u.resource = ev[2][2]
|
2004-04-26 02:59:23 +02:00
|
|
|
for i in self.roster.contacts[ev[1]][u.jid]['iter']:
|
2004-01-18 23:56:28 +01:00
|
|
|
model.set_value(i, 1, u.name)
|
2003-11-30 23:40:24 +01:00
|
|
|
else:
|
2004-03-11 22:14:09 +01:00
|
|
|
user1 = user(ev[2][0], ev[2][0], ['general'], 'online', \
|
|
|
|
'online', 'to', ev[2][2])
|
|
|
|
self.roster.add_user(user1)
|
2004-05-17 01:47:14 +02:00
|
|
|
warning_Window(_("You are now authorized by %s") % ev[2][0])
|
2004-01-22 00:09:03 +01:00
|
|
|
elif ev[0] == 'UNSUBSCRIBED':
|
2004-05-17 01:47:14 +02:00
|
|
|
warning_Window(_("You are now unsubscribed by %s") % ev[2])
|
2004-01-22 00:09:03 +01:00
|
|
|
#TODO: change icon
|
2004-03-11 22:14:09 +01:00
|
|
|
#('AGENTS', account, agents)
|
2003-11-30 23:40:24 +01:00
|
|
|
elif ev[0] == 'AGENTS':
|
2004-03-16 16:39:36 +01:00
|
|
|
if self.windows[ev[1]].has_key('browser'):
|
|
|
|
self.windows[ev[1]]['browser'].agents(ev[2])
|
2004-03-11 22:14:09 +01:00
|
|
|
#('AGENTS_INFO', account, (agent, infos))
|
2003-11-30 23:40:24 +01:00
|
|
|
elif ev[0] == 'AGENT_INFO':
|
2004-03-11 22:14:09 +01:00
|
|
|
if not ev[2][1].has_key('instructions'):
|
2004-05-17 01:47:14 +02:00
|
|
|
warning_Window(_("error contacting %s") % ev[2][0])
|
2003-12-20 14:22:37 +01:00
|
|
|
else:
|
2004-03-20 22:58:21 +01:00
|
|
|
agentRegistration_Window(ev[2][0], ev[2][1], self, ev[1])
|
2004-03-11 22:14:09 +01:00
|
|
|
#('ACC_OK', account, (hostname, login, pasword, name, ressource))
|
2003-12-14 01:47:00 +01:00
|
|
|
elif ev[0] == 'ACC_OK':
|
2004-03-11 22:14:09 +01:00
|
|
|
self.accounts[ev[2][3]] = {'ressource': ev[2][4], \
|
|
|
|
'password': ev[2][2], 'hostname': ev[2][0], 'name': ev[2][1]}
|
2004-03-16 16:39:36 +01:00
|
|
|
self.send('CONFIG', None, ('accounts', self.accounts))
|
2004-03-20 22:58:21 +01:00
|
|
|
self.windows[name] = {'infos': {}, 'chats': {}}
|
|
|
|
self.queues[name] = {}
|
|
|
|
self.connected[name] = 0
|
|
|
|
self.roster.groups[name] = {}
|
|
|
|
self.roster.contacts[name] = {}
|
2004-03-16 16:39:36 +01:00
|
|
|
if self.windows.has_key('accounts'):
|
2004-03-11 22:14:09 +01:00
|
|
|
self.windows['accounts'].init_accounts()
|
2004-01-17 16:38:29 +01:00
|
|
|
elif ev[0] == 'QUIT':
|
2004-03-11 22:14:09 +01:00
|
|
|
self.roster.on_quit(self)
|
2004-04-22 14:31:20 +02:00
|
|
|
elif ev[0] == 'MYVCARD':
|
|
|
|
nick = ''
|
|
|
|
if ev[2].has_key('NICKNAME'):
|
|
|
|
nick = ev[2]['NICKNAME']
|
|
|
|
if nick == '':
|
|
|
|
nick = self.accounts[ev[1]]['name']
|
|
|
|
self.nicks[ev[1]] = nick
|
2004-02-19 05:20:40 +01:00
|
|
|
elif ev[0] == 'VCARD':
|
2004-03-18 17:38:14 +01:00
|
|
|
if self.windows[ev[1]]['infos'].has_key(ev[2]['jid']):
|
|
|
|
self.windows[ev[1]]['infos'][ev[2]['jid']].set_values(ev[2])
|
2004-04-05 00:09:56 +02:00
|
|
|
#('LOG_NB_LINE', account, (jid, nb_line))
|
|
|
|
elif ev[0] == 'LOG_NB_LINE':
|
|
|
|
if self.windows['logs'].has_key(ev[2][0]):
|
|
|
|
self.windows['logs'][ev[2][0]].set_nb_line(ev[2][1])
|
|
|
|
begin = 0
|
|
|
|
if ev[2][1] > 50:
|
|
|
|
begin = ev[2][1] - 50
|
|
|
|
self.send('LOG_GET_RANGE', None, (ev[2][0], begin, ev[2][1]))
|
|
|
|
#('LOG_LINE', account, (jid, num_line, date, type, data))
|
|
|
|
# if type = 'recv' or 'sent' data = [msg]
|
|
|
|
# else type = jid and data = [status, away_msg]
|
|
|
|
elif ev[0] == 'LOG_LINE':
|
|
|
|
if self.windows['logs'].has_key(ev[2][0]):
|
|
|
|
self.windows['logs'][ev[2][0]].new_line(ev[2][1:])
|
2003-11-30 23:40:24 +01:00
|
|
|
return 1
|
2004-01-02 16:21:02 +01:00
|
|
|
|
2004-01-20 13:46:27 +01:00
|
|
|
def read_sleepy(self):
|
|
|
|
"""Check if we are idle"""
|
2004-03-11 22:14:09 +01:00
|
|
|
if self.sleeper and (self.config['autoaway'] or self.config['autoxa'])\
|
|
|
|
and (self.roster.optionmenu.get_history()==0 or \
|
2004-01-03 00:27:28 +01:00
|
|
|
self.sleeper_state!=common.sleepy.STATE_AWAKE):
|
2004-01-02 16:21:02 +01:00
|
|
|
self.sleeper.poll()
|
|
|
|
state = self.sleeper.getState()
|
|
|
|
if state != self.sleeper_state:
|
2004-01-03 00:27:28 +01:00
|
|
|
if state == common.sleepy.STATE_AWAKE:
|
2004-01-20 13:46:27 +01:00
|
|
|
#we go online
|
2004-03-11 22:14:09 +01:00
|
|
|
self.roster.optionmenu.set_history(0)
|
|
|
|
self.send('STATUS', None, ('online', ''))
|
2004-04-11 01:15:17 +02:00
|
|
|
elif state == common.sleepy.STATE_AWAY and self.config['autoaway']:
|
2004-01-20 13:46:27 +01:00
|
|
|
#we go away
|
2004-03-11 22:14:09 +01:00
|
|
|
self.roster.optionmenu.set_history(1)
|
|
|
|
self.send('STATUS', None, ('away', 'auto away (idle)'))
|
2004-04-11 01:15:17 +02:00
|
|
|
elif state == common.sleepy.STATE_XAWAY and self.config['autoxa']:
|
2004-04-22 14:31:20 +02:00
|
|
|
#we go extended away
|
2004-03-11 22:14:09 +01:00
|
|
|
self.roster.optionmenu.set_history(2)
|
|
|
|
self.send('STATUS',('xa', 'auto away (idel)'))
|
2004-01-02 16:21:02 +01:00
|
|
|
self.sleeper_state = state
|
|
|
|
return 1
|
2003-11-30 23:40:24 +01:00
|
|
|
|
|
|
|
def __init__(self, quIN, quOUT):
|
|
|
|
gtk.threads_init()
|
|
|
|
gtk.threads_enter()
|
|
|
|
self.queueIN = quIN
|
2004-03-11 22:14:09 +01:00
|
|
|
self.queueOUT = quOUT
|
|
|
|
self.send('ASK_CONFIG', None, ('GtkGui', 'GtkGui', {'autopopup':1,\
|
2004-02-25 01:33:06 +01:00
|
|
|
'showoffline':0,\
|
|
|
|
'autoaway':0,\
|
|
|
|
'autoawaytime':10,\
|
|
|
|
'autoxa':0,\
|
|
|
|
'autoxatime':20,\
|
|
|
|
'iconstyle':'sun',\
|
2004-03-01 02:39:12 +01:00
|
|
|
'inmsgcolor':'#ff0000',\
|
2004-02-25 01:33:06 +01:00
|
|
|
'outmsgcolor': '#0000ff',\
|
2004-03-11 22:14:09 +01:00
|
|
|
'statusmsgcolor':'#1eaa1e'}))
|
2004-01-24 21:32:51 +01:00
|
|
|
self.config = self.wait('CONFIG')
|
2004-03-11 22:14:09 +01:00
|
|
|
self.send('ASK_CONFIG', None, ('GtkGui', 'accounts'))
|
2004-01-24 21:32:51 +01:00
|
|
|
self.accounts = self.wait('CONFIG')
|
2004-04-05 00:09:56 +02:00
|
|
|
self.windows = {'logs':{}}
|
2004-03-16 16:39:36 +01:00
|
|
|
self.queues = {}
|
2004-03-16 19:53:49 +01:00
|
|
|
self.connected = {}
|
2004-04-22 14:31:20 +02:00
|
|
|
self.nicks = {}
|
2004-03-16 16:39:36 +01:00
|
|
|
for a in self.accounts.keys():
|
|
|
|
self.windows[a] = {}
|
2004-03-18 17:38:14 +01:00
|
|
|
self.windows[a]['infos'] = {}
|
|
|
|
self.windows[a]['chats'] = {}
|
2004-03-16 16:39:36 +01:00
|
|
|
self.queues[a] = {}
|
2004-03-16 19:53:49 +01:00
|
|
|
self.connected[a] = 0
|
2004-04-22 14:31:20 +02:00
|
|
|
self.nicks[a] = self.accounts[a]['name']
|
2004-03-11 22:14:09 +01:00
|
|
|
self.roster = roster_Window(self)
|
2004-04-17 21:38:43 +02:00
|
|
|
gtk.timeout_add(100, self.read_queue)
|
2004-01-02 16:21:02 +01:00
|
|
|
gtk.timeout_add(1000, self.read_sleepy)
|
|
|
|
self.sleeper = None
|
|
|
|
self.sleeper_state = None
|
2003-11-30 23:40:24 +01:00
|
|
|
gtk.main()
|
|
|
|
gtk.threads_leave()
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
plugin(None, None)
|
|
|
|
|
2004-05-17 01:47:14 +02:00
|
|
|
print _("plugin gtkgui loaded")
|