2005-04-13 11:41:44 +02:00
|
|
|
## config.py
|
2004-05-15 18:50:38 +02:00
|
|
|
##
|
|
|
|
## Gajim Team:
|
2005-03-29 18:37:59 +02:00
|
|
|
## - Yann Le Boulanger <asterix@lagaule.org>
|
|
|
|
## - Vincent Hanquez <tab@snarc.org>
|
|
|
|
## - Nikos Kouremenos <kourem@gmail.com>
|
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
|
2005-04-18 16:05:30 +02:00
|
|
|
|
|
|
|
import dialogs
|
2005-04-18 18:40:10 +02:00
|
|
|
import cell_renderer_image
|
2005-04-18 18:54:49 +02:00
|
|
|
from gajim import User
|
2005-04-18 19:19:22 +02:00
|
|
|
import cell_renderer_image
|
2005-04-14 19:07:55 +02:00
|
|
|
from common import gajim
|
2005-04-14 09:42:26 +02:00
|
|
|
from common import connection
|
2004-05-17 01:47:14 +02:00
|
|
|
from common import i18n
|
2005-04-18 16:05:30 +02:00
|
|
|
|
2004-05-17 01:47:14 +02:00
|
|
|
_ = i18n._
|
|
|
|
APP = i18n.APP
|
|
|
|
gtk.glade.bindtextdomain (APP, i18n.DIR)
|
|
|
|
gtk.glade.textdomain (APP)
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-04-22 01:20:18 +02:00
|
|
|
GTKGUI_GLADE = 'gtkgui.glade'
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-04-22 17:56:33 +02:00
|
|
|
|
2005-04-22 03:05:31 +02:00
|
|
|
# helper function to create #aabbcc color string
|
|
|
|
def mk_color_string(color):
|
|
|
|
return '#' + (hex(color.red) + '0')[2:4] + \
|
|
|
|
(hex(color.green) + '0')[2:4] + \
|
|
|
|
(hex(color.blue) + '0')[2:4]
|
2005-05-10 17:39:35 +02:00
|
|
|
|
|
|
|
|
|
|
|
#---------- Preferences_window class -------------#
|
2005-03-26 22:09:49 +01:00
|
|
|
class Preferences_window:
|
2005-04-18 14:17:43 +02:00
|
|
|
'''Class for Preferences window'''
|
2005-03-06 16:14:34 +01:00
|
|
|
|
2005-03-30 01:52:26 +02:00
|
|
|
def on_preferences_window_delete_event(self, widget, event):
|
2005-03-26 22:09:49 +01:00
|
|
|
self.window.hide()
|
2005-03-30 01:52:26 +02:00
|
|
|
return True # do NOT destroy the window
|
2005-03-26 22:09:49 +01:00
|
|
|
|
|
|
|
def on_close_button_clicked(self, widget):
|
2005-04-12 17:30:09 +02:00
|
|
|
self.window.hide()
|
2005-03-30 01:52:26 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def __init__(self, plugin):
|
|
|
|
'''Initialize Preferences window'''
|
|
|
|
self.xml = gtk.glade.XML(GTKGUI_GLADE, 'preferences_window', APP)
|
|
|
|
self.window = self.xml.get_widget('preferences_window')
|
|
|
|
self.plugin = plugin
|
|
|
|
self.iconset_combobox = self.xml.get_widget('iconset_combobox')
|
|
|
|
self.notify_on_new_message_radiobutton = self.xml.get_widget \
|
|
|
|
('notify_on_new_message_radiobutton')
|
|
|
|
self.popup_new_message_radiobutton = self.xml.get_widget \
|
|
|
|
('popup_new_message_radiobutton')
|
2005-05-21 15:46:23 +02:00
|
|
|
self.notify_on_signin_checkbutton = self.xml.get_widget \
|
|
|
|
('notify_on_signin_checkbutton')
|
|
|
|
self.notify_on_signout_checkbutton = self.xml.get_widget \
|
|
|
|
('notify_on_signout_checkbutton')
|
2005-05-10 17:39:35 +02:00
|
|
|
self.auto_popup_away_checkbutton = self.xml.get_widget \
|
|
|
|
('auto_popup_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.trayicon_checkbutton = self.xml.get_widget('trayicon_checkbutton')
|
|
|
|
self.notebook = self.xml.get_widget('preferences_notebook')
|
2005-04-29 17:01:44 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
#trayicon
|
|
|
|
if self.plugin.systray_capabilities:
|
|
|
|
st = gajim.config.get('trayicon')
|
|
|
|
self.trayicon_checkbutton.set_active(st)
|
2005-04-29 17:01:44 +02:00
|
|
|
else:
|
2005-05-17 17:04:54 +02:00
|
|
|
if os.name == 'nt':
|
|
|
|
self.trayicon_checkbutton.hide()
|
|
|
|
self.trayicon_checkbutton.set_no_show_all(True)
|
|
|
|
else:
|
|
|
|
self.trayicon_checkbutton.set_sensitive(False)
|
2005-04-12 17:30:09 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
#Save position
|
|
|
|
st = gajim.config.get('saveposition')
|
|
|
|
self.xml.get_widget('save_position_checkbutton').set_active(st)
|
|
|
|
|
|
|
|
#Merge accounts
|
|
|
|
st = gajim.config.get('mergeaccounts')
|
|
|
|
self.xml.get_widget('merge_checkbutton').set_active(st)
|
2005-04-12 17:30:09 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
#Use emoticons
|
|
|
|
st = gajim.config.get('useemoticons')
|
|
|
|
self.xml.get_widget('use_emoticons_checkbutton').set_active(st)
|
|
|
|
self.xml.get_widget('add_remove_emoticons_button').set_sensitive(st)
|
2005-03-26 22:09:49 +01:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
#iconset
|
2005-05-17 19:37:50 +02:00
|
|
|
iconsets_list = os.listdir(os.path.join(gajim.DATA_DIR, 'iconsets/'))
|
2005-05-10 17:39:35 +02:00
|
|
|
model = gtk.ListStore(gobject.TYPE_STRING)
|
|
|
|
self.iconset_combobox.set_model(model)
|
|
|
|
l = []
|
|
|
|
for dir in iconsets_list:
|
|
|
|
if dir != '.svn' and dir != 'transports':
|
|
|
|
l.append(dir)
|
|
|
|
if l.count == 0:
|
|
|
|
l.append(' ')
|
|
|
|
for i in range(len(l)):
|
|
|
|
model.append([l[i]])
|
|
|
|
if gajim.config.get('iconset') == l[i]:
|
|
|
|
self.iconset_combobox.set_active(i)
|
|
|
|
|
2005-05-25 19:13:50 +02:00
|
|
|
# Use transports iconsets
|
|
|
|
st = gajim.config.get('use_transports_iconsets')
|
|
|
|
self.xml.get_widget('transports_iconsets_checkbutton').set_active(st)
|
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
# Roster colors / font
|
|
|
|
self.theme_default = {
|
|
|
|
'green': {
|
|
|
|
'accounttextcolor': '#ffffff',
|
|
|
|
'grouptextcolor': '#0000ff',
|
|
|
|
'usertextcolor': '#000000',
|
|
|
|
'accountbgcolor': '#94aa8c',
|
|
|
|
'groupbgcolor': '#eff3e7',
|
|
|
|
'userbgcolor': '#ffffff',
|
|
|
|
'accountfont': 'Sans Bold 10',
|
|
|
|
'groupfont': 'Sans Italic 10',
|
|
|
|
'userfont': 'Sans 10',
|
|
|
|
},
|
|
|
|
'cyan': {
|
|
|
|
'accounttextcolor': '#ff0000',
|
|
|
|
'grouptextcolor': '#0000ff',
|
|
|
|
'usertextcolor': '#000000',
|
|
|
|
'accountbgcolor': '#9fdfff',
|
|
|
|
'groupbgcolor': '#ffffff',
|
|
|
|
'userbgcolor': '#ffffff',
|
|
|
|
'accountfont': 'Sans Bold 10',
|
|
|
|
'groupfont': 'Sans Italic 10',
|
|
|
|
'userfont': 'Sans 10'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
theme_combobox = self.xml.get_widget('theme_combobox')
|
|
|
|
cell = gtk.CellRendererText()
|
|
|
|
theme_combobox.pack_start(cell, True)
|
|
|
|
theme_combobox.add_attribute(cell, 'text', 0)
|
|
|
|
model = gtk.ListStore(gobject.TYPE_STRING)
|
|
|
|
theme_combobox.set_model(model)
|
|
|
|
i = 0
|
|
|
|
for t in self.theme_default:
|
|
|
|
model.append([t])
|
|
|
|
if gajim.config.get('roster_theme') == t:
|
|
|
|
theme_combobox.set_active(i)
|
|
|
|
i += 1
|
|
|
|
model.append(['custom'])
|
|
|
|
if gajim.config.get('roster_theme') == 'custom':
|
|
|
|
theme_combobox.set_active(i)
|
|
|
|
self.on_theme_combobox_changed(theme_combobox)
|
|
|
|
|
|
|
|
#use tabbed chat window
|
|
|
|
st = gajim.config.get('usetabbedchat')
|
|
|
|
self.xml.get_widget('use_tabbed_chat_window_checkbutton').set_active(st)
|
|
|
|
|
|
|
|
#Print time
|
|
|
|
if gajim.config.get('print_time') == 'never':
|
|
|
|
self.xml.get_widget('time_never_radiobutton').set_active(True)
|
|
|
|
elif gajim.config.get('print_time') == 'sometimes':
|
|
|
|
self.xml.get_widget('time_sometimes_radiobutton').set_active(True)
|
2005-04-17 11:05:58 +02:00
|
|
|
else:
|
2005-05-10 17:39:35 +02:00
|
|
|
self.xml.get_widget('time_always_radiobutton').set_active(True)
|
2005-04-17 11:05:58 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
#before time
|
|
|
|
st = gajim.config.get('before_time')
|
|
|
|
self.xml.get_widget('before_time_entry').set_text(st)
|
|
|
|
|
|
|
|
#after time
|
|
|
|
st = gajim.config.get('after_time')
|
|
|
|
self.xml.get_widget('after_time_entry').set_text(st)
|
2005-03-06 16:14:34 +01:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
#before nickname
|
|
|
|
st = gajim.config.get('before_nickname')
|
|
|
|
self.xml.get_widget('before_nickname_entry').set_text(st)
|
2005-03-06 16:14:34 +01:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
#after nickanme
|
|
|
|
st = gajim.config.get('after_nickname')
|
|
|
|
self.xml.get_widget('after_nickname_entry').set_text(st)
|
2005-03-06 16:14:34 +01:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
#Color for incomming messages
|
|
|
|
colSt = gajim.config.get('inmsgcolor')
|
|
|
|
self.xml.get_widget('incoming_msg_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(colSt))
|
|
|
|
|
|
|
|
#Color for outgoing messages
|
|
|
|
colSt = gajim.config.get('outmsgcolor')
|
|
|
|
self.xml.get_widget('outgoing_msg_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(colSt))
|
|
|
|
|
|
|
|
#Color for status messages
|
|
|
|
colSt = gajim.config.get('statusmsgcolor')
|
|
|
|
self.xml.get_widget('status_msg_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(colSt))
|
2005-04-22 03:05:31 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
# on new message
|
|
|
|
only_in_roster = True
|
|
|
|
if gajim.config.get('notify_on_new_message'):
|
|
|
|
self.xml.get_widget('notify_on_new_message_radiobutton').set_active(1)
|
|
|
|
only_in_roster = False
|
|
|
|
if gajim.config.get('autopopup'):
|
|
|
|
self.xml.get_widget('popup_new_message_radiobutton').set_active(True)
|
|
|
|
only_in_roster = False
|
|
|
|
if only_in_roster:
|
|
|
|
self.xml.get_widget('only_in_roster_radiobutton').set_active(True)
|
2005-04-29 17:01:44 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
#notify on online statuses
|
2005-05-21 15:46:23 +02:00
|
|
|
st = gajim.config.get('notify_on_signin')
|
|
|
|
self.notify_on_signin_checkbutton.set_active(st)
|
2005-05-10 17:39:35 +02:00
|
|
|
|
|
|
|
#notify on offline statuses
|
2005-05-21 15:46:23 +02:00
|
|
|
st = gajim.config.get('notify_on_signout')
|
|
|
|
self.notify_on_signout_checkbutton.set_active(st)
|
2005-05-10 17:39:35 +02:00
|
|
|
|
|
|
|
#autopopupaway
|
|
|
|
st = gajim.config.get('autopopupaway')
|
|
|
|
self.auto_popup_away_checkbutton.set_active(st)
|
|
|
|
|
|
|
|
#Ignore messages from unknown contacts
|
|
|
|
self.xml.get_widget('ignore_events_from_unknown_contacts_checkbutton').\
|
|
|
|
set_active(gajim.config.get('ignore_unknown_contacts'))
|
|
|
|
|
|
|
|
#sounds
|
2005-05-17 17:04:54 +02:00
|
|
|
if os.name == 'nt': # if windows, player must not become visible on show_all
|
|
|
|
self.xml.get_widget('soundplayer_hbox').set_no_show_all(True)
|
2005-05-10 17:39:35 +02:00
|
|
|
if gajim.config.get('sounds_on'):
|
|
|
|
self.xml.get_widget('play_sounds_checkbutton').set_active(True)
|
|
|
|
else:
|
|
|
|
self.xml.get_widget('soundplayer_hbox').set_sensitive(False)
|
|
|
|
self.xml.get_widget('sounds_scrolledwindow').set_sensitive(False)
|
|
|
|
self.xml.get_widget('browse_sounds_hbox').set_sensitive(False)
|
|
|
|
|
|
|
|
#sound player
|
2005-05-20 17:05:22 +02:00
|
|
|
self.xml.get_widget('soundplayer_entry').set_text(
|
2005-05-10 17:39:35 +02:00
|
|
|
gajim.config.get('soundplayer'))
|
|
|
|
|
|
|
|
#sounds treeview
|
|
|
|
self.sound_tree = self.xml.get_widget('sounds_treeview')
|
|
|
|
model = gtk.ListStore(gobject.TYPE_STRING,
|
|
|
|
gobject.TYPE_BOOLEAN,
|
|
|
|
gobject.TYPE_STRING)
|
|
|
|
self.sound_tree.set_model(model)
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
col = gtk.TreeViewColumn(_('Event'))
|
|
|
|
self.sound_tree.append_column(col)
|
|
|
|
renderer = gtk.CellRendererText()
|
|
|
|
col.pack_start(renderer)
|
|
|
|
col.set_attributes(renderer, text = 0)
|
|
|
|
|
|
|
|
col = gtk.TreeViewColumn(_('Sound'))
|
|
|
|
self.sound_tree.append_column(col)
|
|
|
|
renderer = gtk.CellRendererText()
|
|
|
|
col.pack_start(renderer)
|
|
|
|
col.set_attributes(renderer, text = 2)
|
|
|
|
self.fill_sound_treeview()
|
|
|
|
|
|
|
|
#Autoaway
|
|
|
|
st = gajim.config.get('autoaway')
|
|
|
|
self.auto_away_checkbutton.set_active(st)
|
|
|
|
|
|
|
|
#Autoawaytime
|
|
|
|
st = gajim.config.get('autoawaytime')
|
|
|
|
self.auto_away_time_spinbutton.set_value(st)
|
|
|
|
self.auto_away_time_spinbutton.set_sensitive(gajim.config.get('autoaway'))
|
|
|
|
|
|
|
|
#Autoxa
|
|
|
|
st = gajim.config.get('autoxa')
|
|
|
|
self.auto_xa_checkbutton.set_active(st)
|
|
|
|
|
|
|
|
#Autoxatime
|
|
|
|
st = gajim.config.get('autoxatime')
|
|
|
|
self.auto_xa_time_spinbutton.set_value(st)
|
|
|
|
self.auto_xa_time_spinbutton.set_sensitive(gajim.config.get('autoxa'))
|
|
|
|
|
|
|
|
#ask_status when online / offline
|
|
|
|
st = gajim.config.get('ask_online_status')
|
|
|
|
self.xml.get_widget('prompt_online_status_message_checkbutton').\
|
|
|
|
set_active(st)
|
|
|
|
st = gajim.config.get('ask_offline_status')
|
|
|
|
self.xml.get_widget('prompt_offline_status_message_checkbutton').\
|
|
|
|
set_active(st)
|
|
|
|
|
|
|
|
#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()
|
|
|
|
buf = self.xml.get_widget('msg_textview').get_buffer()
|
|
|
|
buf.connect('changed', self.on_msg_textview_changed)
|
|
|
|
|
|
|
|
#open links with
|
2005-05-17 17:04:54 +02:00
|
|
|
if os.name == 'nt':
|
|
|
|
self.links_frame = self.xml.get_widget('links_frame')
|
|
|
|
self.links_frame.hide()
|
|
|
|
self.links_frame.set_no_show_all(True)
|
|
|
|
else:
|
|
|
|
self.links_open_with_combobox = self.xml.get_widget('links_open_with_combobox')
|
|
|
|
if gajim.config.get('openwith') == 'gnome-open':
|
|
|
|
self.links_open_with_combobox.set_active(0)
|
|
|
|
elif gajim.config.get('openwith') == 'kfmclient exec':
|
|
|
|
self.links_open_with_combobox.set_active(True)
|
|
|
|
elif gajim.config.get('openwith') == 'custom':
|
|
|
|
self.links_open_with_combobox.set_active(2)
|
|
|
|
self.xml.get_widget('custom_apps_frame').set_sensitive(True)
|
2005-05-20 17:05:22 +02:00
|
|
|
self.xml.get_widget('custom_browser_entry').set_text(
|
2005-05-17 17:04:54 +02:00
|
|
|
gajim.config.get('custombrowser'))
|
2005-05-20 17:05:22 +02:00
|
|
|
self.xml.get_widget('custom_mail_client_entry').set_text(
|
2005-05-17 17:04:54 +02:00
|
|
|
gajim.config.get('custommailapp'))
|
2005-05-10 17:39:35 +02:00
|
|
|
|
|
|
|
#log presences in user file
|
|
|
|
st = gajim.config.get('log_notif_in_user_file')
|
|
|
|
self.xml.get_widget('log_in_contact_checkbutton').set_active(st)
|
|
|
|
|
|
|
|
#log presences in external file
|
|
|
|
st = gajim.config.get('log_notif_in_sep_file')
|
|
|
|
self.xml.get_widget('log_in_extern_checkbutton').set_active(st)
|
|
|
|
|
|
|
|
# don't send os info
|
|
|
|
st = gajim.config.get('send_os_info')
|
|
|
|
self.xml.get_widget('send_os_info_checkbutton').set_active(st)
|
|
|
|
|
|
|
|
# don't check for new version
|
|
|
|
st = gajim.config.get('check_for_new_version')
|
|
|
|
btn = self.xml.get_widget('check_for_new_version_checkbutton')
|
|
|
|
btn.set_active(st)
|
|
|
|
|
|
|
|
self.xml.signal_autoconnect(self)
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
def on_preferences_window_show(self, widget):
|
|
|
|
self.notebook.set_current_page(0)
|
|
|
|
|
|
|
|
theme_combobox = self.xml.get_widget('theme_combobox')
|
|
|
|
model = theme_combobox.get_model()
|
|
|
|
active = theme_combobox.get_active()
|
|
|
|
theme = model[active][0]
|
|
|
|
fonts_colors_table = self.xml.get_widget('fonts_colors_table')
|
|
|
|
if theme == 'custom':
|
|
|
|
fonts_colors_table.show()
|
|
|
|
else:
|
|
|
|
fonts_colors_table.hide()
|
|
|
|
|
|
|
|
def on_preferences_window_key_press_event(self, widget, event):
|
|
|
|
if event.keyval == gtk.keysyms.Escape: # ESCAPE
|
|
|
|
self.window.hide()
|
|
|
|
|
|
|
|
def on_checkbutton_toggled(self, widget, config_name, \
|
|
|
|
change_sensitivity_widgets = None):
|
|
|
|
gajim.config.set(config_name, widget.get_active())
|
|
|
|
if change_sensitivity_widgets != None:
|
|
|
|
for w in change_sensitivity_widgets:
|
|
|
|
w.set_sensitive(widget.get_active())
|
|
|
|
self.plugin.save_config()
|
|
|
|
|
|
|
|
def on_trayicon_checkbutton_toggled(self, widget):
|
|
|
|
if widget.get_active():
|
|
|
|
gajim.config.set('trayicon', True)
|
|
|
|
self.plugin.show_systray()
|
|
|
|
self.plugin.roster.update_status_comboxbox()
|
|
|
|
else:
|
|
|
|
gajim.config.set('trayicon', False)
|
|
|
|
self.plugin.hide_systray()
|
|
|
|
self.plugin.roster.draw_roster()
|
|
|
|
self.plugin.save_config()
|
|
|
|
|
|
|
|
def on_save_position_checkbutton_toggled(self, widget):
|
|
|
|
self.on_checkbutton_toggled(widget, 'saveposition')
|
|
|
|
|
|
|
|
def on_merge_checkbutton_toggled(self, widget):
|
|
|
|
self.on_checkbutton_toggled(widget, 'mergeaccounts')
|
|
|
|
self.plugin.roster.regroup = gajim.config.get('mergeaccounts')
|
|
|
|
self.plugin.roster.draw_roster()
|
|
|
|
|
|
|
|
def on_use_emoticons_checkbutton_toggled(self, widget):
|
2005-05-20 17:05:22 +02:00
|
|
|
self.on_checkbutton_toggled(widget, 'useemoticons',
|
2005-05-10 17:39:35 +02:00
|
|
|
[self.xml.get_widget('add_remove_emoticons_button')])
|
|
|
|
|
|
|
|
def on_add_remove_emoticons_button_clicked(self, widget):
|
|
|
|
window = self.plugin.windows['add_remove_emoticons'].window
|
|
|
|
if window.get_property('visible'):
|
|
|
|
window.present()
|
|
|
|
else:
|
|
|
|
window.show_all()
|
|
|
|
|
|
|
|
def on_iconset_combobox_changed(self, widget):
|
|
|
|
model = widget.get_model()
|
|
|
|
active = widget.get_active()
|
|
|
|
icon_string = model[active][0]
|
|
|
|
gajim.config.set('iconset', icon_string)
|
|
|
|
self.plugin.roster.reload_jabber_state_images()
|
|
|
|
self.plugin.save_config()
|
|
|
|
|
2005-05-25 19:13:50 +02:00
|
|
|
def on_transports_iconsets_checkbutton_toggled(self, widget):
|
|
|
|
self.on_checkbutton_toggled(widget, 'use_transports_iconsets')
|
|
|
|
self.plugin.roster.draw_roster()
|
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_roster_widget_color_set(self, widget, text):
|
|
|
|
color = widget.get_color()
|
|
|
|
color_string = mk_color_string(color)
|
|
|
|
gajim.config.set(text, color_string)
|
|
|
|
self.plugin.roster.draw_roster()
|
|
|
|
self.plugin.save_config()
|
|
|
|
|
|
|
|
def on_account_text_colorbutton_color_set(self, widget):
|
|
|
|
self.on_roster_widget_color_set(widget, 'accounttextcolor')
|
|
|
|
|
|
|
|
def on_group_text_colorbutton_color_set(self, widget):
|
|
|
|
self.on_roster_widget_color_set(widget, 'grouptextcolor')
|
|
|
|
|
|
|
|
def on_user_text_colorbutton_color_set(self, widget):
|
|
|
|
self.on_roster_widget_color_set(widget, 'usertextcolor')
|
|
|
|
|
|
|
|
def on_account_text_bg_colorbutton_color_set(self, widget):
|
|
|
|
self.on_roster_widget_color_set(widget, 'accountbgcolor')
|
|
|
|
|
|
|
|
def on_group_text_bg_colorbutton_color_set(self, widget):
|
|
|
|
self.on_roster_widget_color_set(widget, 'groupbgcolor')
|
|
|
|
|
|
|
|
def on_user_text_bg_colorbutton_color_set(self, widget):
|
|
|
|
self.on_roster_widget_color_set(widget, 'userbgcolor')
|
|
|
|
|
|
|
|
def on_widget_font_set(self, widget, text):
|
|
|
|
font_string = widget.get_font_name()
|
|
|
|
gajim.config.set(text, font_string)
|
|
|
|
self.plugin.roster.draw_roster()
|
|
|
|
self.plugin.save_config()
|
|
|
|
|
|
|
|
def on_account_text_fontbutton_font_set(self, widget):
|
|
|
|
self.on_widget_font_set(widget, 'accountfont')
|
|
|
|
|
|
|
|
def on_group_text_fontbutton_font_set(self, widget):
|
|
|
|
self.on_widget_font_set(widget, 'groupfont')
|
|
|
|
|
|
|
|
def on_user_text_fontbutton_font_set(self, widget):
|
|
|
|
self.on_widget_font_set(widget, 'userfont')
|
|
|
|
|
|
|
|
def on_theme_combobox_changed(self, widget):
|
|
|
|
color_widgets = {
|
|
|
|
'account_text_colorbutton': 'accounttextcolor',
|
|
|
|
'group_text_colorbutton': 'grouptextcolor',
|
|
|
|
'user_text_colorbutton': 'usertextcolor',
|
|
|
|
'account_text_bg_colorbutton': 'accountbgcolor',
|
|
|
|
'group_text_bg_colorbutton': 'groupbgcolor',
|
|
|
|
'user_text_bg_colorbutton': 'userbgcolor'
|
|
|
|
}
|
|
|
|
font_widgets = {
|
|
|
|
'account_text_fontbutton': 'accountfont',
|
|
|
|
'group_text_fontbutton': 'groupfont',
|
|
|
|
'user_text_fontbutton': 'userfont'
|
|
|
|
}
|
|
|
|
|
|
|
|
model = widget.get_model()
|
|
|
|
active = widget.get_active()
|
2005-04-29 15:04:06 +02:00
|
|
|
theme = model[active][0]
|
2005-04-29 17:01:44 +02:00
|
|
|
fonts_colors_table = self.xml.get_widget('fonts_colors_table')
|
2005-05-06 21:52:18 +02:00
|
|
|
if theme == 'custom':
|
2005-05-03 18:43:27 +02:00
|
|
|
fonts_colors_table.show()
|
2005-04-29 17:01:44 +02:00
|
|
|
else:
|
2005-05-03 18:43:27 +02:00
|
|
|
fonts_colors_table.hide()
|
2005-04-29 15:04:06 +02:00
|
|
|
for w in color_widgets:
|
|
|
|
widg = self.xml.get_widget(w)
|
2005-05-06 21:52:18 +02:00
|
|
|
if theme == 'custom':
|
2005-04-29 15:04:06 +02:00
|
|
|
widg.set_color(gtk.gdk.color_parse(gajim.config.get(
|
|
|
|
color_widgets[w])))
|
|
|
|
else:
|
|
|
|
widg.set_color(gtk.gdk.color_parse(self.theme_default[theme]\
|
|
|
|
[color_widgets[w]]))
|
2005-04-30 19:19:03 +02:00
|
|
|
self.on_roster_widget_color_set(widg, color_widgets[w])
|
2005-04-29 15:04:06 +02:00
|
|
|
for w in font_widgets:
|
|
|
|
widg = self.xml.get_widget(w)
|
2005-05-06 21:52:18 +02:00
|
|
|
if theme == 'custom':
|
2005-04-29 15:04:06 +02:00
|
|
|
widg.set_font_name(gajim.config.get(font_widgets[w]))
|
|
|
|
else:
|
|
|
|
widg.set_font_name(self.theme_default[theme][font_widgets[w]])
|
2005-04-30 19:19:03 +02:00
|
|
|
self.on_widget_font_set(widg, font_widgets[w])
|
2005-04-29 15:04:06 +02:00
|
|
|
|
|
|
|
gajim.config.set('roster_theme', theme)
|
2005-04-12 17:30:09 +02:00
|
|
|
self.plugin.save_config()
|
2005-04-29 17:01:44 +02:00
|
|
|
self.plugin.roster.draw_roster()
|
2005-04-28 16:38:36 +02:00
|
|
|
|
|
|
|
def merge_windows(self, kind):
|
|
|
|
for acct in gajim.connections:
|
|
|
|
#save buffers and close windows
|
|
|
|
buf1 = {}
|
|
|
|
buf2 = {}
|
|
|
|
saved_var = {}
|
2005-04-28 16:55:57 +02:00
|
|
|
windows = self.plugin.windows[acct][kind]
|
|
|
|
jids = windows.keys()
|
2005-04-28 16:38:36 +02:00
|
|
|
for jid in jids:
|
2005-04-28 16:55:57 +02:00
|
|
|
window = windows[jid]
|
|
|
|
buf1[jid] = window.xmls[jid].get_widget('conversation_textview').\
|
|
|
|
get_buffer()
|
|
|
|
buf2[jid] = window.xmls[jid].get_widget('message_textview').\
|
|
|
|
get_buffer()
|
|
|
|
saved_var[jid] = window.save_var(jid)
|
|
|
|
window.window.destroy()
|
2005-04-28 16:38:36 +02:00
|
|
|
#open new tabbed chat windows
|
|
|
|
for jid in jids:
|
2005-04-28 16:55:57 +02:00
|
|
|
if kind == 'chats':
|
2005-04-28 17:48:20 +02:00
|
|
|
user = self.plugin.roster.contacts[acct][jid][0]
|
2005-04-28 16:55:57 +02:00
|
|
|
self.plugin.roster.new_chat(user, acct)
|
2005-04-28 17:48:20 +02:00
|
|
|
if kind == 'gc':
|
|
|
|
self.plugin.roster.new_room(jid, saved_var[jid]['nick'], acct)
|
2005-04-28 16:55:57 +02:00
|
|
|
window = windows[jid]
|
|
|
|
window.xmls[jid].get_widget('conversation_textview').set_buffer(\
|
|
|
|
buf1[jid])
|
|
|
|
window.xmls[jid].get_widget('message_textview').set_buffer(\
|
|
|
|
buf2[jid])
|
|
|
|
window.load_var(jid, saved_var[jid])
|
2005-04-28 16:38:36 +02:00
|
|
|
|
|
|
|
def split_windows(self, kind):
|
|
|
|
for acct in gajim.connections:
|
|
|
|
#save buffers and close tabbed chat windows
|
2005-05-10 17:39:35 +02:00
|
|
|
buf1 = {}
|
|
|
|
buf2 = {}
|
|
|
|
saved_var = {}
|
|
|
|
windows = self.plugin.windows[acct][kind]
|
|
|
|
jids = windows.keys()
|
|
|
|
if not 'tabbed' in jids:
|
|
|
|
continue
|
|
|
|
jids.remove('tabbed')
|
|
|
|
for jid in jids:
|
|
|
|
window = windows[jid]
|
|
|
|
buf1[jid] = window.xmls[jid].get_widget('conversation_textview').\
|
|
|
|
get_buffer()
|
|
|
|
buf2[jid] = window.xmls[jid].get_widget('message_textview').\
|
|
|
|
get_buffer()
|
|
|
|
saved_var[jid] = window.save_var(jid)
|
|
|
|
windows['tabbed'].window.destroy()
|
|
|
|
#open new tabbed chat windows
|
|
|
|
for jid in jids:
|
|
|
|
if kind == 'chats':
|
|
|
|
user = self.plugin.roster.contacts[acct][jid][0]
|
|
|
|
self.plugin.roster.new_chat(user, acct)
|
|
|
|
if kind == 'gc':
|
|
|
|
self.plugin.roster.new_room(jid, saved_var[jid]['nick'], acct)
|
|
|
|
window = windows[jid]
|
|
|
|
window.xmls[jid].get_widget('conversation_textview').set_buffer(\
|
|
|
|
buf1[jid])
|
|
|
|
window.xmls[jid].get_widget('message_textview').set_buffer(\
|
|
|
|
buf2[jid])
|
|
|
|
window.load_var(jid, saved_var[jid])
|
2005-03-09 11:26:57 +01:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_use_tabbed_chat_window_checkbutton_toggled(self, widget):
|
|
|
|
if widget.get_active():
|
|
|
|
gajim.config.set('usetabbedchat', True)
|
|
|
|
self.merge_windows('chats')
|
|
|
|
self.merge_windows('gc')
|
2005-03-09 11:26:57 +01:00
|
|
|
else:
|
2005-05-10 17:39:35 +02:00
|
|
|
gajim.config.set('usetabbedchat', False)
|
|
|
|
self.split_windows('chats')
|
|
|
|
self.split_windows('gc')
|
2005-04-12 17:30:09 +02:00
|
|
|
self.plugin.save_config()
|
2005-05-10 17:39:35 +02:00
|
|
|
|
|
|
|
def update_print_time(self):
|
|
|
|
'''Update time in Opened Chat Windows'''
|
|
|
|
for a in gajim.connections:
|
|
|
|
window = self.plugin.windows[a]['chats']
|
|
|
|
if window.has_key('tabbed'):
|
|
|
|
window['tabbed'].update_print_time()
|
|
|
|
else:
|
|
|
|
for jid in window.keys():
|
|
|
|
window[jid].update_print_time()
|
|
|
|
|
|
|
|
def on_time_never_radiobutton_toggled(self, widget):
|
|
|
|
if widget.get_active():
|
|
|
|
gajim.config.set('print_time', 'never')
|
|
|
|
self.update_print_time()
|
2005-04-12 17:30:09 +02:00
|
|
|
self.plugin.save_config()
|
2005-03-09 11:26:57 +01:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_time_sometimes_radiobutton_toggled(self, widget):
|
|
|
|
if widget.get_active():
|
|
|
|
gajim.config.set('print_time', 'sometimes')
|
|
|
|
self.update_print_time()
|
2005-04-12 17:30:09 +02:00
|
|
|
self.plugin.save_config()
|
2005-03-09 11:26:57 +01:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_time_always_radiobutton_toggled(self, widget):
|
|
|
|
if widget.get_active():
|
|
|
|
gajim.config.set('print_time', 'always')
|
|
|
|
self.update_print_time()
|
2005-04-12 17:30:09 +02:00
|
|
|
self.plugin.save_config()
|
2005-03-09 11:26:57 +01:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_before_time_entry_focus_out_event(self, widget, event):
|
|
|
|
gajim.config.set('before_time', widget.get_text())
|
2005-04-12 17:30:09 +02:00
|
|
|
self.plugin.save_config()
|
2005-05-10 17:39:35 +02:00
|
|
|
|
|
|
|
def on_after_time_entry_focus_out_event(self, widget, event):
|
|
|
|
gajim.config.set('after_time', widget.get_text())
|
2005-04-12 17:30:09 +02:00
|
|
|
self.plugin.save_config()
|
2005-04-06 20:51:54 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_before_nickname_entry_focus_out_event(self, widget, event):
|
|
|
|
gajim.config.set('before_nickname', widget.get_text())
|
2005-04-18 16:05:30 +02:00
|
|
|
self.plugin.save_config()
|
2005-04-06 20:51:54 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_after_nickname_entry_focus_out_event(self, widget, event):
|
|
|
|
gajim.config.set('after_nickname', widget.get_text())
|
|
|
|
self.plugin.save_config()
|
2005-03-29 18:37:59 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def update_text_tags(self):
|
|
|
|
'''Update color tags in Opened Chat Windows'''
|
|
|
|
for a in gajim.connections:
|
|
|
|
window = self.plugin.windows[a]['chats']
|
|
|
|
if window.has_key('tabbed'):
|
|
|
|
window['tabbed'].update_tags()
|
|
|
|
else:
|
|
|
|
for jid in window.keys():
|
|
|
|
window[jid].update_tags()
|
|
|
|
|
|
|
|
def on_preference_widget_color_set(self, widget, text):
|
|
|
|
color = widget.get_color()
|
|
|
|
color_string = mk_color_string(color)
|
|
|
|
gajim.config.set(text, color_string)
|
|
|
|
self.update_text_tags()
|
|
|
|
self.plugin.save_config()
|
|
|
|
|
|
|
|
def on_incoming_msg_colorbutton_color_set(self, widget):
|
|
|
|
self.on_preference_widget_color_set(widget, 'inmsgcolor')
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_outgoing_msg_colorbutton_color_set(self, widget):
|
|
|
|
self.on_preference_widget_color_set(widget, 'outmsgcolor')
|
|
|
|
|
|
|
|
def on_status_msg_colorbutton_color_set(self, widget):
|
|
|
|
self.on_preference_widget_color_set(widget, 'statusmsgcolor')
|
|
|
|
|
|
|
|
def on_reset_colors_button_clicked(self, widget):
|
|
|
|
for i in ['inmsgcolor', 'outmsgcolor', 'statusmsgcolor']:
|
|
|
|
gajim.config.set(i, self.plugin.default_values[i])
|
2005-03-08 15:08:46 +01:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
self.xml.get_widget('incoming_msg_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(gajim.config.get('inmsgcolor')))
|
|
|
|
self.xml.get_widget('outgoing_msg_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(gajim.config.get('outmsgcolor')))
|
|
|
|
self.xml.get_widget('status_msg_colorbutton').set_color(\
|
|
|
|
gtk.gdk.color_parse(gajim.config.get('statusmsgcolor')))
|
|
|
|
self.update_text_tags()
|
|
|
|
self.plugin.save_config()
|
2005-04-17 11:05:58 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_notify_on_new_message_radiobutton_toggled(self, widget):
|
|
|
|
self.on_checkbutton_toggled(widget, 'notify_on_new_message',
|
|
|
|
[self.auto_popup_away_checkbutton])
|
2004-10-13 23:46:10 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_popup_new_message_radiobutton_toggled(self, widget):
|
|
|
|
self.on_checkbutton_toggled(widget, 'autopopup',
|
|
|
|
[self.auto_popup_away_checkbutton])
|
2005-04-29 15:04:06 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_only_in_roster_radiobutton_toggled(self, widget):
|
|
|
|
if widget.get_active():
|
|
|
|
self.auto_popup_away_checkbutton.set_sensitive(False)
|
2005-04-29 15:04:06 +02:00
|
|
|
|
2005-05-21 15:46:23 +02:00
|
|
|
def on_notify_on_signin_checkbutton_toggled(self, widget):
|
|
|
|
self.on_checkbutton_toggled(widget, 'notify_on_signin')
|
2005-04-02 21:52:00 +02:00
|
|
|
|
2005-05-21 15:46:23 +02:00
|
|
|
def on_notify_on_signout_checkbutton_toggled(self, widget):
|
|
|
|
self.on_checkbutton_toggled(widget, 'notify_on_signout')
|
2005-04-02 21:52:00 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_auto_popup_away_checkbutton_toggled(self, widget):
|
|
|
|
self.on_checkbutton_toggled(widget, 'autopopupaway')
|
2005-04-02 21:52:00 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_ignore_events_from_unknown_contacts_checkbutton_toggled(self, widget):
|
|
|
|
self.on_checkbutton_toggled(widget, 'ignore_unknown_contacts')
|
2005-02-05 18:18:49 +01:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_play_sounds_checkbutton_toggled(self, widget):
|
|
|
|
self.on_checkbutton_toggled(widget, 'sounds_on',
|
|
|
|
[self.xml.get_widget('soundplayer_hbox'),
|
|
|
|
self.xml.get_widget('sounds_scrolledwindow'),
|
|
|
|
self.xml.get_widget('browse_sounds_hbox')])
|
|
|
|
|
|
|
|
def on_soundplayer_entry_changed(self, widget):
|
|
|
|
gajim.config.set('soundplayer', widget.get_text())
|
|
|
|
self.plugin.save_config()
|
2005-03-08 15:08:46 +01:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_prompt_online_status_message_checkbutton_toggled(self, widget):
|
|
|
|
self.on_checkbutton_toggled(widget, 'ask_online_status')
|
|
|
|
|
|
|
|
def on_prompt_offline_status_message_checkbutton_toggled(self, widget):
|
|
|
|
self.on_checkbutton_toggled(widget, 'ask_offline_status')
|
|
|
|
|
|
|
|
def on_sounds_treemodel_row_changed(self, model, path, iter):
|
|
|
|
sound_event = model.get_value(iter, 0)
|
|
|
|
gajim.config.set_per('soundevents', sound_event, 'enabled',
|
|
|
|
bool(model[path][1]))
|
|
|
|
gajim.config.set_per('soundevents', sound_event, 'path',
|
|
|
|
model.get_value(iter, 2))
|
|
|
|
self.plugin.save_config()
|
2005-03-08 15:08:46 +01:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_auto_away_checkbutton_toggled(self, widget):
|
|
|
|
self.on_checkbutton_toggled(widget, 'autoaway',
|
|
|
|
[self.auto_away_time_spinbutton])
|
2005-04-17 01:15:03 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_auto_away_time_spinbutton_value_changed(self, widget):
|
|
|
|
aat = widget.get_value_as_int()
|
|
|
|
gajim.config.set('autoawaytime', aat)
|
|
|
|
self.plugin.sleeper = common.sleepy.Sleepy(
|
|
|
|
gajim.config.get('autoawaytime') * 60,
|
|
|
|
gajim.config.get('autoxatime') * 60)
|
|
|
|
self.plugin.save_config()
|
2005-04-17 01:15:03 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_auto_xa_checkbutton_toggled(self, widget):
|
|
|
|
self.on_checkbutton_toggled(widget, 'autoxa',
|
|
|
|
[self.auto_xa_time_spinbutton])
|
2005-03-08 15:08:46 +01:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_auto_xa_time_spinbutton_value_changed(self, widget):
|
|
|
|
axt = widget.get_value_as_int()
|
|
|
|
gajim.config.set('autoxatime', axt)
|
|
|
|
self.plugin.sleeper = common.sleepy.Sleepy(
|
|
|
|
gajim.config.get('autoawaytime') * 60,
|
|
|
|
gajim.config.get('autoxatime') * 60)
|
|
|
|
self.plugin.save_config()
|
2005-03-08 15:08:46 +01:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def save_status_messages(self, model):
|
|
|
|
for msg in gajim.config.get_per('statusmsg'):
|
|
|
|
gajim.config.del_per('statusmsg', msg)
|
|
|
|
iter = model.get_iter_first()
|
|
|
|
while iter:
|
|
|
|
val = model.get_value(iter, 0)
|
|
|
|
gajim.config.add_per('statusmsg', val)
|
|
|
|
gajim.config.set_per('statusmsg', val, 'message',
|
|
|
|
model.get_value(iter, 1))
|
|
|
|
iter = model.iter_next(iter)
|
|
|
|
self.plugin.save_config()
|
2005-03-21 22:01:03 +01:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_msg_treemodel_row_changed(self, model, path, iter):
|
|
|
|
self.save_status_messages(model)
|
|
|
|
|
|
|
|
def on_msg_treemodel_row_deleted(self, model, path, iter):
|
|
|
|
self.save_status_messages(model)
|
|
|
|
|
|
|
|
def on_links_open_with_combobox_changed(self, widget):
|
|
|
|
if widget.get_active() == 2:
|
|
|
|
self.xml.get_widget('custom_apps_frame').set_sensitive(True)
|
|
|
|
gajim.config.set('openwith', 'custom')
|
2005-04-12 17:30:09 +02:00
|
|
|
else:
|
2005-05-10 17:39:35 +02:00
|
|
|
if widget.get_active() == 0:
|
|
|
|
gajim.config.set('openwith', 'gnome-open')
|
|
|
|
if widget.get_active() == 1:
|
|
|
|
gajim.config.set('openwith', 'kfmclient exec')
|
|
|
|
self.xml.get_widget('custom_apps_frame').set_sensitive(False)
|
|
|
|
self.plugin.save_config()
|
|
|
|
|
|
|
|
def on_custom_browser_entry_changed(self, widget):
|
|
|
|
gajim.config.set('custombrowser', widget.get_text())
|
|
|
|
self.plugin.save_config()
|
|
|
|
|
|
|
|
def on_custom_mail_client_entry_changed(self, widget):
|
|
|
|
gajim.config.set('custommailapp', widget.get_text())
|
|
|
|
self.plugin.save_config()
|
|
|
|
|
|
|
|
def on_log_in_contact_checkbutton_toggled(self, widget):
|
|
|
|
gajim.config.set('log_notif_in_user_file', widget.get_active())
|
|
|
|
self.plugin.save_config()
|
|
|
|
|
|
|
|
def on_log_in_extern_checkbutton_toggled(self, widget):
|
|
|
|
gajim.config.set('log_notif_in_sep_file', widget.get_active())
|
|
|
|
self.plugin.save_config()
|
|
|
|
|
|
|
|
def on_send_os_info_checkbutton_toggled(self, widget):
|
|
|
|
gajim.config.set('send_os_info', widget.get_active())
|
|
|
|
self.plugin.save_config()
|
2005-04-12 17:30:09 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_check_for_new_version_checkbutton_toggled(self, widget):
|
|
|
|
gajim.config.set('check_for_new_version', widget.get_active())
|
|
|
|
self.plugin.save_config()
|
2005-02-10 01:07:55 +01:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def fill_msg_treeview(self):
|
|
|
|
self.xml.get_widget('delete_msg_button').set_sensitive(False)
|
|
|
|
model = self.msg_tree.get_model()
|
|
|
|
model.clear()
|
|
|
|
for msg in gajim.config.get_per('statusmsg'):
|
|
|
|
iter = model.append()
|
|
|
|
val = gajim.config.get_per('statusmsg', msg, 'message')
|
|
|
|
model.set(iter, 0, msg, 1, val)
|
2005-02-14 23:30:04 +01:00
|
|
|
|
2005-05-10 17:39:35 +02: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)
|
2005-02-14 23:30:04 +01:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_msg_treeview_cursor_changed(self, widget, data = None):
|
|
|
|
(model, iter) = self.msg_tree.get_selection().get_selected()
|
|
|
|
if not iter:
|
|
|
|
return
|
|
|
|
self.xml.get_widget('delete_msg_button').set_sensitive(True)
|
|
|
|
buf = self.xml.get_widget('msg_textview').get_buffer()
|
|
|
|
name = model.get_value(iter, 0)
|
|
|
|
msg = model.get_value(iter, 1)
|
|
|
|
buf.set_text(msg)
|
2005-02-14 23:30:04 +01:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
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')
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_delete_msg_button_clicked(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()
|
|
|
|
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)
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def sound_toggled_cb(self, cell, path):
|
|
|
|
model = self.sound_tree.get_model()
|
|
|
|
model[path][1] = not model[path][1]
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def fill_sound_treeview(self):
|
|
|
|
sounds = gajim.config.get_per('soundevents')
|
|
|
|
model = self.sound_tree.get_model()
|
|
|
|
model.clear()
|
|
|
|
for sound in sounds:
|
|
|
|
val = gajim.config.get_per('soundevents', sound,
|
|
|
|
'enabled')
|
|
|
|
path = gajim.config.get_per('soundevents', sound,
|
|
|
|
'path')
|
|
|
|
iter = model.append((sound, val, path))
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_treeview_sounds_cursor_changed(self, widget, data = None):
|
|
|
|
(model, iter) = self.sound_tree.get_selection().get_selected()
|
|
|
|
sounds_entry = self.xml.get_widget('sounds_entry')
|
|
|
|
if not iter:
|
|
|
|
sounds_entry.set_text('')
|
|
|
|
return
|
|
|
|
str = model.get_value(iter, 2)
|
|
|
|
sounds_entry.set_text(str)
|
2005-03-08 15:08:46 +01:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_button_sounds_clicked(self, widget, data = None):
|
|
|
|
(model, iter) = self.sound_tree.get_selection().get_selected()
|
|
|
|
if not iter:
|
|
|
|
return
|
|
|
|
file = model.get_value(iter, 2)
|
2005-05-17 13:55:30 +02:00
|
|
|
dialog = gtk.FileChooserDialog(_('Choose Sound'), None,
|
2005-05-10 17:39:35 +02:00
|
|
|
gtk.FILE_CHOOSER_ACTION_OPEN,
|
|
|
|
(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL,
|
|
|
|
gtk.STOCK_OPEN, gtk.RESPONSE_OK))
|
|
|
|
dialog.set_default_response(gtk.RESPONSE_OK)
|
2004-10-26 00:02:16 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
filter = gtk.FileFilter()
|
|
|
|
filter.set_name(_('All files'))
|
|
|
|
filter.add_pattern('*')
|
|
|
|
dialog.add_filter(filter)
|
2004-11-04 02:03:17 +01:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
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)
|
|
|
|
file = ''
|
|
|
|
while True:
|
|
|
|
response = dialog.run()
|
|
|
|
if response != gtk.RESPONSE_OK:
|
|
|
|
break
|
|
|
|
file = dialog.get_filename()
|
|
|
|
if os.path.exists(file):
|
|
|
|
break
|
|
|
|
dialog.destroy()
|
|
|
|
if file:
|
|
|
|
self.xml.get_widget('sounds_entry').set_text(file)
|
|
|
|
model.set_value(iter, 2, file)
|
|
|
|
model.set_value(iter, 1, 1)
|
2005-04-06 20:51:54 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def on_open_advanced_editor_button_clicked(self, widget, data = None):
|
|
|
|
if self.plugin.windows.has_key('advanced_config'):
|
|
|
|
self.plugin.windows['advanced_config'].window.present()
|
|
|
|
else:
|
2005-05-14 03:42:10 +02:00
|
|
|
self.plugin.windows['advanced_config'] = \
|
|
|
|
dialogs.Advanced_configuration_window(self.plugin)
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
#---------- Account_modification_window class -------------#
|
2005-03-07 18:01:56 +01:00
|
|
|
class Account_modification_window:
|
2005-04-18 14:17:43 +02:00
|
|
|
'''Class for account informations'''
|
2005-03-07 18:01:56 +01:00
|
|
|
def on_account_modification_window_destroy(self, widget):
|
2005-04-18 14:17:43 +02:00
|
|
|
'''close window'''
|
2005-04-20 18:35:40 +02:00
|
|
|
if self.plugin.windows.has_key(self.account):
|
2005-04-20 19:48:49 +02:00
|
|
|
if self.plugin.windows[self.account].has_key('account_modification'):
|
2005-04-20 18:35:40 +02:00
|
|
|
del self.plugin.windows[self.account]['account_modification']
|
|
|
|
return
|
|
|
|
if self.plugin.windows.has_key('account_modification'):
|
|
|
|
del self.plugin.windows['account_modification']
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-04-17 20:36:09 +02:00
|
|
|
def on_cancel_button_clicked(self, widget):
|
2005-04-12 17:30:09 +02:00
|
|
|
self.window.destroy()
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
def __init__(self, plugin, account = ''):
|
|
|
|
self.xml = gtk.glade.XML(GTKGUI_GLADE, 'account_modification_window', APP)
|
|
|
|
self.window = self.xml.get_widget('account_modification_window')
|
|
|
|
self.plugin = plugin
|
|
|
|
self.account = account
|
|
|
|
self.modify = False
|
|
|
|
|
|
|
|
self.xml.signal_autoconnect(self)
|
|
|
|
if account:
|
|
|
|
self.modify = True
|
|
|
|
self.init_account()
|
|
|
|
self.xml.get_widget('new_account_checkbutton').set_sensitive(False)
|
|
|
|
self.xml.get_widget('name_entry').grab_focus()
|
|
|
|
self.window.show_all()
|
|
|
|
|
2005-04-06 20:51:54 +02:00
|
|
|
def on_checkbutton_toggled(self, widget, widgets):
|
2005-04-18 14:17:43 +02:00
|
|
|
'''set or unset sensitivity of widgets when widget is toggled'''
|
2005-04-06 20:51:54 +02:00
|
|
|
for w in widgets:
|
|
|
|
w.set_sensitive(widget.get_active())
|
|
|
|
|
2005-04-12 17:30:09 +02:00
|
|
|
def on_use_proxy_checkbutton_toggled(self, widget):
|
2005-05-10 17:08:31 +02:00
|
|
|
proxy_table = self.xml.get_widget('proxy_table')
|
2005-05-11 23:02:22 +02:00
|
|
|
widgets = proxy_table.get_children()
|
|
|
|
widgets.append(proxy_table)
|
|
|
|
self.on_checkbutton_toggled(widget, widgets)
|
|
|
|
|
2005-04-22 03:05:31 +02:00
|
|
|
|
|
|
|
def init_account_gpg(self):
|
|
|
|
keyid = gajim.config.get_per('accounts', self.account, 'keyid')
|
2005-05-09 21:52:43 +02:00
|
|
|
keyname = gajim.config.get_per('accounts', self.account, 'keyname')
|
2005-04-22 03:05:31 +02:00
|
|
|
savegpgpass = gajim.config.get_per('accounts', self.account,
|
2005-05-09 21:52:43 +02:00
|
|
|
'savegpgpass')
|
2005-04-22 03:05:31 +02:00
|
|
|
|
|
|
|
if not keyid or not gajim.config.get('usegpg'):
|
|
|
|
return
|
|
|
|
|
2005-04-24 17:47:53 +02:00
|
|
|
self.xml.get_widget('gpg_key_label').set_text(keyid)
|
2005-04-22 03:05:31 +02:00
|
|
|
self.xml.get_widget('gpg_name_label').set_text(keyname)
|
|
|
|
gpg_save_password_checkbutton = \
|
|
|
|
self.xml.get_widget('gpg_save_password_checkbutton')
|
|
|
|
gpg_save_password_checkbutton.set_sensitive(True)
|
|
|
|
gpg_save_password_checkbutton.set_active(savegpgpass)
|
|
|
|
|
|
|
|
if savegpgpass:
|
|
|
|
entry = self.xml.get_widget('gpg_password_entry')
|
|
|
|
entry.set_sensitive(True)
|
|
|
|
gpgpassword = gajim.config.get_per('accounts',
|
|
|
|
self.account, 'gpgpassword')
|
|
|
|
entry.set_text(gpgpassword)
|
2005-04-12 17:30:09 +02:00
|
|
|
|
2005-04-15 01:00:25 +02:00
|
|
|
def init_account(self):
|
2005-04-18 14:17:43 +02:00
|
|
|
'''Initialize window with defaults values'''
|
2005-04-15 01:00:25 +02:00
|
|
|
self.xml.get_widget('name_entry').set_text(self.account)
|
2005-04-22 03:05:31 +02:00
|
|
|
jid = gajim.config.get_per('accounts', self.account, 'name') \
|
|
|
|
+ '@' + gajim.config.get_per('accounts',
|
|
|
|
self.account, 'hostname')
|
2005-04-15 01:00:25 +02:00
|
|
|
self.xml.get_widget('jid_entry').set_text(jid)
|
|
|
|
self.xml.get_widget('save_password_checkbutton').set_active( \
|
|
|
|
gajim.config.get_per('accounts', self.account, 'savepass'))
|
|
|
|
if gajim.config.get_per('accounts', self.account, 'savepass'):
|
2005-04-22 03:05:31 +02:00
|
|
|
passstr = gajim.config.get_per('accounts',
|
|
|
|
self.account, 'password')
|
2005-04-15 01:00:25 +02:00
|
|
|
password_entry = self.xml.get_widget('password_entry')
|
|
|
|
password_entry.set_sensitive(True)
|
2005-04-22 03:05:31 +02:00
|
|
|
password_entry.set_text(passstr)
|
|
|
|
|
2005-04-15 01:00:25 +02:00
|
|
|
self.xml.get_widget('resource_entry').set_text(gajim.config.get_per( \
|
|
|
|
'accounts', self.account, 'resource'))
|
|
|
|
self.xml.get_widget('priority_spinbutton').set_value(gajim.config.\
|
|
|
|
get_per('accounts', self.account, 'priority'))
|
2005-04-12 17:30:09 +02:00
|
|
|
|
2005-04-15 01:00:25 +02:00
|
|
|
use_proxy = gajim.config.get_per('accounts', self.account, 'use_proxy')
|
|
|
|
self.xml.get_widget('use_proxy_checkbutton').set_active(use_proxy)
|
2005-04-12 17:30:09 +02:00
|
|
|
|
2005-04-20 19:59:42 +02:00
|
|
|
entry = self.xml.get_widget('proxyhost_entry')
|
|
|
|
entry.set_sensitive(use_proxy)
|
|
|
|
entry.set_text(gajim.config.get_per('accounts', self.account,
|
|
|
|
'proxyhost'))
|
|
|
|
entry = self.xml.get_widget('proxyport_entry')
|
|
|
|
entry.set_sensitive(use_proxy)
|
2005-05-11 18:32:34 +02:00
|
|
|
entry.set_text(str(gajim.config.get_per('accounts', self.account,
|
|
|
|
'proxyport')))
|
2005-05-10 17:38:16 +02:00
|
|
|
|
|
|
|
entry = self.xml.get_widget('proxyuser_entry')
|
|
|
|
entry.set_sensitive(use_proxy)
|
|
|
|
entry.set_text(gajim.config.get_per('accounts', self.account,
|
|
|
|
'proxyuser'))
|
|
|
|
|
|
|
|
entry = self.xml.get_widget('proxypass_entry')
|
|
|
|
entry.set_sensitive(use_proxy)
|
|
|
|
entry.set_text(gajim.config.get_per('accounts', self.account,
|
2005-05-10 17:41:55 +02:00
|
|
|
'proxypass'))
|
2005-05-15 22:17:44 +02:00
|
|
|
|
2005-05-21 17:27:27 +02:00
|
|
|
usetls = gajim.config.get_per('accounts', self.account, 'usetls')
|
|
|
|
self.xml.get_widget('use_tls_checkbutton').set_active(usetls)
|
2005-05-09 21:52:43 +02:00
|
|
|
|
2005-02-28 23:09:21 +01:00
|
|
|
gpg_key_label = self.xml.get_widget('gpg_key_label')
|
2005-04-22 03:05:31 +02:00
|
|
|
if gajim.config.get('usegpg'):
|
2005-04-23 19:40:43 +02:00
|
|
|
self.init_account_gpg()
|
2005-04-22 03:05:31 +02:00
|
|
|
else:
|
2005-05-21 17:19:58 +02:00
|
|
|
gpg_key_label.set_text(_('GPG is not usable on this computer'))
|
2005-02-28 23:09:21 +01:00
|
|
|
self.xml.get_widget('gpg_choose_button').set_sensitive(False)
|
2005-04-15 01:00:25 +02:00
|
|
|
self.xml.get_widget('autoconnect_checkbutton').set_active(gajim.config.\
|
|
|
|
get_per('accounts', self.account, 'autoconnect'))
|
|
|
|
self.xml.get_widget('sync_with_global_status_checkbutton').set_active( \
|
|
|
|
gajim.config.get_per('accounts', self.account, \
|
|
|
|
'sync_with_global_status'))
|
|
|
|
list_no_log_for = gajim.config.get_per('accounts', self.account, \
|
|
|
|
'no_log_for').split()
|
|
|
|
if self.account 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):
|
2005-04-18 14:17:43 +02:00
|
|
|
'''When save button is clicked: Save information in config file'''
|
2005-05-10 11:20:35 +02:00
|
|
|
config = {}
|
2005-02-28 23:09:21 +01:00
|
|
|
name = self.xml.get_widget('name_entry').get_text()
|
2005-04-14 09:20:14 +02:00
|
|
|
if gajim.connections.has_key(self.account):
|
2005-04-22 03:05:31 +02:00
|
|
|
if name != self.account and \
|
|
|
|
gajim.connections[self.account].connected != 0:
|
2005-04-14 19:07:55 +02:00
|
|
|
dialogs.Error_dialog(_('You must be offline to change the account\'s name'))
|
2005-03-31 14:17:07 +02:00
|
|
|
return
|
2005-05-10 11:20:35 +02:00
|
|
|
if (name == ''):
|
|
|
|
dialogs.Error_dialog(_('You must enter a name for this account'))
|
|
|
|
return
|
|
|
|
if name.find(' ') != -1:
|
|
|
|
dialogs.Error_dialog(_('Spaces are not permited in account name'))
|
|
|
|
return
|
2005-02-28 23:09:21 +01:00
|
|
|
jid = self.xml.get_widget('jid_entry').get_text()
|
2005-05-10 11:20:35 +02:00
|
|
|
if jid == '' or jid.count('@') != 1:
|
|
|
|
dialogs.Error_dialog(_('You must enter a Jabber ID for this account\nFor example: someone@someserver.org'))
|
|
|
|
return
|
|
|
|
new_account = self.xml.get_widget('new_account_checkbutton').get_active()
|
|
|
|
config['savepass'] = self.xml.get_widget(
|
|
|
|
'save_password_checkbutton').get_active()
|
|
|
|
config['password'] = self.xml.get_widget('password_entry').get_text()
|
|
|
|
if new_account and config['password'] == '':
|
|
|
|
dialogs.Error_dialog(_('You must enter a password to register a new account'))
|
|
|
|
return
|
|
|
|
config['resource'] = self.xml.get_widget('resource_entry').get_text()
|
|
|
|
config['priority'] = self.xml.get_widget('priority_spinbutton').\
|
|
|
|
get_value_as_int()
|
|
|
|
config['autoconnect'] = self.xml.get_widget('autoconnect_checkbutton').\
|
|
|
|
get_active()
|
2005-03-06 20:19:21 +01:00
|
|
|
|
2005-04-15 01:00:25 +02:00
|
|
|
if self.account:
|
2005-04-22 03:05:31 +02:00
|
|
|
list_no_log_for = gajim.config.get_per('accounts',
|
|
|
|
self.account, 'no_log_for').split()
|
2005-04-15 01:00:25 +02:00
|
|
|
else:
|
|
|
|
list_no_log_for = []
|
2005-03-06 20:19:21 +01:00
|
|
|
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)
|
2005-05-10 11:20:35 +02:00
|
|
|
config['no_log_for'] = ' '.join(list_no_log_for)
|
|
|
|
|
|
|
|
config['sync_with_global_status'] = self.xml.get_widget(
|
2005-04-21 19:43:47 +02:00
|
|
|
'sync_with_global_status_checkbutton').get_active()
|
2005-04-21 01:20:26 +02:00
|
|
|
|
2005-05-10 11:20:35 +02:00
|
|
|
config['use_proxy'] = self.xml.get_widget('use_proxy_checkbutton').\
|
|
|
|
get_active()
|
|
|
|
config['proxyhost'] = self.xml.get_widget('proxyhost_entry').get_text()
|
|
|
|
config['proxyport'] = self.xml.get_widget('proxyport_entry').get_text()
|
2005-05-10 17:38:16 +02:00
|
|
|
config['proxyuser'] = self.xml.get_widget('proxyuser_entry').get_text()
|
|
|
|
config['proxypass'] = self.xml.get_widget('proxypass_entry').get_text()
|
2005-05-10 11:20:35 +02:00
|
|
|
if config['use_proxy']:
|
|
|
|
if config['proxyport'] != '':
|
2005-05-15 13:52:35 +02:00
|
|
|
if not config['proxyport'].isdigit():
|
|
|
|
dialogs.Error_dialog(_('Proxy port must be a port number'))
|
2005-03-16 02:27:37 +01:00
|
|
|
return
|
2005-05-15 13:52:35 +02:00
|
|
|
config['proxyport'] = int(config['proxyport'])
|
|
|
|
|
2005-04-12 17:30:09 +02:00
|
|
|
else:
|
2005-04-14 19:07:55 +02:00
|
|
|
dialogs.Error_dialog(_('You must enter a proxy port to use proxy'))
|
2005-04-12 17:30:09 +02:00
|
|
|
return
|
2005-05-10 11:20:35 +02:00
|
|
|
if config['proxyhost'] == '':
|
2005-04-14 19:07:55 +02:00
|
|
|
dialogs.Error_dialog(_('You must enter a proxy host to use proxy'))
|
2005-04-12 17:30:09 +02:00
|
|
|
return
|
2005-03-11 02:10:30 +01:00
|
|
|
|
2005-05-10 11:20:35 +02:00
|
|
|
config['usetls'] = self.xml.get_widget('use_tls_checkbutton').get_active()
|
|
|
|
(config['name'], config['hostname']) = jid.split('@')
|
|
|
|
config['keyname'] = self.xml.get_widget('gpg_name_label').get_text()
|
|
|
|
if config['keyname'] == '': #no key selected
|
|
|
|
config['keyid'] = ''
|
|
|
|
config['savegpgpass'] = False
|
|
|
|
config['gpgpassword'] = ''
|
2004-10-10 20:44:38 +02:00
|
|
|
else:
|
2005-05-10 11:20:35 +02:00
|
|
|
config['keyid'] = self.xml.get_widget('gpg_key_label').get_text()
|
|
|
|
config['savegpgpass'] = self.xml.get_widget(
|
2005-04-21 19:43:47 +02:00
|
|
|
'gpg_save_password_checkbutton').get_active()
|
2005-05-10 11:20:35 +02:00
|
|
|
config['gpgpassword'] = 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.nicks[name] = self.plugin.nicks[self.account]
|
2005-05-12 20:55:01 +02:00
|
|
|
self.plugin.allow_notifications[name] = \
|
|
|
|
self.plugin.allow_notifications[self.account]
|
2004-05-15 18:50:38 +02:00
|
|
|
self.plugin.roster.groups[name] = \
|
|
|
|
self.plugin.roster.groups[self.account]
|
|
|
|
self.plugin.roster.contacts[name] = \
|
|
|
|
self.plugin.roster.contacts[self.account]
|
2005-04-05 01:03:26 +02:00
|
|
|
self.plugin.roster.newly_added[name] = \
|
|
|
|
self.plugin.roster.newly_added[self.account]
|
|
|
|
self.plugin.roster.to_be_removed[name] = \
|
|
|
|
self.plugin.roster.to_be_removed[self.account]
|
2005-03-09 22:01:31 +01:00
|
|
|
self.plugin.sleeper_state[name] = \
|
|
|
|
self.plugin.sleeper_state[self.account]
|
2005-03-21 23:41:30 +01:00
|
|
|
#upgrade account variable in opened windows
|
2005-04-20 12:21:33 +02:00
|
|
|
for kind in ['infos', 'chats', 'gc', 'gc_config']:
|
2005-03-21 23:41:30 +01:00
|
|
|
for j in self.plugin.windows[name][kind]:
|
|
|
|
self.plugin.windows[name][kind][j].account = name
|
|
|
|
#upgrade account in systray
|
|
|
|
for list in self.plugin.systray.jids:
|
|
|
|
if list[0] == self.account:
|
|
|
|
list[0] = name
|
2004-05-15 18:50:38 +02:00
|
|
|
del self.plugin.windows[self.account]
|
|
|
|
del self.plugin.queues[self.account]
|
|
|
|
del self.plugin.nicks[self.account]
|
2005-05-12 20:55:01 +02:00
|
|
|
del self.plugin.allow_notifications[self.account]
|
2004-05-15 18:50:38 +02:00
|
|
|
del self.plugin.roster.groups[self.account]
|
|
|
|
del self.plugin.roster.contacts[self.account]
|
2005-03-09 22:01:31 +01:00
|
|
|
del self.plugin.sleeper_state[self.account]
|
2005-04-14 09:05:10 +02:00
|
|
|
gajim.connections[self.account].name = name
|
|
|
|
gajim.connections[name] = gajim.connections[self.account]
|
|
|
|
del gajim.connections[self.account]
|
|
|
|
gajim.config.del_per('accounts', self.account)
|
|
|
|
gajim.config.add_per('accounts', name)
|
2005-05-14 13:01:09 +02:00
|
|
|
self.account = name
|
2005-04-14 09:05:10 +02:00
|
|
|
|
2005-05-10 11:20:35 +02:00
|
|
|
for opt in config:
|
|
|
|
gajim.config.set_per('accounts', name, opt, config[opt])
|
2005-05-10 16:35:21 +02:00
|
|
|
if config['savepass']:
|
|
|
|
gajim.connections[name].password = config['password']
|
2004-06-06 21:35:10 +02:00
|
|
|
#refresh accounts window
|
2005-04-04 17:51:29 +02:00
|
|
|
if self.plugin.windows.has_key('accounts'):
|
|
|
|
self.plugin.windows['accounts'].init_accounts()
|
2004-06-06 21:35:10 +02:00
|
|
|
#refresh roster
|
|
|
|
self.plugin.roster.draw_roster()
|
2005-04-21 01:20:26 +02:00
|
|
|
self.plugin.save_config()
|
2005-04-12 17:30:09 +02:00
|
|
|
self.window.destroy()
|
2004-06-06 21:35:10 +02:00
|
|
|
return
|
2004-05-15 18:50:38 +02:00
|
|
|
#if it's a new account
|
2005-04-14 09:05:10 +02:00
|
|
|
if name in gajim.connections:
|
2005-05-17 13:55:30 +02:00
|
|
|
dialogs.Error_dialog(_('This name is taken by an another account of yours'))
|
2004-10-10 20:44:38 +02:00
|
|
|
return
|
2005-05-10 11:20:35 +02:00
|
|
|
con = connection.Connection(name)
|
|
|
|
self.plugin.register_handlers(con)
|
2004-10-10 20:44:38 +02:00
|
|
|
#if we neeed to register a new account
|
2005-05-10 11:20:35 +02:00
|
|
|
if new_account:
|
|
|
|
con.new_account(name, config)
|
2004-10-10 20:44:38 +02:00
|
|
|
return
|
2005-05-10 11:20:35 +02:00
|
|
|
# The account we add already exists on the server
|
|
|
|
gajim.connections[name] = con
|
|
|
|
gajim.config.add_per('accounts', name)
|
|
|
|
for opt in config:
|
|
|
|
gajim.config.set_per('accounts', name, opt, config[opt])
|
|
|
|
if config['savepass']:
|
|
|
|
gajim.connections[name].password = config['password']
|
2004-05-15 18:50:38 +02:00
|
|
|
#update variables
|
2005-04-20 12:21:33 +02:00
|
|
|
self.plugin.windows[name] = {'infos': {}, 'chats': {}, 'gc': {}, \
|
|
|
|
'gc_config': {}}
|
2004-05-15 18:50:38 +02:00
|
|
|
self.plugin.queues[name] = {}
|
2005-04-14 09:42:26 +02:00
|
|
|
gajim.connections[name].connected = 0
|
2004-05-15 18:50:38 +02:00
|
|
|
self.plugin.roster.groups[name] = {}
|
|
|
|
self.plugin.roster.contacts[name] = {}
|
2005-04-05 01:03:26 +02:00
|
|
|
self.plugin.roster.newly_added[name] = []
|
|
|
|
self.plugin.roster.to_be_removed[name] = []
|
2005-05-10 11:20:35 +02:00
|
|
|
self.plugin.nicks[name] = config['name']
|
2005-05-12 20:55:01 +02:00
|
|
|
self.plugin.allow_notifications[name] = False
|
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-04-03 10:22:57 +02:00
|
|
|
if self.plugin.windows.has_key('accounts'):
|
|
|
|
self.plugin.windows['accounts'].init_accounts()
|
2004-05-15 18:50:38 +02:00
|
|
|
#refresh roster
|
|
|
|
self.plugin.roster.draw_roster()
|
2005-04-21 01:20:26 +02:00
|
|
|
self.plugin.save_config()
|
2005-04-12 17:30:09 +02:00
|
|
|
self.window.destroy()
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-03-04 14:10:00 +01:00
|
|
|
def on_change_password_button_clicked(self, widget):
|
2005-04-14 19:07:55 +02:00
|
|
|
dialog = dialogs.Change_password_dialog(self.plugin, self.account)
|
2005-03-04 14:10:00 +01:00
|
|
|
new_password = dialog.run()
|
|
|
|
if new_password != -1:
|
2005-04-14 11:38:08 +02:00
|
|
|
gajim.connections[self.account].change_password(new_password, \
|
|
|
|
self.plugin.nicks[self.account])
|
2005-03-04 14:10:00 +01:00
|
|
|
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):
|
2005-04-18 14:17:43 +02:00
|
|
|
'''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-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):
|
2005-05-17 13:55:30 +02:00
|
|
|
dialogs.Error_dialog(_('You must first create your account before editing your personal information'))
|
2005-03-07 22:03:48 +01:00
|
|
|
return
|
|
|
|
jid = self.xml.get_widget('jid_entry').get_text()
|
2005-04-14 09:20:14 +02:00
|
|
|
if gajim.connections[self.account].connected < 2:
|
2005-05-21 03:28:18 +02:00
|
|
|
dialogs.Error_dialog(_('You must be connected to edit your personal information'))
|
2005-03-07 22:03:48 +01:00
|
|
|
return
|
|
|
|
if not self.plugin.windows[self.account]['infos'].has_key('vcard'):
|
|
|
|
self.plugin.windows[self.account]['infos'][jid] = \
|
2005-05-20 17:05:22 +02:00
|
|
|
dialogs.Vcard_window(jid, self.plugin, self.account, True)
|
2005-04-14 11:38:08 +02:00
|
|
|
gajim.connections[self.account].request_vcard(jid)
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-04-22 01:20:18 +02:00
|
|
|
def on_gpg_choose_button_clicked(self, widget, data = None):
|
2005-04-14 09:05:10 +02:00
|
|
|
secret_keys = gajim.connections[self.account].ask_gpg_secrete_keys()
|
2005-04-12 23:09:06 +02:00
|
|
|
if not secret_keys:
|
2005-04-14 19:07:55 +02:00
|
|
|
dialogs.Error_dialog(_('error contacting %s') % service)
|
2005-04-12 23:09:06 +02:00
|
|
|
return
|
|
|
|
secret_keys['None'] = 'None'
|
2005-04-14 19:07:55 +02:00
|
|
|
w = dialogs.choose_gpg_key_dialog(secret_keys)
|
2004-10-10 20:44:38 +02:00
|
|
|
keyID = w.run()
|
|
|
|
if keyID == -1:
|
|
|
|
return
|
2005-04-22 03:05:31 +02:00
|
|
|
checkbutton = self.xml.get_widget('gpg_save_password_checkbutton')
|
2005-02-28 23:09:21 +01:00
|
|
|
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('')
|
2005-04-22 03:05:31 +02:00
|
|
|
checkbutton.set_sensitive(False)
|
2005-02-28 23:09:21 +01:00
|
|
|
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])
|
2005-04-22 03:05:31 +02:00
|
|
|
checkbutton.set_sensitive(True)
|
|
|
|
checkbutton.set_active(False)
|
2005-02-28 23:09:21 +01:00
|
|
|
self.xml.get_widget('gpg_password_entry').set_text('')
|
2004-11-01 14:41:00 +01:00
|
|
|
|
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-03-11 01:32:41 +01:00
|
|
|
self.xml.get_widget('password_entry').grab_focus()
|
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-05-10 17:39:35 +02:00
|
|
|
#---------- Accounts_window class -------------#
|
2005-03-07 18:01:56 +01:00
|
|
|
class Accounts_window:
|
2005-04-18 14:17:43 +02:00
|
|
|
'''Class for accounts window: lists of accounts'''
|
2005-04-02 22:35:33 +02:00
|
|
|
def on_accounts_window_destroy(self, widget):
|
|
|
|
del self.plugin.windows['accounts']
|
2005-03-29 19:49:10 +02:00
|
|
|
|
2005-03-01 19:00:34 +01:00
|
|
|
def on_close_button_clicked(self, widget):
|
2005-04-12 17:30:09 +02:00
|
|
|
self.window.destroy()
|
2005-04-02 22:35:33 +02:00
|
|
|
|
2004-05-15 18:50:38 +02:00
|
|
|
def init_accounts(self):
|
2005-04-18 14:17:43 +02:00
|
|
|
'''initialize listStore with existing accounts'''
|
2005-03-11 02:10:30 +01:00
|
|
|
self.modify_button.set_sensitive(False)
|
2005-04-20 00:29:38 +02:00
|
|
|
self.remove_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()
|
2005-04-14 09:05:10 +02:00
|
|
|
for account in gajim.connections:
|
2004-05-15 18:50:38 +02:00
|
|
|
iter = model.append()
|
2005-04-21 00:30:04 +02:00
|
|
|
model.set(iter, 0, account, 1, gajim.config.get_per('accounts',
|
2005-04-14 09:05:10 +02:00
|
|
|
account, 'hostname'))
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-03-01 19:27:21 +01:00
|
|
|
def on_accounts_treeview_cursor_changed(self, widget):
|
2005-04-18 14:17:43 +02:00
|
|
|
'''Activate delete and modify buttons when a row is selected'''
|
2005-03-11 02:10:30 +01:00
|
|
|
self.modify_button.set_sensitive(True)
|
2005-04-20 00:29:38 +02:00
|
|
|
self.remove_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):
|
2005-04-18 14:17:43 +02:00
|
|
|
'''When new button is clicked : open an account information window'''
|
2005-04-17 23:31:18 +02:00
|
|
|
if self.plugin.windows.has_key('account_modification'):
|
2005-04-17 22:18:50 +02:00
|
|
|
self.plugin.windows['account_modification'].window.present()
|
|
|
|
else:
|
2005-04-04 17:51:29 +02:00
|
|
|
self.plugin.windows['account_modification'] = \
|
2005-04-15 01:00:25 +02:00
|
|
|
Account_modification_window(self.plugin, '')
|
2005-04-17 22:18:50 +02:00
|
|
|
|
2005-04-20 00:29:38 +02:00
|
|
|
def on_remove_button_clicked(self, widget):
|
2005-04-20 01:43:58 +02:00
|
|
|
'''When delete button is clicked :
|
2005-04-18 14:17:43 +02:00
|
|
|
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()
|
2005-04-22 03:05:31 +02:00
|
|
|
if not iter:
|
|
|
|
return
|
2004-05-15 18:50:38 +02:00
|
|
|
account = model.get_value(iter, 0)
|
2005-04-20 01:43:58 +02:00
|
|
|
if self.plugin.windows[account].has_key('remove_account'):
|
|
|
|
self.plugin.windows[account]['remove_account'].window.present()
|
|
|
|
else:
|
|
|
|
self.plugin.windows[account]['remove_account'] = \
|
2005-04-21 00:30:04 +02:00
|
|
|
Remove_account_window(self.plugin, account)
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-03-01 19:00:34 +01:00
|
|
|
def on_modify_button_clicked(self, widget):
|
2005-04-18 14:17:43 +02:00
|
|
|
'''When modify button is clicked:
|
|
|
|
open/show the account modification window for this account'''
|
2005-04-17 22:18:50 +02:00
|
|
|
sel = self.accounts_treeview.get_selection()
|
|
|
|
(model, iter) = sel.get_selected()
|
2005-04-22 03:05:31 +02:00
|
|
|
if not iter:
|
|
|
|
return
|
2005-04-17 22:18:50 +02:00
|
|
|
account = model.get_value(iter, 0)
|
2005-04-17 23:31:18 +02:00
|
|
|
if self.plugin.windows[account].has_key('account_modification'):
|
2005-04-17 22:18:50 +02:00
|
|
|
self.plugin.windows[account]['account_modification'].window.present()
|
2005-03-11 02:10:30 +01:00
|
|
|
else:
|
2005-04-17 22:18:50 +02:00
|
|
|
self.plugin.windows[account]['account_modification'] = \
|
|
|
|
Account_modification_window(self.plugin, account)
|
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')
|
2005-03-11 02:10:30 +01:00
|
|
|
self.modify_button = self.xml.get_widget('modify_button')
|
2005-04-20 00:29:38 +02:00
|
|
|
self.remove_button = self.xml.get_widget('remove_button')
|
2005-04-22 03:05:31 +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-04-22 03:05:31 +02:00
|
|
|
self.accounts_treeview.insert_column_with_attributes(-1,
|
|
|
|
_('Name'), renderer, text = 0)
|
2004-05-15 18:50:38 +02:00
|
|
|
renderer = gtk.CellRendererText()
|
2005-04-22 03:05:31 +02:00
|
|
|
self.accounts_treeview.insert_column_with_attributes(-1,
|
|
|
|
_('Server'), renderer, text = 1)
|
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-04-04 17:51:29 +02:00
|
|
|
self.window.show_all()
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
#---------- Service_registration_window class -------------#
|
2005-03-28 03:05:28 +02:00
|
|
|
class Service_registration_window:
|
2005-04-18 14:17:43 +02:00
|
|
|
'''Class for Service registration window:
|
|
|
|
Window that appears when we want to subscribe to a service'''
|
2005-03-02 14:11:21 +01:00
|
|
|
def on_cancel_button_clicked(self, widget):
|
2005-04-12 17:30:09 +02:00
|
|
|
self.window.destroy()
|
2004-05-15 18:50:38 +02:00
|
|
|
|
|
|
|
def draw_table(self):
|
2005-04-18 14:17:43 +02:00
|
|
|
'''Draw the table in the window'''
|
2004-05-15 18:50:38 +02:00
|
|
|
nbrow = 0
|
|
|
|
table = self.xml.get_widget('table')
|
|
|
|
for name in self.infos.keys():
|
2005-05-26 00:15:28 +02:00
|
|
|
if name in ['key', 'instructions', 'x', 'registered']:
|
2005-04-20 20:04:26 +02:00
|
|
|
continue
|
|
|
|
|
|
|
|
nbrow = nbrow + 1
|
|
|
|
table.resize(rows = nbrow, columns = 2)
|
|
|
|
label = gtk.Label(name.capitalize() + ':')
|
|
|
|
table.attach(label, 0, 1, nbrow - 1, nbrow, 0, 0, 0, 0)
|
|
|
|
entry = gtk.Entry()
|
2005-05-22 03:45:06 +02:00
|
|
|
entry.set_activates_default(True)
|
2005-04-20 20:04:26 +02:00
|
|
|
entry.set_text(self.infos[name])
|
2005-05-22 13:54:09 +02:00
|
|
|
if name == 'password':
|
|
|
|
entry.set_visibility(False)
|
2005-04-20 20:04:26 +02:00
|
|
|
table.attach(entry, 1, 2, nbrow - 1, nbrow, 0, 0, 0, 0)
|
|
|
|
self.entries[name] = entry
|
|
|
|
if nbrow == 1:
|
|
|
|
entry.grab_focus()
|
2004-05-15 18:50:38 +02:00
|
|
|
table.show_all()
|
|
|
|
|
2005-03-02 14:11:21 +01:00
|
|
|
def on_ok_button_clicked(self, widget):
|
2005-05-20 17:05:22 +02:00
|
|
|
'''When Ok button is clicked:
|
2005-04-18 14:17:43 +02:00
|
|
|
send registration info to the core'''
|
2004-05-15 18:50:38 +02:00
|
|
|
for name in self.entries.keys():
|
|
|
|
self.infos[name] = self.entries[name].get_text()
|
2005-05-26 00:15:28 +02:00
|
|
|
if self.infos.has_key('instructions'):
|
|
|
|
del self.infos['instructions']
|
|
|
|
if self.infos.has_key('registered'):
|
|
|
|
del self.infos['registered']
|
|
|
|
else:
|
|
|
|
user1 = User(self.service, self.service, ['Transports'], 'offline',
|
2005-04-22 03:05:31 +02:00
|
|
|
'offline', 'from', '', '', 0, '')
|
2005-05-26 00:15:28 +02:00
|
|
|
self.plugin.roster.contacts[self.account][self.service] = [user1]
|
|
|
|
self.plugin.roster.add_user_to_roster(self.service, self.account)
|
2005-04-26 20:45:54 +02:00
|
|
|
gajim.connections[self.account].register_agent(self.service, self.infos)
|
2005-04-12 17:30:09 +02:00
|
|
|
self.window.destroy()
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-03-28 03:05:28 +02:00
|
|
|
def __init__(self, service, infos, plugin, account):
|
2005-04-22 03:05:31 +02:00
|
|
|
self.xml = gtk.glade.XML(GTKGUI_GLADE,
|
|
|
|
'service_registration_window', APP)
|
2005-03-28 03:05:28 +02:00
|
|
|
self.service = service
|
2004-05-15 18:50:38 +02:00
|
|
|
self.infos = infos
|
|
|
|
self.plugin = plugin
|
|
|
|
self.account = account
|
2005-04-18 14:17:43 +02:00
|
|
|
self.window = self.xml.get_widget('service_registration_window')
|
2005-05-26 00:27:40 +02:00
|
|
|
if infos.has_key('registered'):
|
|
|
|
self.window.set_title(_('Edit ' + service)
|
|
|
|
else:
|
|
|
|
self.window.set_title(_('Register to ' + service)
|
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)
|
2005-04-04 17:51:29 +02:00
|
|
|
self.window.show_all()
|
2004-05-15 18:50:38 +02:00
|
|
|
|
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
#---------- Add_remove_emoticons_window class -------------#
|
2005-04-06 20:51:54 +02:00
|
|
|
class Add_remove_emoticons_window:
|
|
|
|
def __init__(self, plugin):
|
|
|
|
self.xml = gtk.glade.XML(GTKGUI_GLADE, 'add_remove_emoticons_window', APP)
|
|
|
|
self.window = self.xml.get_widget('add_remove_emoticons_window')
|
|
|
|
self.plugin = plugin
|
|
|
|
|
|
|
|
#emoticons
|
|
|
|
self.emot_tree = self.xml.get_widget('emoticons_treeview')
|
|
|
|
model = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING, gtk.Image)
|
|
|
|
self.emot_tree.set_model(model)
|
2005-04-06 21:46:39 +02:00
|
|
|
col = gtk.TreeViewColumn(_('Text'))
|
2005-04-06 20:51:54 +02:00
|
|
|
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)
|
2005-04-22 01:20:18 +02:00
|
|
|
col.set_attributes(renderer, text = 0)
|
2005-04-06 20:51:54 +02:00
|
|
|
|
|
|
|
col = gtk.TreeViewColumn(_('Image'))
|
|
|
|
self.emot_tree.append_column(col)
|
2005-04-18 16:05:30 +02:00
|
|
|
renderer = cell_renderer_image.CellRendererImage()
|
2005-04-06 20:51:54 +02:00
|
|
|
col.pack_start(renderer, expand = False)
|
|
|
|
col.add_attribute(renderer, 'image', 2)
|
|
|
|
|
|
|
|
self.fill_emot_treeview()
|
2005-05-20 17:05:22 +02:00
|
|
|
self.emot_tree.get_model().connect('row-changed',
|
2005-04-06 20:51:54 +02:00
|
|
|
self.on_emoticons_treemodel_row_changed)
|
2005-05-20 17:05:22 +02:00
|
|
|
self.emot_tree.get_model().connect('row-deleted',
|
2005-04-06 20:51:54 +02:00
|
|
|
self.on_emoticons_treemodel_row_deleted)
|
|
|
|
|
|
|
|
self.plugin = plugin
|
|
|
|
self.xml.signal_autoconnect(self)
|
|
|
|
|
|
|
|
def on_add_remove_emoticons_window_delete_event(self, widget, event):
|
|
|
|
self.window.hide()
|
|
|
|
return True # do NOT destroy the window
|
|
|
|
|
|
|
|
def on_close_button_clicked(self, widget):
|
|
|
|
self.window.hide()
|
|
|
|
|
|
|
|
def on_emoticons_treemodel_row_deleted(self, model, path):
|
2005-04-16 16:50:26 +02:00
|
|
|
iter = model.get_iter(path)
|
|
|
|
gajim.config.get_per('emoticons', model.get_value(iter, 0))
|
2005-04-12 17:30:09 +02:00
|
|
|
self.plugin.save_config()
|
2005-04-06 20:51:54 +02:00
|
|
|
|
|
|
|
def on_emoticons_treemodel_row_changed(self, model, path, iter):
|
2005-04-16 16:50:26 +02:00
|
|
|
emots = gajim.config.get_per('emoticons')
|
|
|
|
emot = model.get_value(iter, 0)
|
|
|
|
if not emot in emots:
|
|
|
|
gajim.config.add_per('emoticons', emot)
|
|
|
|
gajim.config.set_per('emoticons', emot, 'path', model.get_value(iter, 1))
|
2005-04-12 17:30:09 +02:00
|
|
|
self.plugin.save_config()
|
2005-04-06 20:51:54 +02: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
|
2005-04-22 03:05:31 +02:00
|
|
|
if img.get_storage_type() != gtk.IMAGE_PIXBUF:
|
2005-04-06 20:51:54 +02:00
|
|
|
return 0
|
2005-04-22 03:05:31 +02:00
|
|
|
pix = img.get_pixbuf()
|
|
|
|
|
2005-04-06 20:51:54 +02:00
|
|
|
if pix.get_width() > 24 or pix.get_height() > 24:
|
|
|
|
return 0
|
|
|
|
return 1
|
|
|
|
|
|
|
|
def fill_emot_treeview(self):
|
|
|
|
model = self.emot_tree.get_model()
|
|
|
|
model.clear()
|
2005-04-16 16:50:26 +02:00
|
|
|
emots = gajim.config.get_per('emoticons')
|
|
|
|
for emot in emots:
|
|
|
|
file = gajim.config.get_per('emoticons', emot, 'path')
|
|
|
|
iter = model.append((emot, file, None))
|
2005-04-06 20:51:54 +02:00
|
|
|
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)
|
|
|
|
|
|
|
|
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-04-22 01:20:18 +02:00
|
|
|
def on_set_image_button_clicked(self, widget, data = None):
|
2005-04-06 20:51:54 +02:00
|
|
|
(model, iter) = self.emot_tree.get_selection().get_selected()
|
|
|
|
if not iter:
|
|
|
|
return
|
|
|
|
file = model.get_value(iter, 1)
|
2005-04-22 03:05:31 +02:00
|
|
|
dialog = gtk.FileChooserDialog('Choose image', None,
|
|
|
|
gtk.FILE_CHOOSER_ACTION_OPEN,
|
|
|
|
(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL,
|
|
|
|
gtk.STOCK_OPEN, gtk.RESPONSE_OK))
|
2005-04-06 20:51:54 +02:00
|
|
|
dialog.set_default_response(gtk.RESPONSE_OK)
|
|
|
|
filter = gtk.FileFilter()
|
2005-04-18 14:17:43 +02:00
|
|
|
filter.set_name('All files')
|
|
|
|
filter.add_pattern('*')
|
2005-04-06 20:51:54 +02:00
|
|
|
dialog.add_filter(filter)
|
|
|
|
|
|
|
|
filter = gtk.FileFilter()
|
2005-04-18 14:17:43 +02:00
|
|
|
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')
|
2005-04-06 20:51:54 +02:00
|
|
|
dialog.add_filter(filter)
|
|
|
|
dialog.set_filter(filter)
|
|
|
|
|
|
|
|
file = os.path.join(os.getcwd(), file)
|
|
|
|
dialog.set_filename(file)
|
|
|
|
file = ''
|
2005-04-22 17:56:33 +02:00
|
|
|
ok = False
|
|
|
|
while not ok:
|
2005-04-06 20:51:54 +02:00
|
|
|
response = dialog.run()
|
|
|
|
if response == gtk.RESPONSE_OK:
|
|
|
|
file = dialog.get_filename()
|
|
|
|
if self.image_is_ok(file):
|
2005-04-22 17:56:33 +02:00
|
|
|
ok = True
|
2005-04-06 20:51:54 +02:00
|
|
|
else:
|
2005-04-22 17:56:33 +02:00
|
|
|
ok = True
|
2005-04-06 20:51:54 +02:00
|
|
|
dialog.destroy()
|
|
|
|
if file:
|
|
|
|
model.set_value(iter, 1, file)
|
|
|
|
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-04-22 01:20:18 +02:00
|
|
|
def on_button_new_emoticon_clicked(self, widget, data = None):
|
2005-04-06 20:51:54 +02:00
|
|
|
model = self.emot_tree.get_model()
|
|
|
|
iter = model.append()
|
|
|
|
model.set(iter, 0, 'emoticon', 1, '')
|
|
|
|
col = self.emot_tree.get_column(0)
|
|
|
|
self.emot_tree.set_cursor(model.get_path(iter), col, True)
|
|
|
|
|
2005-04-22 01:20:18 +02:00
|
|
|
def on_button_remove_emoticon_clicked(self, widget, data = None):
|
2005-04-06 20:51:54 +02:00
|
|
|
(model, iter) = self.emot_tree.get_selection().get_selected()
|
|
|
|
if not iter:
|
|
|
|
return
|
|
|
|
model.remove(iter)
|
|
|
|
|
|
|
|
def on_emoticons_treeview_key_press_event(self, widget, event):
|
|
|
|
if event.keyval == gtk.keysyms.Delete:
|
|
|
|
self.on_button_remove_emoticon_clicked(widget)
|
|
|
|
|
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
#---------- Service_discovery_window class -------------#
|
2005-03-23 14:25:48 +01:00
|
|
|
class Service_discovery_window:
|
2005-04-18 14:17:43 +02:00
|
|
|
'''Class for Service Discovery Window:
|
|
|
|
to know the services on a server'''
|
2005-03-27 11:08:31 +02:00
|
|
|
def on_service_discovery_window_destroy(self, widget):
|
2005-04-04 17:51:29 +02:00
|
|
|
del self.plugin.windows[self.account]['disco']
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-03-01 19:27:21 +01:00
|
|
|
def on_close_button_clicked(self, widget):
|
2005-04-12 17:30:09 +02:00
|
|
|
self.window.destroy()
|
2005-04-17 23:31:18 +02:00
|
|
|
|
|
|
|
def __init__(self, plugin, account):
|
2005-04-21 01:20:26 +02:00
|
|
|
self.plugin = plugin
|
|
|
|
self.account = account
|
|
|
|
self.agent_infos = {}
|
2005-04-17 23:31:18 +02:00
|
|
|
if gajim.connections[account].connected < 2:
|
2005-04-18 14:17:43 +02:00
|
|
|
dialogs.Error_dialog(_('You must be connected to browse services'))
|
2005-05-15 13:47:15 +02:00
|
|
|
raise RuntimeError, 'You must be connected to browse services'
|
2005-04-17 23:31:18 +02:00
|
|
|
xml = gtk.glade.XML(GTKGUI_GLADE, 'service_discovery_window', APP)
|
|
|
|
self.window = xml.get_widget('service_discovery_window')
|
|
|
|
self.services_treeview = xml.get_widget('services_treeview')
|
|
|
|
self.join_button = xml.get_widget('join_button')
|
|
|
|
self.register_button = xml.get_widget('register_button')
|
|
|
|
self.address_comboboxentry = xml.get_widget('address_comboboxentry')
|
|
|
|
self.address_comboboxentry_entry = self.address_comboboxentry.child
|
|
|
|
self.address_comboboxentry_entry.set_activates_default(True)
|
2005-04-21 01:20:26 +02:00
|
|
|
|
2005-04-23 23:54:12 +02:00
|
|
|
model = gtk.TreeStore(gobject.TYPE_STRING, gobject.TYPE_STRING,
|
|
|
|
gobject.TYPE_STRING)
|
2005-04-24 00:48:54 +02:00
|
|
|
model.set_sort_column_id(0, gtk.SORT_ASCENDING)
|
2005-04-17 23:31:18 +02:00
|
|
|
self.services_treeview.set_model(model)
|
|
|
|
#columns
|
|
|
|
renderer = gtk.CellRendererText()
|
|
|
|
renderer.set_data('column', 0)
|
2005-05-15 14:02:50 +02:00
|
|
|
col = self.services_treeview.insert_column_with_attributes(-1,
|
|
|
|
_('Name'), renderer, text = 0)
|
|
|
|
col.set_resizable(True)
|
2005-04-17 23:31:18 +02:00
|
|
|
renderer = gtk.CellRendererText()
|
|
|
|
renderer.set_data('column', 1)
|
2005-05-15 14:02:50 +02:00
|
|
|
col = self.services_treeview.insert_column_with_attributes(-1,
|
|
|
|
_('Service'), renderer, text = 1)
|
|
|
|
col.set_resizable(True)
|
2005-04-23 23:54:12 +02:00
|
|
|
renderer = gtk.CellRendererText()
|
|
|
|
renderer.set_data('column', 1)
|
2005-05-15 14:02:50 +02:00
|
|
|
col = self.services_treeview.insert_column_with_attributes(-1,
|
|
|
|
_('Node'), renderer, text = 2)
|
|
|
|
col.set_resizable(True)
|
2005-04-17 23:31:18 +02:00
|
|
|
|
|
|
|
self.address_comboboxentry = xml.get_widget('address_comboboxentry')
|
|
|
|
liststore = gtk.ListStore(str)
|
|
|
|
self.address_comboboxentry.set_model(liststore)
|
|
|
|
self.address_comboboxentry.set_text_column(0)
|
|
|
|
self.latest_addresses = gajim.config.get('latest_disco_addresses').split()
|
2005-05-15 14:02:50 +02:00
|
|
|
server_address = gajim.config.get_per('accounts', self.account,
|
2005-04-17 23:31:18 +02:00
|
|
|
'hostname')
|
|
|
|
if server_address in self.latest_addresses:
|
|
|
|
self.latest_addresses.remove(server_address)
|
|
|
|
self.latest_addresses.insert(0, server_address)
|
|
|
|
if len(self.latest_addresses) > 10:
|
|
|
|
self.latest_addresses = self.latest_addresses[0:10]
|
|
|
|
for j in self.latest_addresses:
|
|
|
|
self.address_comboboxentry.append_text(j)
|
|
|
|
self.address_comboboxentry.child.set_text(server_address)
|
|
|
|
|
|
|
|
self.register_button.set_sensitive(False)
|
|
|
|
self.join_button.set_sensitive(False)
|
|
|
|
xml.signal_autoconnect(self)
|
|
|
|
self.browse(server_address)
|
|
|
|
self.window.show_all()
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-04-23 23:54:12 +02:00
|
|
|
def browse(self, jid, node = ''):
|
2005-04-18 14:17:43 +02:00
|
|
|
'''Send a request to the core to know the available services'''
|
2005-03-28 03:05:28 +02:00
|
|
|
model = self.services_treeview.get_model()
|
2005-03-28 01:00:01 +02:00
|
|
|
if not model.get_iter_first():
|
|
|
|
# we begin to fill the treevier with the first line
|
2005-04-23 23:54:12 +02:00
|
|
|
iter = model.append(None, (jid, jid, node))
|
2005-03-28 01:00:01 +02:00
|
|
|
self.agent_infos[jid] = {'features' : []}
|
2005-04-23 23:54:12 +02:00
|
|
|
gajim.connections[self.account].request_agents(jid, node)
|
2004-05-15 18:50:38 +02:00
|
|
|
|
|
|
|
def agents(self, agents):
|
2005-05-20 17:05:22 +02:00
|
|
|
'''When list of available agent arrive:
|
2005-04-18 14:17:43 +02:00
|
|
|
Fill the treeview with it'''
|
2005-03-28 03:05:28 +02:00
|
|
|
model = self.services_treeview.get_model()
|
2004-09-06 16:55:10 +02:00
|
|
|
for agent in agents:
|
2005-04-23 23:54:12 +02:00
|
|
|
node = ''
|
|
|
|
if agent.has_key('node'):
|
|
|
|
node = agent['node']
|
|
|
|
iter = model.append(None, (agent['name'], agent['jid'], node))
|
|
|
|
self.agent_infos[agent['jid'] + node] = {'features' : []}
|
2005-03-27 11:08:31 +02:00
|
|
|
|
|
|
|
def iter_is_visible(self, iter):
|
|
|
|
if not iter:
|
|
|
|
return False
|
2005-03-28 03:05:28 +02:00
|
|
|
model = self.services_treeview.get_model()
|
2005-03-27 11:08:31 +02:00
|
|
|
iter = model.iter_parent(iter)
|
|
|
|
while iter:
|
2005-03-28 03:05:28 +02:00
|
|
|
if not self.services_treeview.row_expanded(model.get_path(iter)):
|
2005-03-27 11:08:31 +02:00
|
|
|
return False
|
|
|
|
iter = model.iter_parent(iter)
|
|
|
|
return True
|
|
|
|
|
2005-03-28 03:05:28 +02:00
|
|
|
def on_services_treeview_row_expanded(self, widget, iter, path):
|
|
|
|
model = self.services_treeview.get_model()
|
2005-03-27 11:08:31 +02:00
|
|
|
jid = model.get_value(iter, 1)
|
|
|
|
child = model.iter_children(iter)
|
|
|
|
while child:
|
|
|
|
child_jid = model.get_value(child, 1)
|
2005-04-23 23:54:12 +02:00
|
|
|
child_node = model.get_value(child, 2)
|
2005-03-27 11:08:31 +02:00
|
|
|
# We never requested its infos
|
2005-04-23 23:54:12 +02:00
|
|
|
if not self.agent_infos[child_jid + child_node].has_key('features'):
|
|
|
|
self.browse(child_jid, child_node)
|
2005-03-27 11:08:31 +02:00
|
|
|
child = model.iter_next(child)
|
2004-09-06 16:55:10 +02:00
|
|
|
|
2005-04-24 17:47:08 +02:00
|
|
|
def agent_info_info(self, agent, node, identities, features):
|
2005-04-18 14:17:43 +02:00
|
|
|
'''When we recieve informations about an agent, but not its items'''
|
2005-04-24 17:47:08 +02:00
|
|
|
model = self.services_treeview.get_model()
|
|
|
|
iter = model.get_iter_root()
|
|
|
|
# We look if this agent is in the treeview
|
|
|
|
while (iter):
|
|
|
|
if agent == model.get_value(iter, 1) and node == model.get_value(
|
|
|
|
iter, 2):
|
|
|
|
break
|
|
|
|
if model.iter_has_child(iter):
|
|
|
|
iter = model.iter_children(iter)
|
|
|
|
else:
|
|
|
|
if not model.iter_next(iter):
|
|
|
|
iter = model.iter_parent(iter)
|
|
|
|
if iter:
|
|
|
|
iter = model.iter_next(iter)
|
|
|
|
if not iter: #If it is not we stop
|
|
|
|
return
|
|
|
|
self.agent_infos[agent + node]['features'] = features
|
|
|
|
if len(identities):
|
|
|
|
self.agent_infos[agent + node]['identities'] = identities
|
|
|
|
if identities[0].has_key('name'):
|
|
|
|
model.set_value(iter, 0, identities[0]['name'])
|
2005-05-11 18:19:55 +02:00
|
|
|
self.on_services_treeview_cursor_changed(self.services_treeview)
|
2005-03-27 12:31:26 +02:00
|
|
|
|
2005-04-23 23:54:12 +02:00
|
|
|
def agent_info_items(self, agent, node, items):
|
2005-04-18 14:17:43 +02:00
|
|
|
'''When we recieve items about an agent'''
|
2005-03-28 03:05:28 +02:00
|
|
|
model = self.services_treeview.get_model()
|
2005-03-27 12:31:26 +02:00
|
|
|
iter = model.get_iter_root()
|
|
|
|
# We look if this agent is in the treeview
|
|
|
|
while (iter):
|
2005-04-23 23:54:12 +02:00
|
|
|
if agent == model.get_value(iter, 1) and node == model.get_value(
|
|
|
|
iter, 2):
|
2005-03-27 12:31:26 +02:00
|
|
|
break
|
|
|
|
if model.iter_has_child(iter):
|
|
|
|
iter = model.iter_children(iter)
|
|
|
|
else:
|
|
|
|
if not model.iter_next(iter):
|
|
|
|
iter = model.iter_parent(iter)
|
|
|
|
if iter:
|
|
|
|
iter = model.iter_next(iter)
|
|
|
|
if not iter: #If it is not, we stop
|
|
|
|
return
|
2005-03-27 20:02:23 +02:00
|
|
|
expand = False
|
|
|
|
if len(model.get_path(iter)) == 1:
|
|
|
|
expand = True
|
2005-03-27 12:31:26 +02:00
|
|
|
for item in items:
|
2005-03-30 22:06:01 +02:00
|
|
|
name = ''
|
|
|
|
if item.has_key('name'):
|
|
|
|
name = item['name']
|
2005-04-23 23:54:12 +02:00
|
|
|
node = ''
|
|
|
|
if item.has_key('node'):
|
|
|
|
node = item['node']
|
2005-03-27 12:31:26 +02:00
|
|
|
# We look if this item is already in the treeview
|
|
|
|
iter_child = model.iter_children(iter)
|
|
|
|
while iter_child:
|
2005-04-23 23:54:12 +02:00
|
|
|
if item['jid'] == model.get_value(iter_child, 1) and \
|
|
|
|
node == model.get_value(iter_child, 2):
|
2005-03-27 12:31:26 +02:00
|
|
|
break
|
|
|
|
iter_child = model.iter_next(iter_child)
|
|
|
|
if not iter_child: # If it is not we add it
|
2005-04-23 23:54:12 +02:00
|
|
|
iter_child = model.append(iter, (name, item['jid'], node))
|
|
|
|
self.agent_infos[item['jid'] + node] = {'identities': [item]}
|
2005-03-27 20:02:23 +02:00
|
|
|
if self.iter_is_visible(iter_child) or expand:
|
2005-04-23 23:54:12 +02:00
|
|
|
self.browse(item['jid'], node)
|
2005-03-27 20:02:23 +02:00
|
|
|
if expand:
|
2005-03-28 03:05:28 +02:00
|
|
|
self.services_treeview.expand_row((model.get_path(iter)), False)
|
2005-03-27 12:31:26 +02:00
|
|
|
|
2004-09-06 16:55:10 +02:00
|
|
|
def agent_info(self, agent, identities, features, items):
|
2005-04-18 14:17:43 +02:00
|
|
|
'''When we recieve informations about an agent'''
|
2005-04-24 17:47:08 +02:00
|
|
|
self.agent_info_info(agent, '', identities, features)
|
|
|
|
self.agent_info_items(agent, '', items)
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-03-01 19:27:21 +01:00
|
|
|
def on_refresh_button_clicked(self, widget):
|
2005-04-18 14:17:43 +02:00
|
|
|
'''When refresh button is clicked: refresh list: clear and rerequest it'''
|
2005-03-28 03:05:28 +02:00
|
|
|
self.services_treeview.get_model().clear()
|
2005-03-27 11:08:31 +02:00
|
|
|
jid = self.address_comboboxentry.child.get_text()
|
|
|
|
self.browse(jid)
|
2004-05-15 18:50:38 +02:00
|
|
|
|
2005-03-29 23:28:58 +02:00
|
|
|
def on_address_comboboxentry_changed(self, widget):
|
|
|
|
'is executed on each keypress'
|
2005-05-24 22:04:07 +02:00
|
|
|
if self.address_comboboxentry.get_active() != -1:
|
|
|
|
# user selected one of the entries so do auto-visit
|
|
|
|
self.services_treeview.get_model().clear()
|
|
|
|
server_address = self.address_comboboxentry.child.get_text()
|
|
|
|
self.browse(server_address)
|
2005-04-07 00:03:12 +02:00
|
|
|
|
2005-04-22 01:20:18 +02:00
|
|
|
def on_services_treeview_row_activated(self, widget, path, col = 0):
|
2005-04-18 14:17:43 +02:00
|
|
|
'''When a row is activated: Register or join the selected agent'''
|
2005-03-28 03:05:28 +02:00
|
|
|
#if both buttons are sensitive, it will register [default]
|
|
|
|
if self.register_button.get_property('sensitive'):
|
|
|
|
self.on_register_button_clicked(widget)
|
|
|
|
elif self.join_button.get_property('sensitive'):
|
|
|
|
self.on_join_button_clicked(widget)
|
2004-09-06 16:55:10 +02:00
|
|
|
|
|
|
|
def on_join_button_clicked(self, widget):
|
2005-04-18 14:17:43 +02:00
|
|
|
'''When we want to join a conference:
|
|
|
|
Ask specific informations about the selected agent and close the window'''
|
2005-03-28 03:05:28 +02:00
|
|
|
model, iter = self.services_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-04-29 16:14:25 +02:00
|
|
|
if service.find('@') != -1:
|
2005-03-05 22:02:38 +01:00
|
|
|
services = service.split('@')
|
2004-09-06 16:55:10 +02:00
|
|
|
room = services[0]
|
|
|
|
service = services[1]
|
2005-04-07 13:25:59 +02:00
|
|
|
if not self.plugin.windows[self.account].has_key('join_gc'):
|
2005-04-18 14:17:43 +02:00
|
|
|
dialogs.Join_groupchat_window(self.plugin, self.account, service, room)
|
2005-04-07 13:25:59 +02:00
|
|
|
else:
|
|
|
|
self.plugin.windows[self.account]['join_gc'].window.present()
|
2004-09-06 16:55:10 +02:00
|
|
|
|
|
|
|
def on_register_button_clicked(self, widget):
|
2005-05-20 17:05:22 +02:00
|
|
|
'''When we want to register an agent:
|
2005-04-18 14:17:43 +02:00
|
|
|
Ask specific informations about the selected agent and close the window'''
|
2005-03-28 03:05:28 +02:00
|
|
|
model, iter = self.services_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)
|
2005-05-08 22:56:11 +02:00
|
|
|
gajim.connections[self.account].request_register_agent_info(service)
|
2005-04-21 23:06:33 +02:00
|
|
|
|
2005-04-12 17:30:09 +02:00
|
|
|
self.window.destroy()
|
2004-09-06 16:55:10 +02:00
|
|
|
|
2005-03-28 03:05:28 +02:00
|
|
|
def on_services_treeview_cursor_changed(self, widget):
|
2005-04-18 14:17:43 +02:00
|
|
|
'''When we select a row :
|
|
|
|
activate buttons if needed'''
|
2005-04-18 11:25:12 +02:00
|
|
|
self.join_button.set_sensitive(False)
|
|
|
|
self.register_button.set_sensitive(False)
|
2005-03-28 03:05:28 +02:00
|
|
|
model, iter = self.services_treeview.get_selection().get_selected()
|
2005-04-18 11:25:12 +02:00
|
|
|
if not iter: return
|
2004-09-06 16:55:10 +02:00
|
|
|
jid = model.get_value(iter, 1)
|
2005-04-23 23:54:12 +02:00
|
|
|
node = model.get_value(iter, 2)
|
|
|
|
if self.agent_infos[jid + node].has_key('features'):
|
2005-04-26 20:45:54 +02:00
|
|
|
if common.xmpp.NS_REGISTER in self.agent_infos[jid + node] \
|
2005-04-23 23:54:12 +02:00
|
|
|
['features']:
|
2004-09-06 16:55:10 +02:00
|
|
|
self.register_button.set_sensitive(True)
|
2005-04-23 23:54:12 +02:00
|
|
|
if self.agent_infos[jid + node].has_key('identities'):
|
|
|
|
if len(self.agent_infos[jid + node]['identities']):
|
|
|
|
if self.agent_infos[jid + node]['identities'][0].has_key(
|
|
|
|
'category'):
|
|
|
|
if self.agent_infos[jid + node]['identities'][0]['category'] == \
|
|
|
|
'conference':
|
2004-09-06 16:55:10 +02:00
|
|
|
self.join_button.set_sensitive(True)
|
2005-03-27 11:08:31 +02:00
|
|
|
|
|
|
|
def on_go_button_clicked(self, widget):
|
2005-03-29 23:28:58 +02:00
|
|
|
server_address = self.address_comboboxentry.child.get_text()
|
|
|
|
if server_address in self.latest_addresses:
|
|
|
|
self.latest_addresses.remove(server_address)
|
|
|
|
self.latest_addresses.insert(0, server_address)
|
2005-03-27 11:19:06 +02:00
|
|
|
if len(self.latest_addresses) > 10:
|
|
|
|
self.latest_addresses = self.latest_addresses[0:10]
|
2005-03-27 11:08:31 +02:00
|
|
|
self.address_comboboxentry.get_model().clear()
|
|
|
|
for j in self.latest_addresses:
|
|
|
|
self.address_comboboxentry.append_text(j)
|
2005-05-20 17:05:22 +02:00
|
|
|
gajim.config.set('latest_disco_addresses',
|
2005-04-13 11:41:44 +02:00
|
|
|
' '.join(self.latest_addresses))
|
2005-03-28 03:05:28 +02:00
|
|
|
self.services_treeview.get_model().clear()
|
2005-03-29 23:28:58 +02:00
|
|
|
self.browse(server_address)
|
2005-04-12 17:30:09 +02:00
|
|
|
self.plugin.save_config()
|
2005-04-20 01:43:58 +02:00
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
#---------- Groupchat_config_window class -------------#
|
2005-04-20 12:21:33 +02:00
|
|
|
class Groupchat_config_window:
|
|
|
|
'''Groupchat_config_window class'''
|
|
|
|
def __init__(self, plugin, account, room_jid, config):
|
|
|
|
self.plugin = plugin
|
|
|
|
self.account = account
|
|
|
|
self.room_jid = room_jid
|
|
|
|
self.config = config
|
|
|
|
self.xml = gtk.glade.XML(GTKGUI_GLADE, 'groupchat_config_window', APP)
|
|
|
|
self.window = self.xml.get_widget('groupchat_config_window')
|
|
|
|
self.config_table = self.xml.get_widget('config_table')
|
|
|
|
self.fill_table()
|
|
|
|
self.xml.signal_autoconnect(self)
|
|
|
|
|
|
|
|
def on_groupchat_config_window_destroy(self, widget):
|
|
|
|
del self.plugin.windows[self.account]['gc_config'][self.room_jid]
|
|
|
|
|
2005-04-21 00:30:04 +02:00
|
|
|
def on_close_button_clicked(self, widget):
|
2005-04-20 12:21:33 +02:00
|
|
|
self.window.destroy()
|
|
|
|
|
2005-04-21 00:30:04 +02:00
|
|
|
def on_change_button_clicked(self, widget):
|
2005-04-20 12:21:33 +02:00
|
|
|
gajim.connections[self.account].send_gc_config(self.room_jid, self.config)
|
2005-04-21 20:36:27 +02:00
|
|
|
self.window.destroy()
|
2005-04-20 12:21:33 +02:00
|
|
|
|
|
|
|
def on_checkbutton_toggled(self, widget, index):
|
|
|
|
self.config[index]['values'][0] = widget.get_active()
|
|
|
|
|
|
|
|
def on_combobox_changed(self, widget, index):
|
|
|
|
self.config[index]['values'][0] = self.config[index]['options'][ \
|
|
|
|
widget.get_active()]['values'][0]
|
|
|
|
|
|
|
|
def on_entry_changed(self, widget, index):
|
|
|
|
self.config[index]['values'][0] = widget.get_text()
|
|
|
|
|
|
|
|
def on_textbuffer_changed(self, widget, index):
|
|
|
|
begin, end = widget.get_bounds()
|
|
|
|
self.config[index]['values'][0] = widget.get_text(begin, end)
|
|
|
|
|
|
|
|
def fill_table(self):
|
|
|
|
if self.config.has_key('title'):
|
|
|
|
self.window.set_title(self.config['title'])
|
|
|
|
if self.config.has_key('instructions'):
|
2005-05-20 17:05:22 +02:00
|
|
|
self.xml.get_widget('instructions_label').set_text(
|
2005-04-20 12:21:33 +02:00
|
|
|
self.config['instructions'])
|
|
|
|
i = 0
|
|
|
|
while self.config.has_key(i):
|
|
|
|
if not self.config[i].has_key('type'):
|
|
|
|
i += 1
|
|
|
|
continue
|
|
|
|
ctype = self.config[i]['type']
|
|
|
|
if ctype == 'hidden':
|
|
|
|
i += 1
|
|
|
|
continue
|
|
|
|
nbrows = self.config_table.get_property('n-rows')
|
|
|
|
self.config_table.resize(nbrows + 1, 2)
|
|
|
|
if self.config[i].has_key('label'):
|
|
|
|
label = gtk.Label(self.config[i]['label'])
|
|
|
|
label.set_alignment(0.0, 0.5)
|
2005-05-20 17:05:22 +02:00
|
|
|
self.config_table.attach(label, 0, 1, nbrows, nbrows + 1,
|
|
|
|
gtk.FILL | gtk.SHRINK)
|
2005-04-20 12:21:33 +02:00
|
|
|
desc = None
|
|
|
|
if self.config[i].has_key('desc'):
|
|
|
|
desc = self.config[i]['desc']
|
|
|
|
max = 1
|
|
|
|
if ctype == 'boolean':
|
|
|
|
widget = gtk.CheckButton(desc, False)
|
|
|
|
widget.set_active(self.config[i]['values'][0])
|
|
|
|
widget.connect('toggled', self.on_checkbutton_toggled, i)
|
|
|
|
max = 2
|
|
|
|
elif ctype == 'fixed':
|
|
|
|
widget = gtk.Label('\n'.join(self.config[i]['values']))
|
|
|
|
widget.set_alignment(0.0, 0.5)
|
|
|
|
max = 4
|
|
|
|
elif ctype == 'jid-multi':
|
|
|
|
#TODO
|
|
|
|
widget = gtk.Label('')
|
|
|
|
elif ctype == 'jid-single':
|
|
|
|
#TODO
|
|
|
|
widget = gtk.Label('')
|
|
|
|
elif ctype == 'list-multi':
|
|
|
|
#TODO
|
|
|
|
widget = gtk.Label('')
|
|
|
|
elif ctype == 'list-single':
|
|
|
|
widget = gtk.combo_box_new_text()
|
|
|
|
widget.connect('changed', self.on_combobox_changed, i)
|
|
|
|
index = 0
|
|
|
|
j = 0
|
|
|
|
while self.config[i]['options'].has_key(j):
|
|
|
|
if self.config[i]['options'][j]['values'][0] == \
|
|
|
|
self.config[i]['values'][0]:
|
|
|
|
index = j
|
|
|
|
widget.append_text(self.config[i]['options'][j]['label'])
|
|
|
|
j += 1
|
|
|
|
widget.set_active(index)
|
|
|
|
max = 3
|
|
|
|
elif ctype == 'text-multi':
|
|
|
|
widget = gtk.TextView()
|
|
|
|
widget.get_buffer().connect('changed', self.on_textbuffer_changed, \
|
|
|
|
i)
|
|
|
|
widget.get_buffer().set_text('\n'.join(self.config[i]['values']))
|
|
|
|
max = 4
|
|
|
|
elif ctype == 'text-private':
|
|
|
|
widget = gtk.Entry()
|
|
|
|
widget.connect('changed', self.on_entry_changed, i)
|
|
|
|
widget.set_text(self.config[i]['values'][0])
|
|
|
|
widget.set_visibility(False)
|
|
|
|
max = 3
|
|
|
|
elif ctype == 'text-single':
|
|
|
|
widget = gtk.Entry()
|
|
|
|
widget.connect('changed', self.on_entry_changed, i)
|
|
|
|
widget.set_text(self.config[i]['values'][0])
|
|
|
|
max = 3
|
|
|
|
i += 1
|
|
|
|
if max < 4:
|
2005-04-22 03:05:31 +02:00
|
|
|
self.config_table.attach(widget, 1, max,
|
|
|
|
nbrows, nbrows + 1,
|
|
|
|
gtk.FILL | gtk.SHRINK)
|
2005-04-20 12:21:33 +02:00
|
|
|
widget = gtk.Label()
|
2005-04-22 03:05:31 +02:00
|
|
|
self.config_table.attach(widget, max, 4,
|
|
|
|
nbrows, nbrows + 1)
|
2005-04-20 12:21:33 +02:00
|
|
|
else:
|
2005-04-22 03:05:31 +02:00
|
|
|
self.config_table.attach(widget, 1, max,
|
|
|
|
nbrows, nbrows + 1)
|
2005-04-20 12:21:33 +02:00
|
|
|
self.config_table.show_all()
|
|
|
|
|
2005-05-10 17:39:35 +02:00
|
|
|
#---------- Remove_account_window class -------------#
|
2005-04-20 01:43:58 +02:00
|
|
|
class Remove_account_window:
|
|
|
|
'''ask for removing from gajim only or from gajim and server too
|
|
|
|
and do removing of the account given'''
|
|
|
|
|
|
|
|
def on_remove_account_window_destroy(self, widget):
|
2005-05-07 16:45:50 +02:00
|
|
|
if self.plugin.windows.has_key(self.account):
|
|
|
|
del self.plugin.windows[self.account]['remove_account']
|
2005-04-20 01:43:58 +02:00
|
|
|
|
|
|
|
def on_cancel_button_clicked(self, widget):
|
|
|
|
self.window.destroy()
|
|
|
|
|
|
|
|
def __init__(self, plugin, account):
|
|
|
|
self.plugin = plugin
|
|
|
|
self.account = account
|
|
|
|
xml = gtk.glade.XML(GTKGUI_GLADE, 'remove_account_window', APP)
|
|
|
|
self.window = xml.get_widget('remove_account_window')
|
2005-05-20 17:05:22 +02:00
|
|
|
self.remove_and_unregister_radiobutton = xml.get_widget(
|
2005-04-20 01:43:58 +02:00
|
|
|
'remove_and_unregister_radiobutton')
|
|
|
|
self.window.set_title(_('Removing %s account') % self.account)
|
|
|
|
xml.signal_autoconnect(self)
|
|
|
|
self.window.show_all()
|
|
|
|
|
|
|
|
def on_remove_button_clicked(self, widget):
|
2005-05-20 17:05:22 +02:00
|
|
|
if gajim.connections[self.account].connected:
|
|
|
|
message = _("You're currently connected with %s.\nAre you sure you want to remove this account?") % self.account
|
|
|
|
dialog = dialogs.Confirmation_dialog(message)
|
|
|
|
if dialog.get_response() != gtk.RESPONSE_YES:
|
|
|
|
return
|
2005-04-20 01:43:58 +02:00
|
|
|
gajim.connections[self.account].change_status('offline', 'offline')
|
|
|
|
|
|
|
|
if self.remove_and_unregister_radiobutton.get_active():
|
2005-05-07 16:45:50 +02:00
|
|
|
gajim.connections[self.account].unregister_account()
|
2005-04-20 01:43:58 +02:00
|
|
|
del gajim.connections[self.account]
|
|
|
|
gajim.config.del_per('accounts', self.account)
|
2005-05-07 16:45:50 +02:00
|
|
|
self.plugin.save_config()
|
2005-04-20 01:43:58 +02:00
|
|
|
del self.plugin.windows[self.account]
|
|
|
|
del self.plugin.queues[self.account]
|
2005-05-12 20:55:01 +02:00
|
|
|
del self.plugin.nicks[self.account]
|
|
|
|
del self.plugin.allow_notifications[self.account]
|
2005-04-20 01:43:58 +02:00
|
|
|
del self.plugin.roster.groups[self.account]
|
|
|
|
del self.plugin.roster.contacts[self.account]
|
|
|
|
del self.plugin.roster.to_be_removed[self.account]
|
2005-04-20 14:23:41 +02:00
|
|
|
del self.plugin.roster.newly_added[self.account]
|
2005-04-20 01:43:58 +02:00
|
|
|
self.plugin.roster.draw_roster()
|
2005-04-20 14:23:41 +02:00
|
|
|
if self.plugin.windows.has_key('accounts'):
|
|
|
|
self.plugin.windows['accounts'].init_accounts()
|
2005-04-20 01:43:58 +02:00
|
|
|
self.window.destroy()
|