Keeps a list of often used symbols in table format in the 'data' attribute. The 'name' attribute contains the translated text 'Symbols'.
Type: | chars |
Uses (at least one of): |
SettingsModule >
|
Requires (at least one of): |
EventModule >
SimpleTranslatorModule > |
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 | #! /usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright 2009-2012, 2017, Marten de Vries
# Copyright 2008-2011, Milan Boers
#
# This file is part of OpenTeacher.
#
# OpenTeacher 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 3 of the License, or
# (at your option) any later version.
#
# OpenTeacher 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 OpenTeacher. If not, see <http://www.gnu.org/licenses/>.
import contextlib
class SymbolsModule:
"""Keeps a list of often used symbols in table format in the 'data'
attribute. The 'name' attribute contains the translated text
'Symbols'.
"""
def __init__(self, moduleManager, *args, **kwargs):
super().__init__(*args, **kwargs)
self._mm = moduleManager
self.type = "chars"
self.requires = (
self._mm.mods(type="event"),
self._mm.mods(type="simpleTranslator"),
)
self.uses = (
self._mm.mods(type="settings"),
)
self.filesWithTranslations = ("symbols.py",)
self.priorities = {
"default": 155,
}
def sendUpdated(self):
"""Wrapper for the settings callback"""
self.updated.send()
def enable(self):
self._modules = set(self._mm.mods(type="modules")).pop()
self.internalName = "org.openteacher.chars.symbols"
self.updated = self._modules.default(type="event").createEvent()
defaultSetting = [
[u"à", u"á", u"â", u"ä", u"ã", u"å"],
[u"À", u"Á", u"Â", u"Ä", u"Ã", u"Å"],
[u"è", u"é", u"ê", u"ë", u"Ç", u"ç"],
[u"È", u"É", u"Ê", u"Ë", u"Ñ", u"ñ"],
[u"ì", u"í", u"î", u"ï", u"Û", u"û"],
[u"Ì", u"Í", u"Î", u"Ï", u"Ú", u"ú"],
[u"ò", u"ó", u"ô", u"ö", u"Ü", u"ü"],
[u"Ò", u"Ó", u"Ô", u"Ö", u"Ù", u"ß"],
[u"\,", u"\;", u"\=", u"", u"", u""],
]
try:
self._settings = self._modules.default(type="settings")
except IndexError:
self.data = defaultSetting
else:
self._setting = self._settings.registerSetting(**{
"internal_name": "org.openteacher.chars.symbols.data",
"type": "character_table",
"defaultValue": defaultSetting,
"callback": {
"args": ("active",),
"kwargs": {"internalName": self.internalName},
"method": "sendUpdated",
}
})
self.data = self._setting["value"]
translator = self._modules.default("active", type="simpleTranslator")
translator.setupTranslation(self._mm.resourcePath(), self._retranslate)
self.active = True
def _retranslate(self, _, ngettext):
self.name = _("Symbols")
with contextlib.suppress(AttributeError):
self._setting.update({
"name": self.name,
"category": _("Lesson"),
"subcategory": _("Words lesson")
})
def disable(self):
self.active = False
del self._modules
del self.name
del self.data
with contextlib.suppress(AttributeError):
del self._settings
with contextlib.suppress(AttributeError):
del self._setting
del self.internalName
del self.updated
def init(moduleManager):
return SymbolsModule(moduleManager)
|