2004-05-15 18:50:38 +02:00
|
|
|
## plugins/config.py
|
|
|
|
##
|
|
|
|
## Gajim Team:
|
2005-01-07 22:52:38 +01:00
|
|
|
## - Yann Le Boulanger <asterix@lagaule.org>
|
2004-06-18 11:25:15 +02:00
|
|
|
## - Vincent Hanquez <tab@snarc.org>
|
2005-03-05 22:02:38 +01:00
|
|
|
## - Nikos Kouremenos <nkour@jabber.org>
|
|
|
|
## - Alex Podaras <bigpod@jabber.org>
|
2004-05-15 18:50:38 +02:00
|
|
|
##
|
2005-01-07 22:52:38 +01:00
|
|
|
## Copyright (C) 2003-2005 Gajim Team
|
2004-05-15 18:50:38 +02:00
|
|
|
##
|
|
|
|
## 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
|
2005-03-01 14:46:22 +01:00
|
|
|
import gtk.glade
|
|
|
|
import gobject
|
|
|
|
import os
|
2004-05-28 06:20:30 +02:00
|
|
|
import 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-05-15 18:50:38 +02:00
|
|
|
|
|
|
|
from dialogs import *
|
2004-06-21 19:06:43 +02:00
|
|
|
import gtkgui
|
2004-05-15 18:50:38 +02:00
|
|
|
|
|
|
|
GTKGUI_GLADE='plugins/gtkgui/gtkgui.glade'
|
|
|
|
|
|
|
|
|
2005-03-01 14:46:22 +01:00
|
|
|
class preferences_window:
|
2004-05-15 18:50:38 +02:00
|
|
|
"""Class for Preferences window"""
|
|
|
|
def delete_event(self, widget):
|
|
|
|
"""close window"""
|
|
|
|
del self.plugin.windows['preferences']
|
2005-03-06 16:14:34 +01:00
|
|
|
|
2005-03-08 15:08:46 +01:00
|
|
|
def on_tray_icon_checkbutton_toggled(self, widget):
|
|
|
|
"""On Tray Icon Checkbutton Toggled"""
|
2005-03-09 18:14:40 +01:00
|
|
|
if widget.get_active():
|
2005-03-08 15:08:46 +01:00
|
|
|
self.plugin.config['trayicon'] = 1
|
|
|
|
self.plugin.show_systray()
|
|
|
|
else:
|
|
|
|
self.plugin.config['trayicon'] = 0
|
|
|
|
self.plugin.hide_systray()
|
|
|
|
self.plugin.send('CONFIG', None, ('GtkGui', self.plugin.config, 'GtkGui'))
|
|
|
|
self.plugin.roster.draw_roster()
|
2005-03-06 16:14:34 +01:00
|
|
|
|
2005-03-08 15:08:46 +01:00
|
|
|
def on_save_position_checkbutton_toggled(self, widget):
|
|
|
|
"""On Save Position Checkbutton Toggled"""
|
|
|
|
if widget.get_active():
|
|
|
|
self.plugin.config['saveposition'] = 1
|
|
|
|
else:
|
|
|
|
self.plugin.config['saveposition'] = 0
|
|
|
|
|
|
|
|
def on_merge_checkbutton_toggled(self, widget):
|
|
|
|
"""On Merge Accounts Checkbutton Toggled"""
|
|
|
|
if widget.get_active():
|
|
|
|
self.plugin.config['mergeaccounts'] = 1
|
|
|
|
else:
|
|
|
|
self.plugin.config['mergeaccounts'] = 0
|
|
|
|
self.plugin.roster.regroup = self.plugin.config['mergeaccounts']
|
2005-03-06 16:14:34 +01:00
|
|
|
|
2005-03-08 15:08:46 +01:00
|
|
|
def on_iconstyle_combobox_changed(self, widget, path):
|
|
|
|
model = widget.get_model()
|
|
|
|
icon_string = model[path][0]
|
|
|
|
self.plugin.config['iconstyle'] = icon_string
|
|
|
|
self.plugin.roster.mkpixbufs()
|
|
|
|
|
2005-03-06 16:14:34 +01:00
|
|
|
def on_account_text_colorbutton_color_set(self, widget):
|
|
|
|
"""Take The Color For The Account Text"""
|
|
|
|
color = widget.get_color()
|
2005-03-08 15:08:46 +01:00
|
|
|
color_string = '#' + (hex(color.red) + '0')[2:4] + \
|
|
|
|
(hex(color.green) + '0')[2:4] + (hex(color.blue) + '0')[2:4]
|
2005-03-06 16:14:34 +01:00
|
|
|
self.plugin.config['accounttextcolor'] = color_string
|
2005-03-06 19:28:42 +01:00
|
|
|
self.plugin.roster.draw_roster()
|
2005-03-06 16:14:34 +01:00
|
|
|
|
|
|
|
def on_group_text_colorbutton_color_set(self, widget):
|
|
|
|
"""Take The Color For The Group Text"""
|
|
|
|
color = widget.get_color()
|
2005-03-08 15:08:46 +01:00
|
|
|
color_string = '#' + (hex(color.red) + '0')[2:4] + \
|
|
|
|
(hex(color.green) + '0')[2:4] + (hex(color.blue) + '0')[2:4]
|
2005-03-06 16:14:34 +01:00
|
|
|
self.plugin.config['grouptextcolor'] = color_string
|
2005-03-06 19:28:42 +01:00
|
|
|
self.plugin.roster.draw_roster()
|
2005-03-06 16:14:34 +01:00
|
|
|
|
|
|
|
def on_user_text_colorbutton_color_set(self, widget):
|
|
|
|
"""Take The Color For The User Text"""
|
|
|
|
color = widget.get_color()
|
2005-03-08 15:08:46 +01:00
|
|
|
color_string = '#' + (hex(color.red) + '0')[2:4] + \
|
|
|
|
(hex(color.green) + '0')[2:4] + (hex(color.blue) + '0')[2:4]
|
2005-03-06 16:14:34 +01:00
|
|
|
self.plugin.config['usertextcolor'] = color_string
|
2005-03-06 19:28:42 +01:00
|
|
|
self.plugin.roster.draw_roster()
|
2005-03-06 16:14:34 +01:00
|
|
|
|
|
|
|
def on_account_text_bg_colorbutton_color_set(self, widget):
|
|
|
|
"""Take The Color For The Background Of Account Text"""
|
|
|
|
color = widget.get_color()
|
2005-03-08 15:08:46 +01:00
|
|
|
color_string = '#' + (hex(color.red) + '0')[2:4] + \
|
|
|
|
(hex(color.green) + '0')[2:4] + (hex(color.blue) + '0')[2:4]
|
2005-03-06 16:14:34 +01:00
|
|
|
self.plugin.config['accountbgcolor'] = color_string
|
2005-03-06 19:28:42 +01:00
|
|
|
self.plugin.roster.draw_roster()
|
2005-03-06 16:14:34 +01:00
|
|
|
|
|
|
|
def on_group_text_bg_colorbutton_color_set(self, widget):
|
|
|
|
"""Take The Color For The Background Of Group Text"""
|
|
|
|
color = widget.get_color()
|
2005-03-08 15:08:46 +01:00
|
|
|
color_string = '#' + (hex(color.red) + '0')[2:4] + \
|
|
|
|
(hex(color.green) + '0')[2:4] + (hex(color.blue) + '0')[2:4]
|
2005-03-06 16:14:34 +01:00
|
|
|
self.plugin.config['groupbgcolor'] = color_string
|
2005-03-06 19:28:42 +01:00
|
|
|
self.plugin.roster.draw_roster()
|
2005-03-06 16:14:34 +01:00
|
|
|
|
|
|
|
def on_user_text_bg_colorbutton_color_set(self, widget):
|
|
|
|
"""Take The Color For The Background Of User Text"""
|
|
|
|
color = widget.get_color()
|
2005-03-08 15:08:46 +01:00
|
|
|
color_string = '#' + (hex(color.red) + '0')[2:4] + \
|
|
|
|
(hex(color.green) + '0')[2:4] + (hex(color.blue) + '0')[2:4]
|
2005-03-06 16:14:34 +01:00
|
|
|
self.plugin.config['userbgcolor'] = color_string
|
2005-03-06 19:28:42 +01:00
|
|
|
self.plugin.roster.draw_roster()
|
2005-03-06 16:14:34 +01:00
|
|
|
|
|
|
|
def on_account_text_fontbutton_font_set(self, widget):
|
|
|
|
"""Take The Font For The User Text"""
|
|
|
|
font_string = widget.get_font_name()
|
|
|
|
self.plugin.config['accountfont'] = font_string
|
2005-03-06 19:28:42 +01:00
|
|
|
self.plugin.roster.draw_roster()
|
2005-03-06 16:14:34 +01:00
|
|
|
|
|
|
|
def on_group_text_fontbutton_font_set(self, widget):
|
|
|
|
"""Take The Font For The Group Text"""
|
|
|
|
font_string = widget.get_font_name()
|
|
|
|
self.plugin.config['groupfont'] = font_string
|
2005-03-06 19:28:42 +01:00
|
|
|
self.plugin.roster.draw_roster()
|
2005-03-06 16:14:34 +01:00
|
|
|
|
|
|
|
def on_user_text_fontbutton_font_set(self, widget):
|
|
|
|
"""Take The Font For The User Text"""
|
|
|
|
font_string = widget.get_font_name()
|
|
|
|
self.plugin.config['userfont'] = font_string
|
2005-03-06 19:28:42 +01:00
|
|
|
self.plugin.roster.draw_roster()
|
2005-03-06 16:14:34 +01:00
|
|
|
|
2005-03-08 00:25:43 +01:00
|
|
|
def on_reset_colors_and_fonts_button_clicked(self, widget):
|
|
|
|
defaults = self.plugin.default_config
|
2005-03-06 20:30:32 +01:00
|
|
|
self.plugin.config['accounttextcolor'] = defaults['accounttextcolor']
|
|
|
|
self.plugin.config['grouptextcolor'] = defaults['grouptextcolor']
|
|
|
|
self.plugin.config['usertextcolor'] = defaults['usertextcolor']
|
|
|
|
self.plugin.config['accountbgcolor'] = defaults['accountbgcolor']
|
|
|
|
self.plugin.config['groupbgcolor'] = defaults['groupbgcolor']
|
|
|
|
self.plugin.config['userbgcolor'] = defaults['userbgcolor']
|
|
|
|
self.plugin.config['accountfont'] = defaults['accountfont']
|
|
|
|
self.plugin.config['groupfont'] = defaults['groupfont']
|
|
|
|
self.plugin.config['userfont'] = defaults['userfont']
|
|
|
|
self.xml.get_widget('account_text_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(defaults['accounttextcolor']))
|
|
|
|
self.xml.get_widget('group_text_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(defaults['grouptextcolor']))
|
|
|
|
self.xml.get_widget('user_text_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(defaults['usertextcolor']))
|
|
|
|
self.xml.get_widget('account_text_bg_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(defaults['accountbgcolor']))
|
|
|
|
self.xml.get_widget('group_text_bg_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(defaults['groupbgcolor']))
|
|
|
|
self.xml.get_widget('user_text_bg_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(defaults['userbgcolor']))
|
|
|
|
self.xml.get_widget('account_text_fontbutton').set_font_name(\
|
|
|
|
defaults['accountfont'])
|
|
|
|
self.xml.get_widget('group_text_fontbutton').set_font_name(\
|
|
|
|
defaults['groupfont'])
|
|
|
|
self.xml.get_widget('user_text_fontbutton').set_font_name(\
|
|
|
|
defaults['userfont'])
|
|
|
|
self.plugin.roster.draw_roster()
|
|
|
|
|
2005-03-08 15:08:46 +01:00
|
|
|
def on_use_tabbed_chat_window_checkbutton_toggled(self, widget):
|
|
|
|
"""On Use Tabbed Chat Window Checkbutton Toggled"""
|
|
|
|
if widget.get_active():
|
|
|
|
self.plugin.config['usetabbedchat'] = 1
|
|
|
|
#TODO: merge opened chat windows
|
|
|
|
else:
|
|
|
|
self.plugin.config['usetabbedchat'] = 0
|
|
|
|
#TODO: split the tabbed chat window
|
|
|
|
|
|
|
|
def update_text_tags(self):
|
|
|
|
"""Update Opened Chat Windows"""
|
|
|
|
for a in self.plugin.accounts.keys():
|
|
|
|
if self.plugin.windows[a]['chats'].has_key('tabbed'):
|
|
|
|
self.plugin.windows[a]['chats']['tabbed'].update_tags()
|
|
|
|
else:
|
|
|
|
for jid in self.plugin.windows[a]['chats'].keys():
|
|
|
|
self.plugin.windows[a]['chats'][jid].update_tags()
|
|
|
|
|
|
|
|
def update_print_time(self):
|
|
|
|
"""Update Opened Chat Windows"""
|
|
|
|
for a in self.plugin.accounts.keys():
|
|
|
|
if self.plugin.windows[a]['chats'].has_key('tabbed'):
|
|
|
|
self.plugin.windows[a]['chats']['tabbed'].update_print_time()
|
|
|
|
else:
|
|
|
|
for jid in self.plugin.windows[a]['chats'].keys():
|
|
|
|
self.plugin.windows[a]['chats'][jid].update_print_time()
|
|
|
|
|
|
|
|
def on_incoming_msg_colorbutton_color_set(self, widget):
|
|
|
|
"""Take The Color For The Incoming Messages"""
|
|
|
|
color = widget.get_color()
|
|
|
|
color_string = '#' + (hex(color.red) + '0')[2:4] + \
|
|
|
|
(hex(color.green) + '0')[2:4] + (hex(color.blue) + '0')[2:4]
|
|
|
|
self.plugin.config['inmsgcolor'] = color_string
|
|
|
|
self.update_text_tags()
|
|
|
|
|
|
|
|
def on_outgoing_msg_colorbutton_color_set(self, widget):
|
|
|
|
"""Take The Color For The Outgoing Messages"""
|
|
|
|
color = widget.get_color()
|
|
|
|
color_string = '#' + (hex(color.red) + '0')[2:4] + \
|
|
|
|
(hex(color.green) + '0')[2:4] + (hex(color.blue) + '0')[2:4]
|
|
|
|
self.plugin.config['outmsgcolor'] = color_string
|
|
|
|
self.update_text_tags()
|
|
|
|
|
|
|
|
def on_status_msg_colorbutton_color_set(self, widget):
|
|
|
|
"""Take The Color For The Status Messages"""
|
|
|
|
color = widget.get_color()
|
|
|
|
color_string = '#' + (hex(color.red) + '0')[2:4] + \
|
|
|
|
(hex(color.green) + '0')[2:4] + (hex(color.blue) + '0')[2:4]
|
|
|
|
self.plugin.config['statusmsgcolor'] = color_string
|
|
|
|
self.update_text_tags()
|
|
|
|
|
|
|
|
def on_reset_colors_button_clicked(self, widget):
|
|
|
|
defaults = self.plugin.default_config
|
|
|
|
self.plugin.config['inmsgcolor'] = defaults['inmsgcolor']
|
|
|
|
self.plugin.config['outmsgcolor'] = defaults['outmsgcolor']
|
|
|
|
self.plugin.config['statusmsgcolor'] = defaults['statusmsgcolor']
|
|
|
|
self.xml.get_widget('incoming_msg_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(defaults['inmsgcolor']))
|
|
|
|
self.xml.get_widget('outgoing_msg_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(defaults['outmsgcolor']))
|
|
|
|
self.xml.get_widget('status_msg_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(defaults['statusmsgcolor']))
|
|
|
|
self.update_text_tags()
|
|
|
|
|
|
|
|
def on_time_never_radiobutton_toggled(self, widget):
|
|
|
|
if widget.get_active():
|
|
|
|
self.plugin.config['print_time'] = 'never'
|
|
|
|
self.update_print_time()
|
|
|
|
|
|
|
|
def on_time_sometimes_radiobutton_toggled(self, widget):
|
|
|
|
if widget.get_active():
|
|
|
|
self.plugin.config['print_time'] = 'sometimes'
|
|
|
|
self.update_print_time()
|
|
|
|
|
|
|
|
def on_time_always_radiobutton_toggled(self, widget):
|
|
|
|
if widget.get_active():
|
|
|
|
self.plugin.config['print_time'] = 'always'
|
|
|
|
self.update_print_time()
|
|
|
|
|
2005-03-09 11:26:57 +01:00
|
|
|
def on_use_emoticons_checkbutton_toggled(self, widget):
|
|
|
|
self.on_checkbutton_toggled(widget, 'useemoticons',\
|
|
|
|
[self.xml.get_widget('button_new_emoticon'),\
|
|
|
|
self.xml.get_widget('button_remove_emoticon'),\
|
|
|
|
self.xml.get_widget('treeview_emoticons'),\
|
|
|
|
self.xml.get_widget('set_image_button'),\
|
|
|
|
self.xml.get_widget('emoticons_image')])
|
|
|
|
|
|
|
|
def on_emoticons_treemodel_row_deleted(self, model, path, iter):
|
2005-01-22 21:03:19 +01:00
|
|
|
iter = model.get_iter_first()
|
|
|
|
emots = []
|
|
|
|
while iter:
|
|
|
|
emots.append(model.get_value(iter, 0))
|
|
|
|
emots.append(model.get_value(iter, 1))
|
|
|
|
iter = model.iter_next(iter)
|
2005-03-05 22:02:38 +01:00
|
|
|
self.plugin.config['emoticons'] = '\t'.join(emots)
|
2005-03-06 22:43:35 +01:00
|
|
|
self.plugin.roster.mkemoticons()
|
2005-03-07 00:20:30 +01:00
|
|
|
|
2005-03-09 11:26:57 +01:00
|
|
|
def on_emoticons_treemodel_row_changed(self, model, path, iter):
|
2005-03-09 14:32:33 +01:00
|
|
|
if model[path][1] != None and len(model[path][1]) != 0:
|
|
|
|
iter = model.get_iter_first()
|
|
|
|
emots = []
|
|
|
|
while iter:
|
|
|
|
emots.append(model.get_value(iter, 0))
|
|
|
|
emots.append(model.get_value(iter, 1))
|
|
|
|
iter = model.iter_next(iter)
|
|
|
|
self.plugin.config['emoticons'] = '\t'.join(emots)
|
|
|
|
self.plugin.roster.mkemoticons()
|
2005-03-09 11:26:57 +01:00
|
|
|
|
|
|
|
def on_auto_pop_up_checkbox_toggled(self, widget):
|
|
|
|
self.on_checkbutton_toggled(widget, 'autopopup', None,\
|
|
|
|
[self.auto_pp_away_checkbutton])
|
|
|
|
|
|
|
|
def on_auto_pop_up_away_checkbox_toggled(self, widget):
|
|
|
|
self.on_checkbutton_toggled(widget, 'autopopupaway')
|
|
|
|
|
|
|
|
def on_soundplayer_entry_changed(self, widget):
|
|
|
|
self.plugin.config['soundplayer'] = widget.get_text()
|
|
|
|
|
2005-03-07 00:20:30 +01:00
|
|
|
def on_prompt_online_status_message_checkbutton_toggled(self, widget):
|
|
|
|
"""On Prompt Online Status Message Checkbutton Toggled"""
|
2005-03-09 11:26:57 +01:00
|
|
|
self.on_checkbutton_toggled(widget, 'ask_online_status')
|
2005-03-07 00:20:30 +01:00
|
|
|
|
|
|
|
def on_prompt_offline_status_message_checkbutton_toggled(self, widget):
|
|
|
|
"""On Prompt Offline Status Message Checkbutton Toggled"""
|
2005-03-09 11:26:57 +01:00
|
|
|
self.on_checkbutton_toggled(widget, 'ask_ofline_status')
|
2005-03-06 22:43:35 +01:00
|
|
|
|
2005-03-09 11:26:57 +01:00
|
|
|
def on_sounds_treemodel_row_changed(self, model, path, iter):
|
2005-02-10 01:07:55 +01:00
|
|
|
iter = model.get_iter_first()
|
|
|
|
while iter:
|
2005-02-14 23:30:04 +01:00
|
|
|
path = model.get_path(iter)
|
2005-03-09 11:26:57 +01:00
|
|
|
sound_event = model.get_value(iter, 0)
|
2005-02-14 23:30:04 +01:00
|
|
|
if model[path][1]:
|
2005-03-09 11:26:57 +01:00
|
|
|
self.plugin.config['sound_' + sound_event] = 1
|
2005-02-14 23:30:04 +01:00
|
|
|
else:
|
2005-03-09 11:26:57 +01:00
|
|
|
self.plugin.config['sound_' + sound_event] = 0
|
|
|
|
self.plugin.config['sound_' + sound_event + '_file'] = \
|
2005-02-14 23:30:04 +01:00
|
|
|
model.get_value(iter, 2)
|
2005-02-10 01:07:55 +01:00
|
|
|
iter = model.iter_next(iter)
|
2005-03-09 11:26:57 +01:00
|
|
|
|
|
|
|
def on_auto_away_checkbutton_toggled(self, widget):
|
|
|
|
self.on_checkbutton_toggled(widget, 'autoaway', None,\
|
|
|
|
[self.auto_away_time_spinbutton])
|
|
|
|
|
|
|
|
def on_auto_away_time_spinbutton_value_changed(self, widget):
|
|
|
|
aat = widget.get_value_as_int()
|
2004-05-15 18:50:38 +02:00
|
|
|
self.plugin.config['autoawaytime'] = aat
|
2005-03-09 11:26:57 +01:00
|
|
|
self.plugin.sleeper = common.sleepy.Sleepy(\
|
|
|
|
self.plugin.config['autoawaytime']*60, \
|
|
|
|
self.plugin.config['autoxatime']*60)
|
|
|
|
|
|
|
|
def on_auto_xa_checkbutton_toggled(self, widget):
|
|
|
|
self.on_checkbutton_toggled(widget, 'autoxa', None,\
|
|
|
|
[self.auto_xa_time_spinbutton])
|
|
|
|
|
|
|
|
def on_auto_xa_time_spinbutton_value_changed(self, widget):
|
|
|
|
axt = widget.get_value_as_int()
|
2004-05-15 18:50:38 +02:00
|
|
|
self.plugin.config['autoxatime'] = axt
|
2004-10-21 00:53:15 +02:00
|
|
|
self.plugin.sleeper = common.sleepy.Sleepy(\
|
|
|
|
self.plugin.config['autoawaytime']*60, \
|
|
|
|
self.plugin.config['autoxatime']*60)
|
2005-03-09 11:26:57 +01:00
|
|
|
|
|
|
|
def on_msg_treemodel_row_changed(self, model, path, iter):
|
2004-10-26 00:02:16 +02:00
|
|
|
iter = model.get_iter_first()
|
|
|
|
i = 0
|
|
|
|
while iter:
|
|
|
|
self.plugin.config['msg%i_name' % i] = model.get_value(iter, 0)
|
|
|
|
self.plugin.config['msg%i' % i] = model.get_value(iter, 1)
|
|
|
|
iter = model.iter_next(iter)
|
|
|
|
i += 1
|
|
|
|
while self.plugin.config.has_key('msg%s_name' % i):
|
|
|
|
del self.plugin.config['msg%i_name' % i]
|
|
|
|
del self.plugin.config['msg%i' % i]
|
|
|
|
i += 1
|
2005-03-09 11:26:57 +01:00
|
|
|
|
|
|
|
def on_msg_treemodel_row_deleted(self, model, path, iter):
|
|
|
|
iter = model.get_iter_first()
|
|
|
|
i = 0
|
|
|
|
while iter:
|
|
|
|
self.plugin.config['msg%i_name' % i] = model.get_value(iter, 0)
|
|
|
|
self.plugin.config['msg%i' % i] = model.get_value(iter, 1)
|
|
|
|
iter = model.iter_next(iter)
|
|
|
|
i += 1
|
|
|
|
while self.plugin.config.has_key('msg%s_name' % i):
|
|
|
|
del self.plugin.config['msg%i_name' % i]
|
|
|
|
del self.plugin.config['msg%i' % i]
|
|
|
|
i += 1
|
|
|
|
|
|
|
|
def on_links_open_with_combobox_changed(self, widget):
|
|
|
|
if widget.get_active() == 2:
|
|
|
|
self.xml.get_widget('custom_apps_frame').set_sensitive(True)
|
|
|
|
self.plugin.config['openwith'] = 'custom'
|
|
|
|
else:
|
|
|
|
if widget.get_active() == 0:
|
|
|
|
self.plugin.config['openwith'] = 'gnome-open'
|
|
|
|
if widget.get_active() == 1:
|
|
|
|
self.plugin.config['openwith'] = 'kfmclient exec'
|
|
|
|
self.xml.get_widget('custom_apps_frame').set_sensitive(False)
|
|
|
|
|
|
|
|
def on_custom_browser_entry_changed(self, widget):
|
|
|
|
self.plugin.config['custombrowser'] = widget.get_text()
|
|
|
|
|
|
|
|
def on_custom_mail_client_entry_changed(self, widget):
|
|
|
|
self.plugin.config['custommailapp'] = widget.get_text()
|
|
|
|
|
|
|
|
def on_log_in_contact_checkbutton_toggled(self, widget):
|
|
|
|
if widget.get_active():
|
2004-11-04 02:03:17 +01:00
|
|
|
self.config_logger['lognotusr'] = 1
|
|
|
|
else:
|
|
|
|
self.config_logger['lognotusr'] = 0
|
2005-03-09 11:26:57 +01:00
|
|
|
self.plugin.send('CONFIG', None, ('Logger', self.config_logger, 'GtkGui'))
|
|
|
|
|
|
|
|
def on_log_in_extern_checkbutton_toggled(self, widget):
|
|
|
|
if widget.get_active():
|
2004-11-04 02:03:17 +01:00
|
|
|
self.config_logger['lognotsep'] = 1
|
|
|
|
else:
|
|
|
|
self.config_logger['lognotsep'] = 0
|
|
|
|
self.plugin.send('CONFIG', None, ('Logger', self.config_logger, 'GtkGui'))
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-03-06 16:14:34 +01:00
|
|
|
def on_close_button_clicked(self, widget):
|
|
|
|
"""When The close button is clicked"""
|
|
|
|
widget.get_toplevel().destroy()
|
2004-11-01 14:41:00 +01:00
|
|
|
|
2004-10-26 00:02:16 +02:00
|
|
|
def fill_msg_treeview(self):
|
|
|
|
i = 0
|
|
|
|
self.xml.get_widget('delete_msg_button').set_sensitive(False)
|
|
|
|
model = self.msg_tree.get_model()
|
|
|
|
model.clear()
|
|
|
|
while self.plugin.config.has_key('msg%s_name' % i):
|
|
|
|
iter = model.append()
|
|
|
|
model.set(iter, 0, self.plugin.config['msg%s_name' % i], 1, self.plugin.config['msg%s' % i])
|
|
|
|
i += 1
|
|
|
|
|
2005-02-10 01:07:55 +01:00
|
|
|
def on_msg_cell_edited(self, cell, row, new_text):
|
|
|
|
model = self.msg_tree.get_model()
|
|
|
|
iter = model.get_iter_from_string(row)
|
|
|
|
model.set_value(iter, 0, new_text)
|
|
|
|
|
|
|
|
def on_msg_treeview_cursor_changed(self, widget, data=None):
|
|
|
|
self.xml.get_widget('delete_msg_button').set_sensitive(True)
|
|
|
|
buf = self.xml.get_widget('msg_textview').get_buffer()
|
|
|
|
(model, iter) = self.msg_tree.get_selection().get_selected()
|
|
|
|
name = model.get_value(iter, 0)
|
|
|
|
msg = model.get_value(iter, 1)
|
|
|
|
buf.set_text(msg)
|
|
|
|
|
|
|
|
def on_new_msg_button_clicked(self, widget, data=None):
|
|
|
|
model = self.msg_tree.get_model()
|
|
|
|
iter = model.append()
|
|
|
|
model.set(iter, 0, 'msg', 1, 'message')
|
|
|
|
|
|
|
|
def on_delete_msg_button_clicked(self, widget, data=None):
|
|
|
|
(model, iter) = self.msg_tree.get_selection().get_selected()
|
|
|
|
buf = self.xml.get_widget('msg_textview').get_buffer()
|
|
|
|
model.remove(iter)
|
|
|
|
buf.set_text('')
|
|
|
|
self.xml.get_widget('delete_msg_button').set_sensitive(False)
|
|
|
|
|
|
|
|
def on_msg_textview_changed(self, widget, data=None):
|
|
|
|
(model, iter) = self.msg_tree.get_selection().get_selected()
|
|
|
|
if not iter:
|
|
|
|
return
|
|
|
|
buf = self.xml.get_widget('msg_textview').get_buffer()
|
|
|
|
first_iter, end_iter = buf.get_bounds()
|
|
|
|
name = model.get_value(iter, 0)
|
|
|
|
model.set_value(iter, 1, buf.get_text(first_iter, end_iter))
|
|
|
|
|
|
|
|
def on_msg_treeview_key_press_event(self, widget, event):
|
|
|
|
if event.keyval == gtk.keysyms.Delete:
|
|
|
|
self.on_delete_msg_button_clicked(widget)
|
|
|
|
|
2005-01-20 13:09:26 +01:00
|
|
|
def image_is_ok(self, image):
|
|
|
|
if not os.path.exists(image):
|
|
|
|
return 0
|
|
|
|
img = gtk.Image()
|
|
|
|
try:
|
|
|
|
img.set_from_file(image)
|
|
|
|
except:
|
|
|
|
return 0
|
|
|
|
if img.get_storage_type() == gtk.IMAGE_PIXBUF:
|
|
|
|
pix = img.get_pixbuf()
|
|
|
|
else:
|
|
|
|
return 0
|
|
|
|
if pix.get_width() > 24 or pix.get_height() > 24:
|
|
|
|
return 0
|
|
|
|
return 1
|
|
|
|
|
|
|
|
def load_emots(self):
|
|
|
|
emots = {}
|
2005-03-05 22:02:38 +01:00
|
|
|
split_line = self.plugin.config['emoticons'].split('\t')
|
2005-01-20 13:09:26 +01:00
|
|
|
for i in range(0, len(split_line)/2):
|
|
|
|
if not self.image_is_ok(split_line[2*i+1]):
|
|
|
|
continue
|
|
|
|
emots[split_line[2*i]] = split_line[2*i+1]
|
|
|
|
return emots
|
|
|
|
|
|
|
|
def fill_emot_treeview(self):
|
|
|
|
model = self.emot_tree.get_model()
|
|
|
|
model.clear()
|
|
|
|
emots = self.load_emots()
|
|
|
|
for i in emots:
|
2005-02-14 13:19:49 +01:00
|
|
|
file = emots[i]
|
|
|
|
iter = model.append((i, file, None))
|
|
|
|
if not os.path.exists(file):
|
|
|
|
continue
|
|
|
|
img = gtk.Image()
|
|
|
|
img.show()
|
|
|
|
if file.find('.gif') != -1:
|
|
|
|
pix = gtk.gdk.PixbufAnimation(file)
|
|
|
|
img.set_from_animation(pix)
|
|
|
|
else:
|
|
|
|
pix = gtk.gdk.pixbuf_new_from_file(file)
|
|
|
|
img.set_from_pixbuf(pix)
|
|
|
|
model.set(iter, 2, img)
|
2005-01-20 13:09:26 +01:00
|
|
|
|
|
|
|
def on_emot_cell_edited(self, cell, row, new_text):
|
|
|
|
model = self.emot_tree.get_model()
|
|
|
|
iter = model.get_iter_from_string(row)
|
|
|
|
model.set_value(iter, 0, new_text)
|
|
|
|
|
2005-03-06 02:58:42 +01:00
|
|
|
def on_set_image_button_clicked(self, widget, data=None):
|
2005-01-20 13:09:26 +01:00
|
|
|
(model, iter) = self.emot_tree.get_selection().get_selected()
|
|
|
|
if not iter:
|
|
|
|
return
|
|
|
|
file = model.get_value(iter, 1)
|
|
|
|
dialog = gtk.FileChooserDialog("Choose image",
|
|
|
|
None,
|
|
|
|
gtk.FILE_CHOOSER_ACTION_OPEN,
|
|
|
|
(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL,
|
|
|
|
gtk.STOCK_OPEN, gtk.RESPONSE_OK))
|
|
|
|
dialog.set_default_response(gtk.RESPONSE_OK)
|
|
|
|
filter = gtk.FileFilter()
|
|
|
|
filter.set_name("All files")
|
|
|
|
filter.add_pattern("*")
|
|
|
|
dialog.add_filter(filter)
|
|
|
|
|
|
|
|
filter = gtk.FileFilter()
|
|
|
|
filter.set_name("Images")
|
|
|
|
filter.add_mime_type("image/png")
|
|
|
|
filter.add_mime_type("image/jpeg")
|
|
|
|
filter.add_mime_type("image/gif")
|
|
|
|
filter.add_pattern("*.png")
|
|
|
|
filter.add_pattern("*.jpg")
|
|
|
|
filter.add_pattern("*.gif")
|
|
|
|
filter.add_pattern("*.tif")
|
|
|
|
filter.add_pattern("*.xpm")
|
|
|
|
dialog.add_filter(filter)
|
|
|
|
dialog.set_filter(filter)
|
|
|
|
|
|
|
|
file = os.path.join(os.getcwd(), file)
|
|
|
|
dialog.set_filename(file)
|
|
|
|
file = ''
|
|
|
|
ok = 0
|
|
|
|
while(ok == 0):
|
|
|
|
response = dialog.run()
|
|
|
|
if response == gtk.RESPONSE_OK:
|
|
|
|
file = dialog.get_filename()
|
|
|
|
if self.image_is_ok(file):
|
|
|
|
ok = 1
|
|
|
|
else:
|
|
|
|
ok = 1
|
|
|
|
dialog.destroy()
|
|
|
|
if file:
|
|
|
|
model.set_value(iter, 1, file)
|
2005-02-14 13:19:49 +01:00
|
|
|
img = gtk.Image()
|
|
|
|
img.show()
|
|
|
|
if file.find('.gif') != -1:
|
|
|
|
pix = gtk.gdk.PixbufAnimation(file)
|
|
|
|
img.set_from_animation(pix)
|
|
|
|
else:
|
|
|
|
pix = gtk.gdk.pixbuf_new_from_file(file)
|
|
|
|
img.set_from_pixbuf(pix)
|
|
|
|
model.set(iter, 2, img)
|
2005-01-20 13:09:26 +01:00
|
|
|
|
|
|
|
def on_button_new_emoticon_clicked(self, widget, data=None):
|
|
|
|
model = self.emot_tree.get_model()
|
|
|
|
iter = model.append()
|
|
|
|
model.set(iter, 0, 'smeiley', 1, '')
|
2005-02-14 13:19:49 +01:00
|
|
|
col = self.emot_tree.get_column(0)
|
|
|
|
self.emot_tree.set_cursor(model.get_path(iter), col, True)
|
2005-01-20 13:09:26 +01:00
|
|
|
|
|
|
|
def on_button_remove_emoticon_clicked(self, widget, data=None):
|
|
|
|
(model, iter) = self.emot_tree.get_selection().get_selected()
|
|
|
|
if not iter:
|
|
|
|
return
|
|
|
|
model.remove(iter)
|
2005-03-06 22:43:35 +01:00
|
|
|
|
|
|
|
def on_checkbutton_toggled(self, widget, config_name, \
|
|
|
|
extra_function = None, change_sensitivity_widgets = None):
|
|
|
|
if widget.get_active():
|
|
|
|
self.plugin.config[config_name] = 1
|
|
|
|
if extra_function != None:
|
|
|
|
apply(extra_function)
|
|
|
|
else:
|
|
|
|
self.plugin.config[config_name] = 0
|
|
|
|
if change_sensitivity_widgets != None:
|
|
|
|
for w in change_sensitivity_widgets:
|
|
|
|
w.set_sensitive(widget.get_active())
|
2004-10-26 00:02:16 +02:00
|
|
|
|
2005-02-02 22:16:24 +01:00
|
|
|
def on_treeview_emoticons_key_press_event(self, widget, event):
|
|
|
|
if event.keyval == gtk.keysyms.Delete:
|
|
|
|
self.on_button_remove_emoticon_clicked(widget)
|
|
|
|
|
2005-02-10 01:07:55 +01:00
|
|
|
def sound_is_ok(self, sound):
|
|
|
|
if not os.path.exists(sound):
|
|
|
|
return 0
|
|
|
|
return 1
|
|
|
|
|
2005-02-14 23:30:04 +01:00
|
|
|
def sound_toggled_cb(self, cell, path):
|
|
|
|
model = self.sound_tree.get_model()
|
|
|
|
model[path][1] = not model[path][1]
|
|
|
|
return
|
|
|
|
|
2005-02-10 01:07:55 +01:00
|
|
|
def fill_sound_treeview(self):
|
|
|
|
events = {}
|
2005-02-14 23:30:04 +01:00
|
|
|
#events = {name : [use_it, file], name2 : [., .], ...}
|
|
|
|
for key in self.plugin.config.keys():
|
|
|
|
if key.find('sound_') == 0:
|
|
|
|
if not self.plugin.config.has_key(key + '_file'):
|
|
|
|
continue
|
|
|
|
ev = key.replace('sound_', '')
|
|
|
|
events[ev] = [self.plugin.config[key], self.plugin.config[key + \
|
|
|
|
'_file']]
|
2005-02-10 01:07:55 +01:00
|
|
|
model = self.sound_tree.get_model()
|
|
|
|
model.clear()
|
2005-02-14 23:30:04 +01:00
|
|
|
for ev in events:
|
|
|
|
iter = model.append((ev, events[ev][0], events[ev][1]))
|
2005-02-10 01:07:55 +01:00
|
|
|
|
|
|
|
def on_treeview_sounds_cursor_changed(self, widget, data=None):
|
|
|
|
(model, iter) = self.sound_tree.get_selection().get_selected()
|
|
|
|
if not iter:
|
|
|
|
self.xml.get_widget('entry_sounds').set_text('')
|
|
|
|
return
|
2005-02-14 23:30:04 +01:00
|
|
|
str = model.get_value(iter, 2)
|
2005-02-10 01:07:55 +01:00
|
|
|
self.xml.get_widget('entry_sounds').set_text(str)
|
|
|
|
|
|
|
|
def on_button_sounds_clicked(self, widget, data=None):
|
|
|
|
(model, iter) = self.sound_tree.get_selection().get_selected()
|
|
|
|
if not iter:
|
|
|
|
return
|
2005-02-14 23:30:04 +01:00
|
|
|
file = model.get_value(iter, 2)
|
2005-02-10 01:07:55 +01:00
|
|
|
dialog = gtk.FileChooserDialog("Choose sound",
|
|
|
|
None,
|
|
|
|
gtk.FILE_CHOOSER_ACTION_OPEN,
|
|
|
|
(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL,
|
|
|
|
gtk.STOCK_OPEN, gtk.RESPONSE_OK))
|
|
|
|
dialog.set_default_response(gtk.RESPONSE_OK)
|
|
|
|
filter = gtk.FileFilter()
|
|
|
|
filter.set_name("All files")
|
|
|
|
filter.add_pattern("*")
|
|
|
|
dialog.add_filter(filter)
|
|
|
|
|
|
|
|
filter = gtk.FileFilter()
|
|
|
|
filter.set_name("Wav Sounds")
|
|
|
|
filter.add_pattern("*.wav")
|
|
|
|
dialog.add_filter(filter)
|
|
|
|
dialog.set_filter(filter)
|
|
|
|
|
|
|
|
file = os.path.join(os.getcwd(), file)
|
|
|
|
dialog.set_filename(file)
|
2005-02-14 23:30:04 +01:00
|
|
|
file = ''
|
2005-02-10 01:07:55 +01:00
|
|
|
ok = 0
|
|
|
|
while(ok == 0):
|
|
|
|
response = dialog.run()
|
|
|
|
if response == gtk.RESPONSE_OK:
|
|
|
|
file = dialog.get_filename()
|
|
|
|
if self.sound_is_ok(file):
|
|
|
|
ok = 1
|
|
|
|
else:
|
|
|
|
ok = 1
|
|
|
|
dialog.destroy()
|
|
|
|
if file:
|
|
|
|
self.xml.get_widget('entry_sounds').set_text(file)
|
2005-02-14 23:30:04 +01:00
|
|
|
model.set_value(iter, 2, file)
|
|
|
|
model.set_value(iter, 1, 1)
|
2005-03-05 01:31:39 +01:00
|
|
|
|
2004-05-15 18:50:38 +02:00
|
|
|
def __init__(self, plugin):
|
|
|
|
"""Initialize Preference window"""
|
2005-03-01 14:46:22 +01:00
|
|
|
self.xml = gtk.glade.XML(GTKGUI_GLADE, 'preferences_window', APP)
|
|
|
|
self.window = self.xml.get_widget('preferences_window')
|
2004-05-15 18:50:38 +02:00
|
|
|
self.plugin = plugin
|
2005-03-05 19:56:32 +01:00
|
|
|
self.xml.get_widget('emoticons_image').set_from_file(\
|
2005-01-18 11:17:03 +01:00
|
|
|
'plugins/gtkgui/pixmaps/smile.png')
|
2005-03-05 19:56:32 +01:00
|
|
|
self.iconstyle_combobox = self.xml.get_widget('iconstyle_combobox')
|
|
|
|
self.auto_pp_checkbutton = self.xml.get_widget('auto_pop_up_checkbutton')
|
|
|
|
self.auto_pp_away_checkbutton = self.xml.get_widget \
|
|
|
|
('auto_pop_up_away_checkbutton')
|
|
|
|
self.auto_away_checkbutton = self.xml.get_widget('auto_away_checkbutton')
|
|
|
|
self.auto_away_time_spinbutton = self.xml.get_widget \
|
|
|
|
('auto_away_time_spinbutton')
|
|
|
|
self.auto_xa_checkbutton = self.xml.get_widget('auto_xa_checkbutton')
|
|
|
|
self.auto_xa_time_spinbutton = self.xml.get_widget \
|
|
|
|
('auto_xa_time_spinbutton')
|
|
|
|
self.tray_icon_checkbutton = self.xml.get_widget('tray_icon_checkbutton')
|
2004-05-15 18:50:38 +02:00
|
|
|
self.notebook = self.xml.get_widget('preferences_notebook')
|
|
|
|
|
2005-03-08 15:08:46 +01:00
|
|
|
#trayicon
|
|
|
|
st = self.plugin.config['trayicon']
|
|
|
|
self.tray_icon_checkbutton.set_active(st)
|
|
|
|
if isinstance(self.plugin.systray, gtkgui.systrayDummy):
|
|
|
|
self.tray_icon_checkbutton.set_sensitive(False)
|
|
|
|
|
|
|
|
#Save position
|
|
|
|
st = self.plugin.config['saveposition']
|
|
|
|
self.xml.get_widget('save_position_checkbutton').set_active(st)
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-03-08 15:08:46 +01:00
|
|
|
#Merge accounts
|
|
|
|
st = self.plugin.config['mergeaccounts']
|
|
|
|
self.xml.get_widget('merge_checkbutton').set_active(st)
|
|
|
|
|
2004-05-15 18:50:38 +02:00
|
|
|
#iconStyle
|
|
|
|
list_style = os.listdir('plugins/gtkgui/icons/')
|
2005-03-06 17:20:33 +01:00
|
|
|
model = gtk.ListStore(gobject.TYPE_STRING)
|
|
|
|
self.iconstyle_combobox.set_model(model)
|
2005-03-06 19:28:42 +01:00
|
|
|
l = []
|
2004-05-15 18:50:38 +02:00
|
|
|
for i in list_style:
|
|
|
|
if i != 'CVS' and i[0] != '.':
|
2005-03-06 19:28:42 +01:00
|
|
|
l.append(i)
|
|
|
|
if l.count == 0:
|
|
|
|
l.append(' ')
|
|
|
|
for i in range(len(l)):
|
|
|
|
model.append([l[i]])
|
|
|
|
if self.plugin.config['iconstyle'] == l[i]:
|
|
|
|
self.iconstyle_combobox.set_active(i)
|
2004-10-13 23:46:10 +02:00
|
|
|
|
2005-03-08 15:08:46 +01:00
|
|
|
#Color for account text
|
|
|
|
colSt = self.plugin.config['accounttextcolor']
|
|
|
|
self.xml.get_widget('account_text_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(colSt))
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-03-08 15:08:46 +01:00
|
|
|
#Color for group text
|
|
|
|
colSt = self.plugin.config['grouptextcolor']
|
|
|
|
self.xml.get_widget('group_text_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(colSt))
|
|
|
|
|
|
|
|
#Color for user text
|
|
|
|
colSt = self.plugin.config['usertextcolor']
|
|
|
|
self.xml.get_widget('user_text_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(colSt))
|
|
|
|
|
|
|
|
#Color for background account
|
|
|
|
colSt = self.plugin.config['accountbgcolor']
|
|
|
|
self.xml.get_widget('account_text_bg_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(colSt))
|
|
|
|
|
|
|
|
#Color for background group
|
|
|
|
colSt = self.plugin.config['groupbgcolor']
|
|
|
|
self.xml.get_widget('group_text_bg_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(colSt))
|
|
|
|
|
|
|
|
#Color for background user
|
|
|
|
colSt = self.plugin.config['userbgcolor']
|
|
|
|
self.xml.get_widget('user_text_bg_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(colSt))
|
2005-01-18 11:17:03 +01:00
|
|
|
|
2005-03-08 15:08:46 +01:00
|
|
|
#font for account
|
|
|
|
fontStr = self.plugin.config['accountfont']
|
|
|
|
self.xml.get_widget('account_text_fontbutton').set_font_name(fontStr)
|
|
|
|
|
|
|
|
#font for group
|
|
|
|
fontStr = self.plugin.config['groupfont']
|
|
|
|
self.xml.get_widget('group_text_fontbutton').set_font_name(fontStr)
|
|
|
|
|
|
|
|
#font for account
|
|
|
|
fontStr = self.plugin.config['userfont']
|
|
|
|
self.xml.get_widget('user_text_fontbutton').set_font_name(fontStr)
|
|
|
|
|
2005-02-05 18:18:49 +01:00
|
|
|
#use tabbed chat window
|
|
|
|
st = self.plugin.config['usetabbedchat']
|
2005-03-06 16:14:34 +01:00
|
|
|
self.xml.get_widget('use_tabbed_chat_window_checkbutton').set_active(st)
|
2005-02-05 18:18:49 +01:00
|
|
|
|
2005-03-08 15:08:46 +01:00
|
|
|
#Color for incomming messages
|
|
|
|
colSt = self.plugin.config['inmsgcolor']
|
|
|
|
self.xml.get_widget('incoming_msg_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(colSt))
|
|
|
|
|
|
|
|
#Color for outgoing messages
|
|
|
|
colSt = self.plugin.config['outmsgcolor']
|
|
|
|
self.xml.get_widget('outgoing_msg_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(colSt))
|
|
|
|
|
|
|
|
#Color for status messages
|
|
|
|
colSt = self.plugin.config['statusmsgcolor']
|
|
|
|
self.xml.get_widget('status_msg_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(colSt))
|
|
|
|
|
|
|
|
#Print time
|
|
|
|
if self.plugin.config['print_time'] == 'never':
|
|
|
|
self.xml.get_widget('time_never_radiobutton').set_active(1)
|
|
|
|
elif self.plugin.config['print_time'] == 'sometimes':
|
|
|
|
self.xml.get_widget('time_sometimes_radiobutton').set_active(1)
|
|
|
|
else:
|
|
|
|
self.xml.get_widget('time_always_radiobutton').set_active(1)
|
|
|
|
|
2005-01-18 11:17:03 +01:00
|
|
|
#Use emoticons
|
|
|
|
st = self.plugin.config['useemoticons']
|
|
|
|
self.xml.get_widget('use_emoticons_checkbutton').set_active(st)
|
2005-01-20 13:09:26 +01:00
|
|
|
self.xml.get_widget('button_new_emoticon').set_sensitive(st)
|
|
|
|
self.xml.get_widget('button_remove_emoticon').set_sensitive(st)
|
|
|
|
self.xml.get_widget('treeview_emoticons').set_sensitive(st)
|
2005-03-06 02:58:42 +01:00
|
|
|
self.xml.get_widget('set_image_button').set_sensitive(st)
|
2005-01-20 13:09:26 +01:00
|
|
|
|
|
|
|
#emoticons
|
|
|
|
self.emot_tree = self.xml.get_widget('treeview_emoticons')
|
2005-02-14 13:19:49 +01:00
|
|
|
model = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING, gtk.Image)
|
2005-01-20 13:09:26 +01:00
|
|
|
self.emot_tree.set_model(model)
|
|
|
|
col = gtk.TreeViewColumn('name')
|
|
|
|
self.emot_tree.append_column(col)
|
|
|
|
renderer = gtk.CellRendererText()
|
|
|
|
renderer.connect('edited', self.on_emot_cell_edited)
|
|
|
|
renderer.set_property('editable', True)
|
|
|
|
col.pack_start(renderer, True)
|
|
|
|
col.set_attributes(renderer, text=0)
|
2005-02-14 13:19:49 +01:00
|
|
|
|
|
|
|
col = gtk.TreeViewColumn('Image')
|
|
|
|
self.emot_tree.append_column(col)
|
|
|
|
renderer = gtkgui.ImageCellRenderer()
|
|
|
|
col.pack_start(renderer, expand = False)
|
|
|
|
col.add_attribute(renderer, 'image', 2)
|
|
|
|
|
2005-01-20 13:09:26 +01:00
|
|
|
self.fill_emot_treeview()
|
2005-02-10 01:07:55 +01:00
|
|
|
|
2005-03-08 15:08:46 +01:00
|
|
|
#Autopopup
|
|
|
|
st = self.plugin.config['autopopup']
|
|
|
|
self.auto_pp_checkbutton.set_active(st)
|
|
|
|
|
|
|
|
#Autopopupaway
|
|
|
|
st = self.plugin.config['autopopupaway']
|
|
|
|
self.auto_pp_away_checkbutton.set_active(st)
|
|
|
|
self.auto_pp_away_checkbutton.set_sensitive(self.plugin.config['autopopup'])
|
|
|
|
|
2005-02-10 01:07:55 +01:00
|
|
|
#sound player
|
2005-03-09 11:26:57 +01:00
|
|
|
self.xml.get_widget('soundplayer_entry').set_text(\
|
2005-02-10 01:07:55 +01:00
|
|
|
self.plugin.config['soundplayer'])
|
|
|
|
|
|
|
|
#sounds
|
2005-03-09 11:26:57 +01:00
|
|
|
self.sound_tree = self.xml.get_widget('sounds_treeview')
|
2005-02-14 23:30:04 +01:00
|
|
|
model = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_BOOLEAN, \
|
|
|
|
gobject.TYPE_STRING)
|
2005-02-10 01:07:55 +01:00
|
|
|
self.sound_tree.set_model(model)
|
2005-02-14 23:30:04 +01:00
|
|
|
|
|
|
|
col = gtk.TreeViewColumn('Active')
|
|
|
|
self.sound_tree.append_column(col)
|
|
|
|
renderer = gtk.CellRendererToggle()
|
|
|
|
renderer.set_property('activatable', True)
|
|
|
|
renderer.connect("toggled", self.sound_toggled_cb)
|
|
|
|
col.pack_start(renderer)
|
|
|
|
col.set_attributes(renderer, active=1)
|
|
|
|
|
2005-02-10 01:07:55 +01:00
|
|
|
col = gtk.TreeViewColumn('Event')
|
|
|
|
self.sound_tree.append_column(col)
|
|
|
|
renderer = gtk.CellRendererText()
|
|
|
|
col.pack_start(renderer)
|
|
|
|
col.set_attributes(renderer, text=0)
|
2005-02-14 23:30:04 +01:00
|
|
|
|
2005-02-10 01:07:55 +01:00
|
|
|
col = gtk.TreeViewColumn('Sound')
|
|
|
|
self.sound_tree.append_column(col)
|
|
|
|
renderer = gtk.CellRendererText()
|
|
|
|
col.pack_start(renderer)
|
2005-02-14 23:30:04 +01:00
|
|
|
col.set_attributes(renderer, text=2)
|
2005-02-10 01:07:55 +01:00
|
|
|
self.fill_sound_treeview()
|
2005-02-16 01:24:36 +01:00
|
|
|
|
|
|
|
if not os.name == 'posix':
|
2005-03-09 11:26:57 +01:00
|
|
|
self.xml.get_widget('soundplayer_entry').set_sensitive(False)
|
2005-02-16 01:24:36 +01:00
|
|
|
self.sound_tree.set_sensitive(False)
|
2005-03-09 11:26:57 +01:00
|
|
|
self.xml.get_widget('sounds_entry').set_sensitive(False)
|
|
|
|
self.xml.get_widget('sounds_button').set_sensitive(False)
|
2005-01-17 14:43:15 +01:00
|
|
|
|
2004-05-15 18:50:38 +02:00
|
|
|
#Autoaway
|
2004-06-21 20:17:21 +02:00
|
|
|
st = self.plugin.config['autoaway']
|
2005-03-05 19:56:32 +01:00
|
|
|
self.auto_away_checkbutton.set_active(st)
|
2004-05-15 18:50:38 +02:00
|
|
|
|
|
|
|
#Autoawaytime
|
2004-06-21 20:17:21 +02:00
|
|
|
st = self.plugin.config['autoawaytime']
|
2005-03-05 19:56:32 +01:00
|
|
|
self.auto_away_time_spinbutton.set_value(st)
|
|
|
|
self.auto_away_time_spinbutton.set_sensitive(self.plugin.config['autoaway'])
|
2004-05-15 18:50:38 +02:00
|
|
|
|
|
|
|
#Autoxa
|
2004-06-21 20:17:21 +02:00
|
|
|
st = self.plugin.config['autoxa']
|
2005-03-05 19:56:32 +01:00
|
|
|
self.auto_xa_checkbutton.set_active(st)
|
2004-05-15 18:50:38 +02:00
|
|
|
|
|
|
|
#Autoxatime
|
2004-06-21 20:17:21 +02:00
|
|
|
st = self.plugin.config['autoxatime']
|
2005-03-05 19:56:32 +01:00
|
|
|
self.auto_xa_time_spinbutton.set_value(st)
|
|
|
|
self.auto_xa_time_spinbutton.set_sensitive(self.plugin.config['autoxa'])
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-03-08 15:08:46 +01:00
|
|
|
#ask_status when online / offline
|
|
|
|
st = self.plugin.config['ask_online_status']
|
|
|
|
self.xml.get_widget('prompt_online_status_message_checkbutton').\
|
|
|
|
set_active(st)
|
|
|
|
st = self.plugin.config['ask_offline_status']
|
|
|
|
self.xml.get_widget('prompt_offline_status_message_checkbutton').\
|
|
|
|
set_active(st)
|
|
|
|
|
2004-10-26 00:02:16 +02:00
|
|
|
#Status messages
|
|
|
|
self.msg_tree = self.xml.get_widget('msg_treeview')
|
|
|
|
model = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING)
|
|
|
|
self.msg_tree.set_model(model)
|
|
|
|
col = gtk.TreeViewColumn('name')
|
|
|
|
self.msg_tree.append_column(col)
|
|
|
|
renderer = gtk.CellRendererText()
|
|
|
|
col.pack_start(renderer, True)
|
|
|
|
col.set_attributes(renderer, text=0)
|
|
|
|
renderer.connect('edited', self.on_msg_cell_edited)
|
|
|
|
renderer.set_property('editable', True)
|
|
|
|
self.fill_msg_treeview()
|
2004-11-01 14:30:56 +01:00
|
|
|
buf = self.xml.get_widget('msg_textview').get_buffer()
|
|
|
|
buf.connect('changed', self.on_msg_textview_changed)
|
2004-10-26 00:02:16 +02:00
|
|
|
|
2004-11-04 02:03:17 +01:00
|
|
|
self.plugin.send('ASK_CONFIG', None, ('GtkGui', 'Logger', {'lognotsep':1,\
|
|
|
|
'lognotusr':1}))
|
|
|
|
self.config_logger = self.plugin.wait('CONFIG')
|
2005-03-05 01:31:39 +01:00
|
|
|
|
|
|
|
#open links with
|
|
|
|
self.links_open_with_combobox = self.xml.get_widget('links_open_with_combobox')
|
|
|
|
if self.plugin.config['openwith'] == 'gnome-open':
|
|
|
|
self.links_open_with_combobox.set_active(0)
|
|
|
|
elif self.plugin.config['openwith'] == 'kfmclient exec':
|
|
|
|
self.links_open_with_combobox.set_active(1)
|
|
|
|
elif self.plugin.config['openwith'] == 'custom':
|
|
|
|
self.links_open_with_combobox.set_active(2)
|
|
|
|
self.xml.get_widget('custom_apps_frame').set_sensitive(True)
|
2005-03-08 21:59:29 +01:00
|
|
|
self.xml.get_widget('custom_browser_entry').set_text(\
|
|
|
|
self.plugin.config['custombrowser'])
|
|
|
|
self.xml.get_widget('custom_mail_client_entry').set_text(\
|
|
|
|
self.plugin.config['custommailapp'])
|
2005-03-05 01:31:39 +01:00
|
|
|
|
2004-11-04 02:03:17 +01:00
|
|
|
#log presences in user file
|
|
|
|
st = self.config_logger['lognotusr']
|
2005-03-09 11:26:57 +01:00
|
|
|
self.xml.get_widget('log_in_contact_checkbutton').set_active(st)
|
2004-11-04 02:03:17 +01:00
|
|
|
|
|
|
|
#log presences in external file
|
|
|
|
st = self.config_logger['lognotsep']
|
2005-03-09 11:26:57 +01:00
|
|
|
self.xml.get_widget('log_in_extern_checkbutton').set_active(st)
|
2005-03-05 18:01:14 +01:00
|
|
|
|
2005-03-06 22:43:35 +01:00
|
|
|
self.emot_tree.get_model().connect('row-changed', \
|
2005-03-09 11:26:57 +01:00
|
|
|
self.on_emoticons_treemodel_row_changed)
|
|
|
|
self.emot_tree.get_model().connect('row-deleted', \
|
|
|
|
self.on_emoticons_treemodel_row_deleted)
|
|
|
|
self.sound_tree.get_model().connect('row-changed', \
|
|
|
|
self.on_sounds_treemodel_row_changed)
|
|
|
|
self.msg_tree.get_model().connect('row-changed', \
|
|
|
|
self.on_msg_treemodel_row_changed)
|
|
|
|
self.msg_tree.get_model().connect('row-deleted', \
|
|
|
|
self.on_msg_treemodel_row_deleted)
|
2005-03-06 22:43:35 +01:00
|
|
|
|
2005-03-05 18:01:14 +01:00
|
|
|
self.xml.signal_autoconnect(self)
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-03-07 18:01:56 +01:00
|
|
|
class Account_modification_window:
|
2004-05-15 18:50:38 +02:00
|
|
|
"""Class for account informations"""
|
2005-03-07 18:01:56 +01:00
|
|
|
def on_account_modification_window_destroy(self, widget):
|
2004-05-15 18:50:38 +02:00
|
|
|
"""close window"""
|
2005-03-07 18:01:56 +01:00
|
|
|
del self.plugin.windows['account_modification_window']
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-02-28 23:09:21 +01:00
|
|
|
def on_close_button_clicked(self, widget):
|
2004-05-15 18:50:38 +02:00
|
|
|
"""When Close button is clicked"""
|
|
|
|
widget.get_toplevel().destroy()
|
|
|
|
|
|
|
|
def init_account(self, infos):
|
|
|
|
"""Initialize window with defaults values"""
|
2004-10-10 20:44:38 +02:00
|
|
|
if infos.has_key('accname'):
|
2005-02-28 23:09:21 +01:00
|
|
|
self.xml.get_widget('name_entry').set_text(infos['accname'])
|
2004-05-15 18:50:38 +02:00
|
|
|
if infos.has_key('jid'):
|
2005-02-28 23:09:21 +01:00
|
|
|
self.xml.get_widget('jid_entry').set_text(infos['jid'])
|
2004-11-01 14:41:00 +01:00
|
|
|
if infos.has_key('savepass'):
|
2005-02-28 23:09:21 +01:00
|
|
|
self.xml.get_widget('save_password_checkbutton').set_active(\
|
2004-11-01 14:41:00 +01:00
|
|
|
infos['savepass'])
|
|
|
|
if infos['savepass']:
|
2005-02-28 23:09:21 +01:00
|
|
|
password_entry = self.xml.get_widget('password_entry')
|
|
|
|
password_entry.set_sensitive(True)
|
2004-11-01 14:41:00 +01:00
|
|
|
if infos.has_key('password'):
|
2005-02-28 23:09:21 +01:00
|
|
|
password_entry.set_text(infos['password'])
|
2005-03-07 18:01:56 +01:00
|
|
|
if infos.has_key('resource'):
|
|
|
|
self.xml.get_widget('resource_entry').set_text(infos['resource'])
|
2004-06-06 17:54:30 +02:00
|
|
|
if infos.has_key('priority'):
|
2005-03-07 18:01:56 +01:00
|
|
|
self.xml.get_widget('priority_spinbutton').set_value(infos['priority'])
|
2004-05-15 18:50:38 +02:00
|
|
|
if infos.has_key('use_proxy'):
|
2005-02-28 23:09:21 +01:00
|
|
|
self.xml.get_widget('use_proxy_checkbutton').\
|
|
|
|
set_active(infos['use_proxy'])
|
2004-05-15 18:50:38 +02:00
|
|
|
if infos.has_key('proxyhost'):
|
2005-02-28 23:09:21 +01:00
|
|
|
self.xml.get_widget('proxyhost_entry').set_text(infos['proxyhost'])
|
2004-05-15 18:50:38 +02:00
|
|
|
if infos.has_key('proxyport'):
|
2005-02-28 23:09:21 +01:00
|
|
|
self.xml.get_widget('proxyport_entry').set_text(str(\
|
2004-06-06 21:35:10 +02:00
|
|
|
infos['proxyport']))
|
2005-02-28 23:09:21 +01:00
|
|
|
gpg_key_label = self.xml.get_widget('gpg_key_label')
|
2004-11-01 15:11:22 +01:00
|
|
|
if not self.plugin.config.has_key('usegpg'):
|
2005-02-28 23:09:21 +01:00
|
|
|
gpg_key_label.set_text('GPG is not usable on this computer')
|
|
|
|
self.xml.get_widget('gpg_choose_button').set_sensitive(False)
|
2004-11-01 15:11:22 +01:00
|
|
|
if infos.has_key('keyid') and self.plugin.config.has_key('usegpg'):
|
|
|
|
if infos['keyid'] and self.plugin.config['usegpg']:
|
2005-02-28 23:09:21 +01:00
|
|
|
gpg_key_label.set_text(infos['keyid'])
|
2004-10-10 20:44:38 +02:00
|
|
|
if infos.has_key('keyname'):
|
|
|
|
self.xml.get_widget('gpg_name_label').set_text(infos['keyname'])
|
2005-02-28 23:09:21 +01:00
|
|
|
gpg_save_password_checkbutton = \
|
|
|
|
self.xml.get_widget('gpg_save_password_checkbutton')
|
|
|
|
gpg_save_password_checkbutton.set_sensitive(True)
|
2004-10-10 20:44:38 +02:00
|
|
|
if infos.has_key('savegpgpass'):
|
2005-02-28 23:09:21 +01:00
|
|
|
gpg_save_password_checkbutton.set_active(infos['savegpgpass'])
|
2004-10-11 18:42:56 +02:00
|
|
|
if infos['savegpgpass']:
|
2005-02-28 23:09:21 +01:00
|
|
|
gpg_password_entry = self.xml.get_widget('gpg_password_entry')
|
|
|
|
gpg_password_entry.set_sensitive(True)
|
2005-01-06 13:44:50 +01:00
|
|
|
if infos.has_key('gpgpassword'):
|
2005-02-28 23:09:21 +01:00
|
|
|
gpg_password_entry.set_text(infos['gpgpassword'])
|
2004-11-01 14:41:00 +01:00
|
|
|
if infos.has_key('autoconnect'):
|
2005-02-28 23:09:21 +01:00
|
|
|
self.xml.get_widget('autoconnect_checkbutton').set_active(\
|
2004-11-01 14:41:00 +01:00
|
|
|
infos['autoconnect'])
|
2005-03-06 20:19:21 +01:00
|
|
|
if infos.has_key('no_log_for'):
|
|
|
|
list_no_log_for = infos['no_log_for'].split()
|
|
|
|
if infos['accname'] in list_no_log_for:
|
|
|
|
self.xml.get_widget('log_history_checkbutton').set_active(0)
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-02-28 23:09:21 +01:00
|
|
|
def on_save_button_clicked(self, widget):
|
2004-05-15 18:50:38 +02:00
|
|
|
"""When save button is clicked : Save informations in config file"""
|
2005-02-28 23:09:21 +01:00
|
|
|
save_password = 0
|
|
|
|
if self.xml.get_widget('save_password_checkbutton').get_active():
|
|
|
|
save_password = 1
|
|
|
|
password = self.xml.get_widget('password_entry').get_text()
|
2005-03-07 18:01:56 +01:00
|
|
|
resource = self.xml.get_widget('resource_entry').get_text()
|
|
|
|
priority = self.xml.get_widget('priority_spinbutton').get_value_as_int()
|
2005-02-28 23:09:21 +01:00
|
|
|
new_account_checkbutton = self.xml.get_widget('new_account_checkbutton')
|
|
|
|
name = self.xml.get_widget('name_entry').get_text()
|
|
|
|
jid = self.xml.get_widget('jid_entry').get_text()
|
2004-11-01 14:41:00 +01:00
|
|
|
autoconnect = 0
|
2005-02-28 23:09:21 +01:00
|
|
|
if self.xml.get_widget('autoconnect_checkbutton').get_active():
|
2004-11-01 14:41:00 +01:00
|
|
|
autoconnect = 1
|
2005-03-06 20:19:21 +01:00
|
|
|
|
|
|
|
if not self.infos.has_key('no_log_for'):
|
|
|
|
self.infos['no_log_for'] = ''
|
|
|
|
list_no_log_for = self.infos['no_log_for'].split()
|
|
|
|
if self.account in list_no_log_for:
|
|
|
|
list_no_log_for.remove(self.account)
|
|
|
|
if not self.xml.get_widget('log_history_checkbutton').get_active():
|
|
|
|
list_no_log_for.append(name)
|
|
|
|
self.infos['no_log_for'] = ' '.join(list_no_log_for)
|
|
|
|
|
2005-03-07 21:41:28 +01:00
|
|
|
use_proxy = 0
|
|
|
|
if self.xml.get_widget('use_proxy_checkbutton').get_active():
|
2005-02-28 23:09:21 +01:00
|
|
|
use_proxy = 1
|
|
|
|
proxyhost = self.xml.get_widget('proxyhost_entry').get_text()
|
|
|
|
proxyport = self.xml.get_widget('proxyport_entry').get_text()
|
2004-05-15 18:50:38 +02:00
|
|
|
if (name == ''):
|
2005-03-05 22:02:38 +01:00
|
|
|
Warning_dialog(_('You must enter a name for this account'))
|
2004-05-15 18:50:38 +02:00
|
|
|
return 0
|
2004-05-15 18:52:07 +02:00
|
|
|
if name.find(' ') != -1:
|
2005-03-05 22:02:38 +01:00
|
|
|
Warning_dialog(_('Spaces are not permited in account name'))
|
2004-05-15 18:52:07 +02:00
|
|
|
return 0
|
2005-03-05 22:02:38 +01:00
|
|
|
if (jid == '') or (jid.count('@') != 1):
|
|
|
|
Warning_dialog(_('You must enter a Jabber ID for this account\nFor example: someone@someserver.org'))
|
2004-05-15 18:50:38 +02:00
|
|
|
return 0
|
2005-02-28 23:09:21 +01:00
|
|
|
if new_account_checkbutton.get_active() and password == '':
|
2005-03-05 22:02:38 +01:00
|
|
|
Warning_dialog(_('You must enter a password to register a new account'))
|
2005-02-24 23:16:21 +01:00
|
|
|
return 0
|
2005-02-28 23:09:21 +01:00
|
|
|
if use_proxy:
|
|
|
|
if proxyport != '':
|
2004-07-01 21:49:26 +02:00
|
|
|
try:
|
2005-03-05 22:02:38 +01:00
|
|
|
proxyport = int(proxyport)
|
2004-07-01 21:49:26 +02:00
|
|
|
except ValueError:
|
2005-03-05 22:02:38 +01:00
|
|
|
Warning_dialog(_('Proxy Port must be a port number'))
|
2004-07-01 21:49:26 +02:00
|
|
|
return 0
|
2005-02-28 23:09:21 +01:00
|
|
|
if proxyhost == '':
|
2005-03-05 22:02:38 +01:00
|
|
|
Warning_dialog(_('You must enter a proxy host to use proxy'))
|
2005-03-07 18:01:56 +01:00
|
|
|
'''FIXME: REMOVE THIS IF we're ok
|
2005-02-28 23:09:21 +01:00
|
|
|
if priority != '':
|
2004-06-06 17:54:30 +02:00
|
|
|
try:
|
2005-03-05 22:02:38 +01:00
|
|
|
priority = int(priority)
|
2004-06-06 17:54:30 +02:00
|
|
|
except ValueError:
|
2005-03-05 22:02:38 +01:00
|
|
|
Warning_dialog(_('Priority must be a number'))
|
2004-06-06 17:54:30 +02:00
|
|
|
return 0
|
2005-03-07 18:01:56 +01:00
|
|
|
'''
|
2005-03-05 22:02:38 +01:00
|
|
|
(login, hostname) = jid.split('@')
|
2005-02-28 23:09:21 +01:00
|
|
|
key_name = self.xml.get_widget('gpg_name_label').get_text()
|
|
|
|
if key_name == '': #no key selected
|
2004-10-10 20:44:38 +02:00
|
|
|
keyID = ''
|
2005-02-28 23:09:21 +01:00
|
|
|
save_gpg_password = 0
|
|
|
|
gpg_password = ''
|
2004-10-10 20:44:38 +02:00
|
|
|
else:
|
|
|
|
keyID = self.xml.get_widget('gpg_key_label').get_text()
|
2005-02-28 23:09:21 +01:00
|
|
|
save_gpg_password = 0
|
|
|
|
if self.xml.get_widget('gpg_save_password_checkbutton').get_active():
|
|
|
|
save_gpg_password = 1
|
|
|
|
gpg_password = self.xml.get_widget('gpg_password_entry').get_text()
|
2004-05-15 18:50:38 +02:00
|
|
|
#if we are modifying an account
|
|
|
|
if self.modify:
|
|
|
|
#if we modify the name of the account
|
|
|
|
if name != self.account:
|
|
|
|
#update variables
|
|
|
|
self.plugin.windows[name] = self.plugin.windows[self.account]
|
|
|
|
self.plugin.queues[name] = self.plugin.queues[self.account]
|
|
|
|
self.plugin.connected[name] = self.plugin.connected[self.account]
|
|
|
|
self.plugin.nicks[name] = self.plugin.nicks[self.account]
|
|
|
|
self.plugin.roster.groups[name] = \
|
|
|
|
self.plugin.roster.groups[self.account]
|
|
|
|
self.plugin.roster.contacts[name] = \
|
|
|
|
self.plugin.roster.contacts[self.account]
|
|
|
|
del self.plugin.windows[self.account]
|
|
|
|
del self.plugin.queues[self.account]
|
|
|
|
del self.plugin.connected[self.account]
|
|
|
|
del self.plugin.nicks[self.account]
|
|
|
|
del self.plugin.roster.groups[self.account]
|
|
|
|
del self.plugin.roster.contacts[self.account]
|
|
|
|
del self.plugin.accounts[self.account]
|
|
|
|
self.plugin.send('ACC_CHG', self.account, name)
|
2004-12-05 19:23:46 +01:00
|
|
|
active = 1
|
|
|
|
if self.plugin.accounts[self.account].has_key('active'):
|
|
|
|
active = self.plugin.accounts[self.account]['active']
|
2004-06-06 21:35:10 +02:00
|
|
|
self.plugin.accounts[name] = {'name': login, 'hostname': hostname,\
|
2005-02-28 23:09:21 +01:00
|
|
|
'savepass': save_password, 'password': password, \
|
2005-03-07 18:01:56 +01:00
|
|
|
'resource': resource, 'priority' : priority, \
|
2005-02-28 23:09:21 +01:00
|
|
|
'autoconnect': autoconnect, 'use_proxy': use_proxy, 'proxyhost': \
|
|
|
|
proxyhost, 'proxyport': proxyport, 'keyid': keyID, \
|
|
|
|
'keyname': key_name, 'savegpgpass': save_gpg_password, \
|
2005-03-06 20:19:21 +01:00
|
|
|
'gpgpassword': gpg_password, 'active': active, 'no_log_for': \
|
|
|
|
self.infos['no_log_for']}
|
2004-11-04 02:03:17 +01:00
|
|
|
self.plugin.send('CONFIG', None, ('accounts', self.plugin.accounts, \
|
|
|
|
'GtkGui'))
|
2005-02-28 23:09:21 +01:00
|
|
|
if save_password:
|
|
|
|
self.plugin.send('PASSPHRASE', name, password)
|
2004-06-06 21:35:10 +02:00
|
|
|
#refresh accounts window
|
2005-03-07 18:01:56 +01:00
|
|
|
if self.plugin.windows.has_key('accounts_window'):
|
|
|
|
self.plugin.windows['accounts_window'].init_accounts()
|
2004-06-06 21:35:10 +02:00
|
|
|
#refresh roster
|
|
|
|
self.plugin.roster.draw_roster()
|
|
|
|
widget.get_toplevel().destroy()
|
|
|
|
return
|
2004-05-15 18:50:38 +02:00
|
|
|
#if it's a new account
|
2004-10-10 20:44:38 +02:00
|
|
|
if name in self.plugin.accounts.keys():
|
2005-03-05 22:02:38 +01:00
|
|
|
Warning_dialog(_('An account already has this name'))
|
2004-10-10 20:44:38 +02:00
|
|
|
return
|
|
|
|
#if we neeed to register a new account
|
2005-02-28 23:09:21 +01:00
|
|
|
if new_account_checkbutton.get_active():
|
|
|
|
self.plugin.send('NEW_ACC', None, (hostname, login, password, name, \
|
2005-03-07 18:01:56 +01:00
|
|
|
resource, priority, use_proxy, proxyhost, proxyport))
|
2004-10-10 20:44:38 +02:00
|
|
|
return
|
2004-05-15 18:50:38 +02:00
|
|
|
self.plugin.accounts[name] = {'name': login, 'hostname': hostname,\
|
2005-03-07 18:01:56 +01:00
|
|
|
'savepass': save_password, 'password': password, 'resource': \
|
|
|
|
resource, 'priority' : priority, 'autoconnect': autoconnect, \
|
2005-02-28 23:09:21 +01:00
|
|
|
'use_proxy': use_proxy, 'proxyhost': proxyhost, \
|
|
|
|
'proxyport': proxyport, 'keyid': keyID, 'keyname': key_name, \
|
|
|
|
'savegpgpass': save_gpg_password, 'gpgpassword': gpg_password,\
|
2005-03-06 20:19:21 +01:00
|
|
|
'active': 1, 'no_log_for': self.infos['no_log_for']}
|
2004-11-04 02:03:17 +01:00
|
|
|
self.plugin.send('CONFIG', None, ('accounts', self.plugin.accounts, \
|
|
|
|
'GtkGui'))
|
2005-02-28 23:09:21 +01:00
|
|
|
if save_password:
|
|
|
|
self.plugin.send('PASSPHRASE', name, password)
|
2004-05-15 18:50:38 +02:00
|
|
|
#update variables
|
2004-10-21 17:12:46 +02:00
|
|
|
self.plugin.windows[name] = {'infos': {}, 'chats': {}, 'gc': {}}
|
2004-05-15 18:50:38 +02:00
|
|
|
self.plugin.queues[name] = {}
|
|
|
|
self.plugin.connected[name] = 0
|
|
|
|
self.plugin.roster.groups[name] = {}
|
|
|
|
self.plugin.roster.contacts[name] = {}
|
2004-07-17 17:31:47 +02:00
|
|
|
self.plugin.nicks[name] = login
|
2004-07-28 20:17:26 +02:00
|
|
|
self.plugin.sleeper_state[name] = 0
|
2004-05-15 18:50:38 +02:00
|
|
|
#refresh accounts window
|
2005-03-07 18:01:56 +01:00
|
|
|
if self.plugin.windows.has_key('accounts_window'):
|
|
|
|
self.plugin.windows['accounts_window'].init_accounts()
|
2004-05-15 18:50:38 +02:00
|
|
|
#refresh roster
|
|
|
|
self.plugin.roster.draw_roster()
|
|
|
|
widget.get_toplevel().destroy()
|
|
|
|
|
2005-03-04 14:10:00 +01:00
|
|
|
def on_change_password_button_clicked(self, widget):
|
|
|
|
dialog = Change_password_dialog(self.plugin, self.account)
|
|
|
|
new_password = dialog.run()
|
|
|
|
if new_password != -1:
|
|
|
|
self.plugin.send('CHANGE_PASSWORD', self.account,\
|
|
|
|
(new_password, self.plugin.nicks[self.account]))
|
|
|
|
if self.xml.get_widget('save_password_checkbutton').get_active():
|
|
|
|
self.xml.get_widget('password_entry').set_text(new_password)
|
|
|
|
|
2005-02-24 23:16:21 +01:00
|
|
|
def account_is_ok(self, acct):
|
|
|
|
"""When the account has been created with sucess"""
|
2005-02-28 23:09:21 +01:00
|
|
|
self.xml.get_widget('new_account_checkbutton').set_active(False)
|
2005-02-24 23:16:21 +01:00
|
|
|
self.modify = True
|
|
|
|
self.account = acct
|
2005-03-07 21:41:28 +01:00
|
|
|
jid = self.xml.get_widget('jid_entry').get_text()
|
|
|
|
(login, hostname) = jid.split('@')
|
|
|
|
save_password = 0
|
|
|
|
password = self.xml.get_widget('password_entry').get_text()
|
|
|
|
resource = self.xml.get_widget('resource_entry').get_text()
|
|
|
|
priority = self.xml.get_widget('priority_spinbutton').get_value_as_int()
|
|
|
|
autoconnect = 0
|
|
|
|
if self.xml.get_widget('autoconnect_checkbutton').get_active():
|
|
|
|
autoconnect = 1
|
|
|
|
use_proxy = 0
|
|
|
|
if self.xml.get_widget('use_proxy_checkbutton').get_active():
|
|
|
|
use_proxy = 1
|
|
|
|
proxyhost = self.xml.get_widget('proxyhost_entry').get_text()
|
|
|
|
proxyport = self.xml.get_widget('proxyport_entry').get_text()
|
|
|
|
key_name = self.xml.get_widget('gpg_name_label').get_text()
|
|
|
|
if self.xml.get_widget('save_password_checkbutton').get_active():
|
|
|
|
save_password = 1
|
|
|
|
if key_name == '': #no key selected
|
|
|
|
keyID = ''
|
|
|
|
save_gpg_password = 0
|
|
|
|
gpg_password = ''
|
|
|
|
else:
|
|
|
|
keyID = self.xml.get_widget('gpg_key_label').get_text()
|
|
|
|
save_gpg_password = 0
|
|
|
|
if self.xml.get_widget('gpg_save_password_checkbutton').get_active():
|
|
|
|
save_gpg_password = 1
|
|
|
|
gpg_password = self.xml.get_widget('gpg_password_entry').get_text()
|
|
|
|
no_log_for = ''
|
|
|
|
if self.xml.get_widget('log_history_checkbutton').get_active():
|
|
|
|
no_log_for = acct
|
|
|
|
self.plugin.accounts[acct] = {'name': login, 'hostname': hostname,\
|
|
|
|
'savepass': save_password, 'password': password, 'resource': \
|
|
|
|
resource, 'priority' : priority, 'autoconnect': autoconnect, \
|
|
|
|
'use_proxy': use_proxy, 'proxyhost': proxyhost, \
|
|
|
|
'proxyport': proxyport, 'keyid': keyID, 'keyname': key_name, \
|
|
|
|
'savegpgpass': save_gpg_password, 'gpgpassword': gpg_password,\
|
|
|
|
'active': 1, 'no_log_for': no_log_for}
|
|
|
|
self.plugin.send('CONFIG', None, ('accounts', self.plugin.accounts, \
|
|
|
|
'GtkGui'))
|
2005-02-24 23:16:21 +01:00
|
|
|
|
2005-02-28 23:09:21 +01:00
|
|
|
def on_edit_details_button_clicked(self, widget):
|
2005-03-07 22:03:48 +01:00
|
|
|
if not self.plugin.windows.has_key(self.account):
|
|
|
|
Warning_dialog(_('You must first create your account before editing your information'))
|
|
|
|
return
|
|
|
|
jid = self.xml.get_widget('jid_entry').get_text()
|
|
|
|
if not self.plugin.connected[self.account]:
|
|
|
|
Warning_dialog(_('You must be connected to edit your information'))
|
|
|
|
return
|
|
|
|
if not self.plugin.windows[self.account]['infos'].has_key('vcard'):
|
|
|
|
self.plugin.windows[self.account]['infos'][jid] = \
|
|
|
|
vcard_information_window(jid, self.plugin, self.account, True)
|
|
|
|
self.plugin.send('ASK_VCARD', self.account, jid)
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-02-28 23:09:21 +01:00
|
|
|
def on_gpg_choose_button_clicked(self, widget, data=None):
|
2005-03-02 14:04:47 +01:00
|
|
|
w = choose_gpg_key_dialog()
|
2004-10-10 20:44:38 +02:00
|
|
|
self.plugin.windows['gpg_keys'] = w
|
|
|
|
self.plugin.send('GPG_SECRETE_KEYS', None, ())
|
|
|
|
keyID = w.run()
|
|
|
|
if keyID == -1:
|
|
|
|
return
|
2005-02-28 23:09:21 +01:00
|
|
|
gpg_save_password_checkbutton = \
|
|
|
|
self.xml.get_widget('gpg_save_password_checkbutton')
|
|
|
|
gpg_key_label = self.xml.get_widget('gpg_key_label')
|
|
|
|
gpg_name_label = self.xml.get_widget('gpg_name_label')
|
2004-10-10 20:44:38 +02:00
|
|
|
if keyID[0] == 'None':
|
2005-02-28 23:09:21 +01:00
|
|
|
gpg_key_label.set_text(_('No key selected'))
|
|
|
|
gpg_name_label.set_text('')
|
|
|
|
gpg_save_password_checkbutton.set_sensitive(False)
|
|
|
|
self.xml.get_widget('gpg_password_entry').set_sensitive(False)
|
2004-10-10 20:44:38 +02:00
|
|
|
else:
|
2005-02-28 23:09:21 +01:00
|
|
|
gpg_key_label.set_text(keyID[0])
|
|
|
|
gpg_name_label.set_text(keyID[1])
|
|
|
|
gpg_save_password_checkbutton.set_sensitive(True)
|
|
|
|
gpg_save_password_checkbutton.set_active(False)
|
|
|
|
self.xml.get_widget('gpg_password_entry').set_text('')
|
2004-10-10 20:44:38 +02:00
|
|
|
|
2005-02-28 23:09:21 +01:00
|
|
|
def on_checkbutton_toggled(self, widget, widgets):
|
2004-11-01 14:41:00 +01:00
|
|
|
"""set or unset sensitivity of widgets when widget is toggled"""
|
|
|
|
for w in widgets:
|
|
|
|
w.set_sensitive(widget.get_active())
|
|
|
|
|
2005-02-28 23:09:21 +01:00
|
|
|
def on_checkbutton_toggled_and_clear(self, widget, widgets):
|
|
|
|
self.on_checkbutton_toggled(widget, widgets)
|
2004-11-01 14:41:00 +01:00
|
|
|
for w in widgets:
|
|
|
|
if not widget.get_active():
|
|
|
|
w.set_text('')
|
2004-10-10 20:44:38 +02:00
|
|
|
|
2005-02-28 23:09:21 +01:00
|
|
|
def on_gpg_save_password_checkbutton_toggled(self, widget):
|
|
|
|
self.on_checkbutton_toggled_and_clear(widget, [\
|
|
|
|
self.xml.get_widget('gpg_password_entry')])
|
|
|
|
|
|
|
|
def on_save_password_checkbutton_toggled(self, widget):
|
|
|
|
if self.xml.get_widget('new_account_checkbutton').get_active():
|
2005-02-24 23:16:21 +01:00
|
|
|
return
|
2005-02-28 23:09:21 +01:00
|
|
|
self.on_checkbutton_toggled_and_clear(widget, \
|
|
|
|
[self.xml.get_widget('password_entry')])
|
2005-02-24 23:16:21 +01:00
|
|
|
|
2005-02-28 23:09:21 +01:00
|
|
|
def on_new_account_checkbutton_toggled(self, widget):
|
|
|
|
password_entry = self.xml.get_widget('password_entry')
|
2005-02-16 01:16:00 +01:00
|
|
|
if widget.get_active():
|
2005-02-28 23:09:21 +01:00
|
|
|
password_entry.set_sensitive(True)
|
|
|
|
elif not self.xml.get_widget('save_password_checkbutton').get_active():
|
|
|
|
password_entry.set_sensitive(False)
|
|
|
|
password_entry.set_text('')
|
2005-02-16 01:16:00 +01:00
|
|
|
|
2005-03-07 18:01:56 +01:00
|
|
|
#infos must be a dictionnary
|
2004-05-15 18:50:38 +02:00
|
|
|
def __init__(self, plugin, infos = {}):
|
2005-03-07 18:01:56 +01:00
|
|
|
self.xml = gtk.glade.XML(GTKGUI_GLADE, 'account_modification_window', APP)
|
|
|
|
self.window = self.xml.get_widget('account_modification_window')
|
2004-05-15 18:50:38 +02:00
|
|
|
self.plugin = plugin
|
|
|
|
self.account = ''
|
|
|
|
self.modify = False
|
2005-03-06 20:19:21 +01:00
|
|
|
self.infos = infos
|
2004-10-10 20:44:38 +02:00
|
|
|
self.xml.get_widget('gpg_key_label').set_text('No key selected')
|
|
|
|
self.xml.get_widget('gpg_name_label').set_text('')
|
2005-02-28 23:09:21 +01:00
|
|
|
self.xml.get_widget('gpg_save_password_checkbutton').set_sensitive(False)
|
|
|
|
self.xml.get_widget('gpg_password_entry').set_sensitive(False)
|
|
|
|
self.xml.get_widget('password_entry').set_sensitive(False)
|
2005-03-06 20:19:21 +01:00
|
|
|
self.xml.get_widget('log_history_checkbutton').set_active(1)
|
2005-02-28 23:09:21 +01:00
|
|
|
self.xml.signal_autoconnect(self)
|
2005-02-16 01:16:00 +01:00
|
|
|
if infos:
|
|
|
|
self.modify = True
|
|
|
|
self.account = infos['accname']
|
|
|
|
self.init_account(infos)
|
2005-03-01 14:46:22 +01:00
|
|
|
self.xml.get_widget('new_account_checkbutton').set_sensitive(False)
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-03-07 18:01:56 +01:00
|
|
|
class Accounts_window:
|
2004-05-15 18:50:38 +02:00
|
|
|
"""Class for accounts window : lists of accounts"""
|
2005-03-07 18:01:56 +01:00
|
|
|
def on_accounts_window_destroy(self, widget):
|
2004-05-15 18:50:38 +02:00
|
|
|
"""close window"""
|
2005-03-07 18:01:56 +01:00
|
|
|
del self.plugin.windows['accounts_window']
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-03-01 19:00:34 +01:00
|
|
|
def on_close_button_clicked(self, widget):
|
2004-11-01 14:41:00 +01:00
|
|
|
"""When Close button is clicked"""
|
|
|
|
widget.get_toplevel().destroy()
|
2004-05-15 18:50:38 +02:00
|
|
|
|
|
|
|
def init_accounts(self):
|
|
|
|
"""initialize listStore with existing accounts"""
|
2005-03-01 19:00:34 +01:00
|
|
|
self.xml.get_widget('modify_button').set_sensitive(False)
|
|
|
|
self.xml.get_widget('delete_button').set_sensitive(False)
|
2005-02-28 18:45:06 +01:00
|
|
|
model = self.accounts_treeview.get_model()
|
2004-05-15 18:50:38 +02:00
|
|
|
model.clear()
|
|
|
|
for account in self.plugin.accounts:
|
2004-09-28 23:31:26 +02:00
|
|
|
activ = 1
|
2005-03-01 19:00:34 +01:00
|
|
|
if self.plugin.accounts[account].has_key('active'):
|
|
|
|
activ = self.plugin.accounts[account]['active']
|
2004-05-15 18:50:38 +02:00
|
|
|
iter = model.append()
|
|
|
|
model.set(iter, 0, account, 1, \
|
2005-03-01 19:00:34 +01:00
|
|
|
self.plugin.accounts[account]['hostname'], 2, activ)
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-03-01 19:27:21 +01:00
|
|
|
def on_accounts_treeview_cursor_changed(self, widget):
|
2004-05-15 18:50:38 +02:00
|
|
|
"""Activate delete and modify buttons when a row is selected"""
|
2005-03-02 13:05:56 +01:00
|
|
|
self.xml.get_widget('modify_button').set_sensitive(True)
|
|
|
|
self.xml.get_widget('delete_button').set_sensitive(True)
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-03-01 19:00:34 +01:00
|
|
|
def on_new_button_clicked(self, widget):
|
2004-05-15 18:50:38 +02:00
|
|
|
"""When new button is clicked : open an account information window"""
|
2005-03-07 18:01:56 +01:00
|
|
|
if not self.plugin.windows.has_key('account_modification_window'):
|
|
|
|
self.plugin.windows['account_modification_window'] = \
|
|
|
|
Account_modification_window(self.plugin)
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-03-01 19:00:34 +01:00
|
|
|
def on_delete_button_clicked(self, widget):
|
2004-05-15 18:50:38 +02:00
|
|
|
"""When delete button is clicked :
|
|
|
|
Remove an account from the listStore and from the config file"""
|
2005-02-28 18:45:06 +01:00
|
|
|
sel = self.accounts_treeview.get_selection()
|
2004-05-15 18:50:38 +02:00
|
|
|
(model, iter) = sel.get_selected()
|
|
|
|
account = model.get_value(iter, 0)
|
2005-03-07 12:14:29 +01:00
|
|
|
dialog = Confirmation_dialog(_('Are you sure you want to remove account (%s) ?') % account)
|
2005-03-01 20:02:51 +01:00
|
|
|
if dialog.get_response() == gtk.RESPONSE_YES:
|
2004-05-15 18:50:38 +02:00
|
|
|
if self.plugin.connected[account]:
|
|
|
|
self.plugin.send('STATUS', account, ('offline', 'offline'))
|
|
|
|
del self.plugin.accounts[account]
|
2004-11-04 02:03:17 +01:00
|
|
|
self.plugin.send('CONFIG', None, ('accounts', self.plugin.accounts, \
|
|
|
|
'GtkGui'))
|
2004-05-15 18:50:38 +02:00
|
|
|
del self.plugin.windows[account]
|
|
|
|
del self.plugin.queues[account]
|
|
|
|
del self.plugin.connected[account]
|
|
|
|
del self.plugin.roster.groups[account]
|
|
|
|
del self.plugin.roster.contacts[account]
|
|
|
|
self.plugin.roster.draw_roster()
|
|
|
|
self.init_accounts()
|
|
|
|
|
2005-03-01 19:00:34 +01:00
|
|
|
def on_modify_button_clicked(self, widget):
|
2004-05-15 18:50:38 +02:00
|
|
|
"""When modify button is clicked :
|
|
|
|
open the account information window for this account"""
|
2005-03-07 18:01:56 +01:00
|
|
|
if not self.plugin.windows.has_key('account_modification_window'):
|
2004-10-10 20:44:38 +02:00
|
|
|
# infos = {}
|
2005-02-28 18:45:06 +01:00
|
|
|
sel = self.accounts_treeview.get_selection()
|
2004-05-15 18:50:38 +02:00
|
|
|
(model, iter) = sel.get_selected()
|
|
|
|
account = model.get_value(iter, 0)
|
2004-10-10 20:44:38 +02:00
|
|
|
infos = self.plugin.accounts[account]
|
|
|
|
infos['accname'] = account
|
2005-03-02 13:05:56 +01:00
|
|
|
infos['jid'] = self.plugin.accounts[account]['name'] + \
|
|
|
|
'@' + self.plugin.accounts[account]['hostname']
|
2005-03-07 18:01:56 +01:00
|
|
|
self.plugin.windows['account_modification_window'] = \
|
|
|
|
Account_modification_window(self.plugin, infos)
|
2004-09-28 23:31:26 +02:00
|
|
|
|
|
|
|
def on_toggled(self, cell, path, model=None):
|
|
|
|
iter = model.get_iter(path)
|
|
|
|
model.set_value(iter, 2, not cell.get_active())
|
|
|
|
account = model.get_value(iter, 0)
|
|
|
|
if cell.get_active():
|
2005-03-02 13:05:56 +01:00
|
|
|
self.plugin.accounts[account]['active'] = 0
|
2004-09-28 23:31:26 +02:00
|
|
|
else:
|
2005-03-02 13:05:56 +01:00
|
|
|
self.plugin.accounts[account]['active'] = 1
|
2004-05-15 18:50:38 +02:00
|
|
|
|
|
|
|
def __init__(self, plugin):
|
|
|
|
self.plugin = plugin
|
2005-03-07 18:01:56 +01:00
|
|
|
self.xml = gtk.glade.XML(GTKGUI_GLADE, 'accounts_window', APP)
|
|
|
|
self.window = self.xml.get_widget('accounts_window')
|
2005-03-02 13:05:56 +01:00
|
|
|
self.accounts_treeview = self.xml.get_widget('accounts_treeview')
|
2004-09-28 23:31:26 +02:00
|
|
|
model = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING, \
|
|
|
|
gobject.TYPE_BOOLEAN)
|
2005-02-28 18:45:06 +01:00
|
|
|
self.accounts_treeview.set_model(model)
|
2004-05-15 18:50:38 +02:00
|
|
|
#columns
|
|
|
|
renderer = gtk.CellRendererText()
|
2005-02-28 18:45:06 +01:00
|
|
|
self.accounts_treeview.insert_column_with_attributes(-1, _('Name'), renderer, \
|
2004-09-28 23:31:26 +02:00
|
|
|
text=0)
|
2004-05-15 18:50:38 +02:00
|
|
|
renderer = gtk.CellRendererText()
|
2005-02-28 18:45:06 +01:00
|
|
|
self.accounts_treeview.insert_column_with_attributes(-1, _('Server'), \
|
2004-05-15 18:50:38 +02:00
|
|
|
renderer, text=1)
|
2004-09-28 23:31:26 +02:00
|
|
|
renderer = gtk.CellRendererToggle()
|
|
|
|
renderer.set_property('activatable', True)
|
|
|
|
renderer.connect('toggled', self.on_toggled, model)
|
2005-02-28 18:45:06 +01:00
|
|
|
self.accounts_treeview.insert_column_with_attributes(-1, _('Active'), \
|
2004-09-28 23:31:26 +02:00
|
|
|
renderer, active=2)
|
2005-03-01 19:00:34 +01:00
|
|
|
self.xml.signal_autoconnect(self)
|
2004-05-15 18:50:38 +02:00
|
|
|
self.init_accounts()
|
|
|
|
|
|
|
|
|
2005-03-02 14:04:47 +01:00
|
|
|
class agent_registration_window:
|
2004-05-15 18:50:38 +02:00
|
|
|
"""Class for agent registration window :
|
|
|
|
window that appears when we want to subscribe to an agent"""
|
2005-03-02 14:11:21 +01:00
|
|
|
def on_cancel_button_clicked(self, widget):
|
2004-05-15 18:50:38 +02:00
|
|
|
"""When Cancel button is clicked"""
|
|
|
|
widget.get_toplevel().destroy()
|
|
|
|
|
|
|
|
def draw_table(self):
|
|
|
|
"""Draw the table in the window"""
|
|
|
|
nbrow = 0
|
|
|
|
table = self.xml.get_widget('table')
|
|
|
|
for name in self.infos.keys():
|
|
|
|
if name != 'key' and name != 'instructions' and name != 'x':
|
|
|
|
nbrow = nbrow + 1
|
|
|
|
table.resize(rows=nbrow, columns=2)
|
|
|
|
label = gtk.Label(name)
|
|
|
|
table.attach(label, 0, 1, nbrow-1, nbrow, 0, 0, 0, 0)
|
|
|
|
entry = gtk.Entry()
|
|
|
|
entry.set_text(self.infos[name])
|
|
|
|
table.attach(entry, 1, 2, nbrow-1, nbrow, 0, 0, 0, 0)
|
|
|
|
self.entries[name] = entry
|
|
|
|
if nbrow == 1:
|
|
|
|
entry.grab_focus()
|
|
|
|
table.show_all()
|
|
|
|
|
2005-03-02 14:11:21 +01:00
|
|
|
def on_ok_button_clicked(self, widget):
|
2004-05-15 18:50:38 +02:00
|
|
|
"""When Ok button is clicked :
|
|
|
|
send registration info to the core"""
|
|
|
|
for name in self.entries.keys():
|
|
|
|
self.infos[name] = self.entries[name].get_text()
|
2005-03-02 21:27:09 +01:00
|
|
|
user1 = gtkgui.User(self.agent, self.agent, ['Agents'], 'offline', \
|
2005-03-02 14:11:21 +01:00
|
|
|
'offline', 'from', '', '', 0, '')
|
2004-06-21 19:06:43 +02:00
|
|
|
self.plugin.roster.contacts[self.account][self.agent] = [user1]
|
|
|
|
self.plugin.roster.add_user_to_roster(self.agent, self.account)
|
2004-05-15 18:50:38 +02:00
|
|
|
self.plugin.send('REG_AGENT', self.account, self.agent)
|
|
|
|
widget.get_toplevel().destroy()
|
|
|
|
|
|
|
|
def __init__(self, agent, infos, plugin, account):
|
2005-03-02 14:11:21 +01:00
|
|
|
self.xml = gtk.glade.XML(GTKGUI_GLADE, 'agent_registration_window', APP)
|
2004-05-15 18:50:38 +02:00
|
|
|
self.agent = agent
|
|
|
|
self.infos = infos
|
|
|
|
self.plugin = plugin
|
|
|
|
self.account = account
|
2005-03-02 14:11:21 +01:00
|
|
|
window = self.xml.get_widget('agent_registration_window')
|
|
|
|
window.set_title(_('Register to %s') % agent)
|
2004-05-15 18:50:38 +02:00
|
|
|
self.xml.get_widget('label').set_text(infos['instructions'])
|
|
|
|
self.entries = {}
|
|
|
|
self.draw_table()
|
2005-03-02 14:11:21 +01:00
|
|
|
self.xml.signal_autoconnect(self)
|
2004-05-15 18:50:38 +02:00
|
|
|
|
|
|
|
|
2005-03-01 19:27:21 +01:00
|
|
|
class agent_browser_window:
|
2004-05-15 18:50:38 +02:00
|
|
|
"""Class for bowser agent window :
|
|
|
|
to know the agents on the selected server"""
|
2005-03-01 19:27:21 +01:00
|
|
|
def on_agent_browser_window_destroy(self, widget):
|
2004-05-15 18:50:38 +02:00
|
|
|
"""close window"""
|
|
|
|
del self.plugin.windows[self.account]['browser']
|
|
|
|
|
2005-03-01 19:27:21 +01:00
|
|
|
def on_close_button_clicked(self, widget):
|
2004-05-15 18:50:38 +02:00
|
|
|
"""When Close button is clicked"""
|
|
|
|
widget.get_toplevel().destroy()
|
|
|
|
|
|
|
|
def browse(self):
|
|
|
|
"""Send a request to the core to know the available agents"""
|
|
|
|
self.plugin.send('REQ_AGENTS', self.account, None)
|
|
|
|
|
|
|
|
def agents(self, agents):
|
|
|
|
"""When list of available agent arrive :
|
|
|
|
Fill the treeview with it"""
|
2005-03-01 19:27:21 +01:00
|
|
|
model = self.agents_treeview.get_model()
|
2004-09-06 16:55:10 +02:00
|
|
|
for agent in agents:
|
|
|
|
iter = model.append(None, (agent['name'], agent['jid']))
|
|
|
|
self.agent_infos[agent['jid']] = {'features' : []}
|
|
|
|
|
|
|
|
def agent_info(self, agent, identities, features, items):
|
|
|
|
"""When we recieve informations about an agent"""
|
2005-03-01 19:27:21 +01:00
|
|
|
model = self.agents_treeview.get_model()
|
2004-09-06 16:55:10 +02:00
|
|
|
iter = model.get_iter_root()
|
2004-11-15 20:23:43 +01:00
|
|
|
expand = 0
|
|
|
|
while (iter):
|
2004-09-06 16:55:10 +02:00
|
|
|
if agent == model.get_value(iter, 1):
|
|
|
|
break
|
|
|
|
if model.iter_has_child(iter):
|
|
|
|
iter = model.iter_children(iter)
|
|
|
|
else:
|
|
|
|
if not model.iter_next(iter):
|
|
|
|
iter = model.iter_parent(iter)
|
2005-03-02 17:11:54 +01:00
|
|
|
if iter:
|
|
|
|
iter = model.iter_next(iter)
|
2004-11-15 20:23:43 +01:00
|
|
|
if not iter:
|
|
|
|
iter = model.append(None, (agent, agent))
|
|
|
|
self.agent_infos[agent] = {'features' : []}
|
|
|
|
expand = 1
|
2004-09-06 16:55:10 +02:00
|
|
|
self.agent_infos[agent]['features'] = features
|
|
|
|
if len(identities):
|
|
|
|
self.agent_infos[agent]['identities'] = identities
|
|
|
|
if identities[0].has_key('name'):
|
|
|
|
model.set_value(iter, 0, identities[0]['name'])
|
|
|
|
for item in items:
|
2005-03-04 14:57:21 +01:00
|
|
|
if not item.has_key('name'):
|
|
|
|
continue
|
2004-09-06 16:55:10 +02:00
|
|
|
model.append(iter, (item['name'], item['jid']))
|
|
|
|
self.agent_infos[item['jid']] = {'identities': [item]}
|
2004-11-15 20:23:43 +01:00
|
|
|
if expand:
|
2005-03-01 19:27:21 +01:00
|
|
|
self.agents_treeview.expand_row((model.get_path(iter)), False)
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-03-01 19:27:21 +01:00
|
|
|
def on_refresh_button_clicked(self, widget):
|
2004-05-15 18:50:38 +02:00
|
|
|
"""When refresh button is clicked :
|
|
|
|
refresh list : clear and rerequest it"""
|
2005-03-01 19:27:21 +01:00
|
|
|
self.agents_treeview.get_model().clear()
|
2004-05-15 18:50:38 +02:00
|
|
|
self.browse()
|
|
|
|
|
2005-03-01 19:27:21 +01:00
|
|
|
def on_agents_treeview_row_activated(self, widget, path, col=0):
|
2004-05-15 18:50:38 +02:00
|
|
|
"""When a row is activated :
|
2004-09-06 16:55:10 +02:00
|
|
|
Register or join the selected agent"""
|
2005-03-01 19:27:21 +01:00
|
|
|
#TODO
|
2004-09-06 16:55:10 +02:00
|
|
|
pass
|
|
|
|
|
|
|
|
def on_join_button_clicked(self, widget):
|
|
|
|
"""When we want to join a conference :
|
2004-05-15 18:50:38 +02:00
|
|
|
Ask specific informations about the selected agent and close the window"""
|
2005-03-01 19:27:21 +01:00
|
|
|
model, iter = self.agents_treeview.get_selection().get_selected()
|
2004-12-23 14:28:00 +01:00
|
|
|
if not iter:
|
|
|
|
return
|
2004-09-06 16:55:10 +02:00
|
|
|
service = model.get_value(iter, 1)
|
|
|
|
room = ''
|
2005-03-05 22:02:38 +01:00
|
|
|
if service.find('@') > -1:
|
|
|
|
services = service.split('@')
|
2004-09-06 16:55:10 +02:00
|
|
|
room = services[0]
|
|
|
|
service = services[1]
|
|
|
|
if not self.plugin.windows.has_key('join_gc'):
|
2005-03-02 13:32:44 +01:00
|
|
|
self.plugin.windows['join_gc'] = join_groupchat_window(self.plugin, self.account, service, room)
|
2004-09-06 16:55:10 +02:00
|
|
|
|
|
|
|
def on_register_button_clicked(self, widget):
|
|
|
|
"""When we want to register an agent :
|
|
|
|
Ask specific informations about the selected agent and close the window"""
|
2005-03-01 19:27:21 +01:00
|
|
|
model, iter = self.agents_treeview.get_selection().get_selected()
|
2004-12-23 14:28:00 +01:00
|
|
|
if not iter :
|
|
|
|
return
|
2004-05-15 18:50:38 +02:00
|
|
|
service = model.get_value(iter, 1)
|
2004-09-06 16:55:10 +02:00
|
|
|
self.plugin.send('REG_AGENT_INFO', self.account, service)
|
2004-05-15 18:50:38 +02:00
|
|
|
widget.get_toplevel().destroy()
|
2004-09-06 16:55:10 +02:00
|
|
|
|
2005-03-01 19:27:21 +01:00
|
|
|
def on_agents_treeview_cursor_changed(self, widget):
|
2004-09-06 16:55:10 +02:00
|
|
|
"""When we select a row :
|
|
|
|
activate buttons if needed"""
|
2005-03-01 19:27:21 +01:00
|
|
|
model, iter = self.agents_treeview.get_selection().get_selected()
|
2004-09-06 16:55:10 +02:00
|
|
|
jid = model.get_value(iter, 1)
|
|
|
|
self.register_button.set_sensitive(False)
|
|
|
|
if self.agent_infos[jid].has_key('features'):
|
|
|
|
if common.jabber.NS_REGISTER in self.agent_infos[jid]['features']:
|
|
|
|
self.register_button.set_sensitive(True)
|
|
|
|
self.join_button.set_sensitive(False)
|
|
|
|
if self.agent_infos[jid].has_key('identities'):
|
|
|
|
if len(self.agent_infos[jid]['identities']):
|
|
|
|
if self.agent_infos[jid]['identities'][0].has_key('category'):
|
|
|
|
if self.agent_infos[jid]['identities'][0]['category'] == 'conference':
|
|
|
|
self.join_button.set_sensitive(True)
|
2004-05-15 18:50:38 +02:00
|
|
|
|
|
|
|
def __init__(self, plugin, account):
|
2005-02-07 23:26:17 +01:00
|
|
|
if not plugin.connected[account]:
|
2005-03-05 22:02:38 +01:00
|
|
|
Warning_dialog(_("You must be connected to view Agents"))
|
2005-02-07 23:24:07 +01:00
|
|
|
return
|
2005-03-01 19:27:21 +01:00
|
|
|
xml = gtk.glade.XML(GTKGUI_GLADE, 'agent_browser_window', APP)
|
|
|
|
self.window = xml.get_widget('agent_browser_window')
|
|
|
|
self.agents_treeview = xml.get_widget('agents_treeview')
|
2004-05-15 18:50:38 +02:00
|
|
|
self.plugin = plugin
|
|
|
|
self.account = account
|
2004-09-06 16:55:10 +02:00
|
|
|
self.agent_infos = {}
|
|
|
|
model = gtk.TreeStore(gobject.TYPE_STRING, gobject.TYPE_STRING)
|
2005-03-01 19:27:21 +01:00
|
|
|
self.agents_treeview.set_model(model)
|
2004-05-15 18:50:38 +02:00
|
|
|
#columns
|
|
|
|
renderer = gtk.CellRendererText()
|
|
|
|
renderer.set_data('column', 0)
|
2005-03-01 19:27:21 +01:00
|
|
|
self.agents_treeview.insert_column_with_attributes(-1, 'Name', \
|
|
|
|
renderer, text=0)
|
2004-05-15 18:50:38 +02:00
|
|
|
renderer = gtk.CellRendererText()
|
|
|
|
renderer.set_data('column', 1)
|
2005-03-01 19:27:21 +01:00
|
|
|
self.agents_treeview.insert_column_with_attributes(-1, 'Service', \
|
2004-05-15 18:50:38 +02:00
|
|
|
renderer, text=1)
|
|
|
|
|
2004-09-06 16:55:10 +02:00
|
|
|
self.register_button = xml.get_widget('register_button')
|
|
|
|
self.register_button.set_sensitive(False)
|
|
|
|
self.join_button = xml.get_widget('join_button')
|
|
|
|
self.join_button.set_sensitive(False)
|
2005-03-01 19:27:21 +01:00
|
|
|
xml.signal_autoconnect(self)
|
2005-02-07 23:24:07 +01:00
|
|
|
self.browse()
|