2008-06-09 13:46:29 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
## This file is part of Gajim.
|
|
|
|
##
|
|
|
|
## Gajim 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 3 only.
|
|
|
|
##
|
|
|
|
## Gajim 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.
|
|
|
|
##
|
|
|
|
## You should have received a copy of the GNU General Public License
|
|
|
|
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
##
|
|
|
|
|
|
|
|
'''
|
|
|
|
Acronyms expander plugin.
|
|
|
|
|
|
|
|
:author: Mateusz Biliński <mateusz@bilinski.it>
|
2008-06-18 22:45:22 +02:00
|
|
|
:since: 9th June 2008
|
2008-06-09 13:46:29 +02:00
|
|
|
:copyright: Copyright (2008) Mateusz Biliński <mateusz@bilinski.it>
|
|
|
|
:license: GPL
|
|
|
|
'''
|
|
|
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
import gtk
|
|
|
|
|
|
|
|
from plugins import GajimPlugin
|
|
|
|
from plugins.helpers import log, log_calls
|
|
|
|
|
|
|
|
class AcronymsExpanderPlugin(GajimPlugin):
|
|
|
|
name = u'Acronyms Expander'
|
|
|
|
short_name = u'acronyms_expander'
|
|
|
|
version = u'0.1'
|
|
|
|
description = u'''Replaces acronyms (or other strings) with given expansions/substitutes.'''
|
|
|
|
authors = [u'Mateusz Biliński <mateusz@bilinski.it>']
|
|
|
|
homepage = u'http://blog.bilinski.it'
|
|
|
|
|
2008-06-18 22:45:22 +02:00
|
|
|
#@log_calls('AcronymsExpanderPlugin')
|
|
|
|
#def __init__(self):
|
|
|
|
#super(AcronymsExpanderPlugin, self).__init__()
|
|
|
|
|
|
|
|
def init(self):
|
2008-06-19 14:56:45 +02:00
|
|
|
self.config_dialog = None
|
|
|
|
|
2008-06-12 20:26:08 +02:00
|
|
|
self.gui_extension_points = {
|
2008-06-09 13:46:29 +02:00
|
|
|
'chat_control_base' : (self.connect_with_chat_control_base,
|
|
|
|
self.disconnect_from_chat_control_base)
|
|
|
|
}
|
|
|
|
|
2008-07-29 21:09:28 +02:00
|
|
|
self.config_default_values = {'INVOKER' : (' ', _('')),
|
|
|
|
'ACRONYMS' : ({'RTFM' : 'Read The Friendly Manual',
|
|
|
|
'/slap' : '/me slaps',
|
|
|
|
'PS-' : 'plug-in system',
|
|
|
|
'G-' : 'Gajim',
|
|
|
|
'GNT-' : 'http://trac.gajim.org/newticket',
|
|
|
|
'GW-' : 'http://trac.gajim.org/',
|
|
|
|
'GTS-' : 'http://trac.gajim.org/report'
|
|
|
|
}, _('')),
|
|
|
|
}
|
2008-06-09 13:46:29 +02:00
|
|
|
|
|
|
|
@log_calls('AcronymsExpanderPlugin')
|
|
|
|
def textbuffer_live_acronym_expander(self, tb):
|
|
|
|
"""
|
|
|
|
@param tb gtk.TextBuffer
|
|
|
|
"""
|
2008-07-29 21:09:28 +02:00
|
|
|
#assert isinstance(tb,gtk.TextBuffer)
|
|
|
|
ACRONYMS = self.config['ACRONYMS']
|
|
|
|
INVOKER = self.config['INVOKER']
|
2008-06-09 13:46:29 +02:00
|
|
|
t = tb.get_text(tb.get_start_iter(), tb.get_end_iter())
|
|
|
|
log.debug('%s %d'%(t, len(t)))
|
2008-07-29 21:09:28 +02:00
|
|
|
if t and t[-1] == INVOKER:
|
2008-06-09 13:46:29 +02:00
|
|
|
log.debug("changing msg text")
|
2008-07-29 21:09:28 +02:00
|
|
|
base,sep,head=t[:-1].rpartition(INVOKER)
|
2008-06-09 13:46:29 +02:00
|
|
|
log.debug('%s | %s | %s'%(base, sep, head))
|
2008-07-29 21:09:28 +02:00
|
|
|
if head in ACRONYMS:
|
|
|
|
head = ACRONYMS[head]
|
2008-06-09 13:46:29 +02:00
|
|
|
log.debug("head: %s"%(head))
|
2008-07-29 21:09:28 +02:00
|
|
|
t = "".join((base, sep, head, INVOKER))
|
2008-06-09 13:46:29 +02:00
|
|
|
log.debug("turning off notify")
|
|
|
|
tb.freeze_notify()
|
|
|
|
log.debug("setting text: '%s'"%(t))
|
|
|
|
tb.set_text(t)
|
|
|
|
log.debug("turning on notify")
|
|
|
|
tb.thaw_notify()
|
|
|
|
|
|
|
|
@log_calls('AcronymsExpanderPlugin')
|
|
|
|
def connect_with_chat_control_base(self, chat_control):
|
|
|
|
d = {}
|
|
|
|
tv = chat_control.msg_textview
|
|
|
|
tb = tv.get_buffer()
|
|
|
|
h_id = tb.connect('changed', self.textbuffer_live_acronym_expander)
|
|
|
|
d['h_id'] = h_id
|
|
|
|
|
|
|
|
chat_control.acronyms_expander_plugin_data = d
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
@log_calls('AcronymsExpanderPlugin')
|
|
|
|
def disconnect_from_chat_control_base(self, chat_control):
|
|
|
|
d = chat_control.acronyms_expander_plugin_data
|
|
|
|
tv = chat_control.msg_textview
|
|
|
|
tv.get_buffer().disconnect(d['h_id'])
|
2008-07-29 21:09:28 +02:00
|
|
|
|