completing gtkspell support
adding escape to close accounts_window using %s instead of + for joining strings [gives us better translation] and fixing a typo there sorry for big commit
This commit is contained in:
parent
c1e472bcbd
commit
3f890b8063
|
@ -230,7 +230,7 @@ class Chat:
|
|||
self.nb_unread[jid] = 0
|
||||
self.last_message_time[jid] = 0
|
||||
|
||||
if gajim.config.get('use_speller') and 'gtk' in locals():
|
||||
if gajim.config.get('use_speller') and 'gtkspell' in locals():
|
||||
message_textview = self.xmls[jid].get_widget('message_textview')
|
||||
gtkspell.Spell(message_textview)
|
||||
|
||||
|
|
|
@ -73,6 +73,7 @@ class Config:
|
|||
'saveposition': [ opt_bool, True ],
|
||||
'mergeaccounts': [ opt_bool, False ],
|
||||
'usetabbedchat': [ opt_bool, True ],
|
||||
'use_speller': [ opt_bool, False ],
|
||||
'print_time': [ opt_str, 'always' ],
|
||||
'useemoticons': [ opt_bool, True ],
|
||||
'sounds_on': [ opt_bool, True ],
|
||||
|
|
124
src/config.py
124
src/config.py
|
@ -25,8 +25,14 @@ import common.sleepy
|
|||
|
||||
import dialogs
|
||||
import cell_renderer_image
|
||||
from gajim import User
|
||||
import cell_renderer_image
|
||||
|
||||
try:
|
||||
import gtkspell
|
||||
except:
|
||||
pass
|
||||
|
||||
from gajim import User
|
||||
from common import gajim
|
||||
from common import connection
|
||||
from common import i18n
|
||||
|
@ -172,6 +178,13 @@ class Preferences_window:
|
|||
st = gajim.config.get('usetabbedchat')
|
||||
self.xml.get_widget('use_tabbed_chat_window_checkbutton').set_active(st)
|
||||
|
||||
#use speller
|
||||
if 'gtkspell' in locals():
|
||||
st = gajim.config.get('use_speller')
|
||||
self.xml.get_widget('speller_checkbutton').set_active(st)
|
||||
else:
|
||||
self.xml.get_widget('speller_checkbutton').set_sensitive(False)
|
||||
|
||||
#Print time
|
||||
if gajim.config.get('print_time') == 'never':
|
||||
self.xml.get_widget('time_never_radiobutton').set_active(True)
|
||||
|
@ -380,13 +393,13 @@ class Preferences_window:
|
|||
fonts_colors_table.hide()
|
||||
|
||||
def on_preferences_window_key_press_event(self, widget, event):
|
||||
if event.keyval == gtk.keysyms.Escape: # ESCAPE
|
||||
if event.keyval == gtk.keysyms.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:
|
||||
if change_sensitivity_widgets:
|
||||
for w in change_sensitivity_widgets:
|
||||
w.set_sensitive(widget.get_active())
|
||||
self.plugin.save_config()
|
||||
|
@ -541,9 +554,9 @@ class Preferences_window:
|
|||
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(\
|
||||
window.xmls[jid].get_widget('conversation_textview').set_buffer(
|
||||
buf1[jid])
|
||||
window.xmls[jid].get_widget('message_textview').set_buffer(\
|
||||
window.xmls[jid].get_widget('message_textview').set_buffer(
|
||||
buf2[jid])
|
||||
window.load_var(jid, saved_var[jid])
|
||||
|
||||
|
@ -574,9 +587,9 @@ class Preferences_window:
|
|||
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(\
|
||||
window.xmls[jid].get_widget('conversation_textview').set_buffer(
|
||||
buf1[jid])
|
||||
window.xmls[jid].get_widget('message_textview').set_buffer(\
|
||||
window.xmls[jid].get_widget('message_textview').set_buffer(
|
||||
buf2[jid])
|
||||
window.load_var(jid, saved_var[jid])
|
||||
|
||||
|
@ -591,6 +604,44 @@ class Preferences_window:
|
|||
self.split_windows('gc')
|
||||
self.plugin.save_config()
|
||||
|
||||
def apply_speller(self, kind):
|
||||
for acct in gajim.connections:
|
||||
windows = self.plugin.windows[acct][kind]
|
||||
jids = windows.keys()
|
||||
if not 'tabbed' in jids:
|
||||
continue
|
||||
jids.remove('tabbed')
|
||||
for jid in jids:
|
||||
print jid
|
||||
window = windows[jid]
|
||||
textview = window.xmls[jid].get_widget('message_textview')
|
||||
gtkspell.Spell(textview)
|
||||
|
||||
def remove_speller(self, kind):
|
||||
for acct in gajim.connections:
|
||||
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]
|
||||
textview = window.xmls[jid].get_widget('message_textview')
|
||||
spell_obj = gtkspell.get_from_text_view(textview)
|
||||
if spell_obj:
|
||||
spell_obj.detach()
|
||||
|
||||
def on_speller_checkbutton_toggled(self, widget):
|
||||
active = widget.get_active()
|
||||
gajim.config.set('use_speller', active)
|
||||
self.plugin.save_config()
|
||||
if active:
|
||||
self.apply_speller('chats')
|
||||
self.apply_speller('gc')
|
||||
else:
|
||||
self.remove_speller('chats')
|
||||
self.remove_speller('gc')
|
||||
|
||||
def update_print_time(self):
|
||||
'''Update time in Opened Chat Windows'''
|
||||
for a in gajim.connections:
|
||||
|
@ -1297,13 +1348,38 @@ class Account_modification_window:
|
|||
|
||||
#---------- Accounts_window class -------------#
|
||||
class Accounts_window:
|
||||
'''Class for accounts window: lists of accounts'''
|
||||
'''Class for accounts window: list of accounts'''
|
||||
def on_accounts_window_destroy(self, widget):
|
||||
del self.plugin.windows['accounts']
|
||||
|
||||
def on_close_button_clicked(self, widget):
|
||||
self.window.destroy()
|
||||
|
||||
def __init__(self, plugin):
|
||||
self.plugin = plugin
|
||||
self.xml = gtk.glade.XML(GTKGUI_GLADE, 'accounts_window', APP)
|
||||
self.window = self.xml.get_widget('accounts_window')
|
||||
self.accounts_treeview = self.xml.get_widget('accounts_treeview')
|
||||
self.modify_button = self.xml.get_widget('modify_button')
|
||||
self.remove_button = self.xml.get_widget('remove_button')
|
||||
model = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING,
|
||||
gobject.TYPE_BOOLEAN)
|
||||
self.accounts_treeview.set_model(model)
|
||||
#columns
|
||||
renderer = gtk.CellRendererText()
|
||||
self.accounts_treeview.insert_column_with_attributes(-1,
|
||||
_('Name'), renderer, text = 0)
|
||||
renderer = gtk.CellRendererText()
|
||||
self.accounts_treeview.insert_column_with_attributes(-1,
|
||||
_('Server'), renderer, text = 1)
|
||||
self.xml.signal_autoconnect(self)
|
||||
self.init_accounts()
|
||||
self.window.show_all()
|
||||
|
||||
def on_accounts_window_key_press_event(self, widget, event):
|
||||
if event.keyval == gtk.keysyms.Escape:
|
||||
self.window.destroy()
|
||||
|
||||
def init_accounts(self):
|
||||
'''initialize listStore with existing accounts'''
|
||||
self.modify_button.set_sensitive(False)
|
||||
|
@ -1321,7 +1397,7 @@ class Accounts_window:
|
|||
self.remove_button.set_sensitive(True)
|
||||
|
||||
def on_new_button_clicked(self, widget):
|
||||
'''When new button is clicked : open an account information window'''
|
||||
'''When new button is clicked: open an account information window'''
|
||||
if self.plugin.windows.has_key('account_modification'):
|
||||
self.plugin.windows['account_modification'].window.present()
|
||||
else:
|
||||
|
@ -1329,7 +1405,7 @@ class Accounts_window:
|
|||
Account_modification_window(self.plugin, '')
|
||||
|
||||
def on_remove_button_clicked(self, widget):
|
||||
'''When delete button is clicked :
|
||||
'''When delete button is clicked:
|
||||
Remove an account from the listStore and from the config file'''
|
||||
sel = self.accounts_treeview.get_selection()
|
||||
(model, iter) = sel.get_selected()
|
||||
|
@ -1356,27 +1432,6 @@ class Accounts_window:
|
|||
self.plugin.windows[account]['account_modification'] = \
|
||||
Account_modification_window(self.plugin, account)
|
||||
|
||||
def __init__(self, plugin):
|
||||
self.plugin = plugin
|
||||
self.xml = gtk.glade.XML(GTKGUI_GLADE, 'accounts_window', APP)
|
||||
self.window = self.xml.get_widget('accounts_window')
|
||||
self.accounts_treeview = self.xml.get_widget('accounts_treeview')
|
||||
self.modify_button = self.xml.get_widget('modify_button')
|
||||
self.remove_button = self.xml.get_widget('remove_button')
|
||||
model = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING,
|
||||
gobject.TYPE_BOOLEAN)
|
||||
self.accounts_treeview.set_model(model)
|
||||
#columns
|
||||
renderer = gtk.CellRendererText()
|
||||
self.accounts_treeview.insert_column_with_attributes(-1,
|
||||
_('Name'), renderer, text = 0)
|
||||
renderer = gtk.CellRendererText()
|
||||
self.accounts_treeview.insert_column_with_attributes(-1,
|
||||
_('Server'), renderer, text = 1)
|
||||
self.xml.signal_autoconnect(self)
|
||||
self.init_accounts()
|
||||
self.window.show_all()
|
||||
|
||||
#---------- Service_registration_window class -------------#
|
||||
class Service_registration_window:
|
||||
'''Class for Service registration window:
|
||||
|
@ -1425,17 +1480,16 @@ class Service_registration_window:
|
|||
self.window.destroy()
|
||||
|
||||
def __init__(self, service, infos, plugin, account):
|
||||
self.xml = gtk.glade.XML(GTKGUI_GLADE,
|
||||
'service_registration_window', APP)
|
||||
self.xml = gtk.glade.XML(GTKGUI_GLADE, 'service_registration_window', APP)
|
||||
self.service = service
|
||||
self.infos = infos
|
||||
self.plugin = plugin
|
||||
self.account = account
|
||||
self.window = self.xml.get_widget('service_registration_window')
|
||||
if infos.has_key('registered'):
|
||||
self.window.set_title(_('Edit ' + service)
|
||||
self.window.set_title(_('Edit %s' % service))
|
||||
else:
|
||||
self.window.set_title(_('Register to ' + service)
|
||||
self.window.set_title(_('Register to %s' % service))
|
||||
self.xml.get_widget('label').set_text(infos['instructions'])
|
||||
self.entries = {}
|
||||
self.draw_table()
|
||||
|
|
Loading…
Reference in New Issue