1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
|
# -*- coding: utf-8 -*-
# This file is part of emesene.
#
# Emesene 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; either version 2 of the License, or
# (at your option) any later version.
#
# emesene 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 emesene; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
VERSION = '0.3'
import Plugin
import gettext
import commands
import dialog
from emesenecommon import PATH
ERROR = ''
try:
import gtkspell
except:
ERROR = _('You need to install gtkspell to use Spell plugin')
class MainClass(Plugin.Plugin):
'''Main plugin class'''
def __init__(self, controller, msn):
'''Constructor'''
Plugin.Plugin.__init__(self, controller, msn)
self.description = _('SpellCheck for emesene')
self.authors = { 'Roger Duran' : 'RogerDuran at gmail dot com' }
self.website = 'http://www.rogerpc.com.ar'
self.displayName = _('Spell')
self.name = 'Spell'
self.controller = controller
self.config = controller.config
self.conversationManager = self.controller.conversationManager
self.config.readPluginConfig(self.name)
self.lang = self.config.getPluginValue(self.name, 'lang', '')
self.newConversationWindowId = 0
self.closeConversationWindowId = 0
self.onInputFormatChangedId = 0
def onInputFormatChanged(self, controller, textView):
buffer = textView.get_buffer()
if not buffer:
return
table = buffer.get_tag_table()
if not table:
return
tag = table.lookup('gtkspell-misspelled')
if not tag:
return
tag.set_priority(table.get_size() - 1)
def start(self):
'''start the plugin'''
# this signals should be emitted by conversationManager
self.newConversationWindowId = self.conversationManager.connect(
'new-conversation-ui', self.newConversationWindow)
self.closeConversationWindowId = self.conversationManager.connect(
'close-conversation-ui', self.closeConversationWindow)
self.onInputFormatChangedId = self.controller.connect(
'input-format-changed', self.onInputFormatChanged)
self.enabled = True
self.applyAllConv(self.setSpell)
self.applyAllConv(self.setLang)
def stop(self, removeSpell=True):
'''stop the plugin'''
self.conversationManager.disconnect(self.newConversationWindowId)
self.conversationManager.disconnect(self.closeConversationWindowId)
self.controller.disconnect(self.onInputFormatChangedId)
self.applyAllConv(self.removeSpell)
self.enabled = False
def error(self, message, removeSpell=True):
if self.enabled:
dialog.error( message + " " + \
_("Plugin disabled."))
self.stop(removeSpell)
def applyAllConv(self, command):
'''Applies a command to all open convs'''
if self.enabled:
for conversation in self.getOpenConversations():
textView = conversation.ui.input.input
if not command(textView):
return False
def removeSpell(self, textView):
try:
gtkspell.get_from_text_view(textView).detach()
except (SystemError, Exception):
print "Can't detach gtkspell. Ignoring."
return
def setSpell(self, textView):
try:
gtkspell.Spell(textView, self.lang)
except Exception, e:
print str(e)
self.error(_('Error applying Spell to input (%s)') % e, False)
return False
def setLang(self, textView):
if self.lang == '':
self.lang = None
try:
gtkspell.get_from_text_view(textView).set_language(self.lang)
except Exception, e:
print str(e)
self.error(_('Error applying Spell to input (%s)') % e, False)
return False
def check(self):
'''
check if everything is OK to start the plugin
return a tuple whith a boolean and a message
if OK -> (True, 'some message')
else -> (False, 'error message')
'''
if ERROR != '':
return (False, ERROR)
return (True, 'Ok')
def newConversationWindow(self, conversationmanager, conversation, win):
textView = conversation.ui.input.input #inputwidget.textview
self.setSpell(textView)
def closeConversationWindow(self, conversationManager, conversation, win):
textView = conversation.ui.input.input #inputwidget.textview
try:
gtkspell.get_from_text_view(textView).detach()
except:
pass
def configure(self):
'''display a configuration dialog'''
# name, optionType, label, description, value, options
status, langs = commands.getstatusoutput('aspell dump dicts')
if status == 0:
langs = langs.split('\n')
else:
self.error(_("Error getting dictionaries list"))
langs = []
if not langs:
self.error(_("No dictionaries found."))
return
l = []
l.append(Plugin.Option('lang', list, _('Default language'),
_('Set the default language'),
self.config.getPluginValue(self.name, 'lang', ''), langs))
response = Plugin.ConfigWindow(_('Spell configuration'), l).run()
if response != None and response.has_key('lang'):
self.config.setPluginValue(self.name, 'lang',
str(response['lang'].value))
self.lang = self.config.getPluginValue(self.name, 'lang', '')
self.applyAllConv(self.setLang)
return True
|