Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtkspell.py « src - dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9d334c5296c101df5a5a40c54d37e8b08e88f76c (plain)
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
## src/gtkspell.py
##
## (C) 2008 Thorsten P. 'dGhvcnN0ZW5wIEFUIHltYWlsIGNvbQ==\n'.decode("base64")
##
## 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/>.

import ctypes
import ctypes.util

from gi.repository import Gtk


gboolean = ctypes.c_int
gchar_p = ctypes.c_char_p
gerror_p = ctypes.c_void_p
gobject_p = ctypes.c_void_p
gtkspell_p = ctypes.c_void_p
gtktextview_p = ctypes.c_void_p


class PyGObject(ctypes.Structure):
    _fields_ = [
            ("PyObject_HEAD", ctypes.c_byte * object.__basicsize__),
            ("obj", gobject_p)
    ]


libgtkspell_path = ctypes.util.find_library("gtkspell")
if libgtkspell_path == None:
    raise ImportError("libgtkspell not found")
libgtkspell = ctypes.cdll.LoadLibrary(libgtkspell_path)
libgtkspell.gtkspell_new_attach.restype = gtkspell_p
libgtkspell.gtkspell_new_attach.argtypes = [gtktextview_p, gchar_p, gerror_p]
libgtkspell.gtkspell_set_language.restype = gboolean
libgtkspell.gtkspell_set_language.argtypes = [gtkspell_p, gchar_p, gerror_p]
libgtkspell.gtkspell_recheck_all.argtypes = [gtkspell_p]
libgtkspell.gtkspell_get_from_text_view.restype = gtkspell_p
libgtkspell.gtkspell_get_from_text_view.argtypes = [gtktextview_p]
libgtkspell.gtkspell_detach.argtypes = [gtkspell_p]


def ensure_attached(func):
    def f(self, *args, **kwargs):
        if self.spell:
            func(self, *args, **kwargs)
        else:
            raise RuntimeError("Spell object is already detached")
    return f


class Spell(object):

    def __init__(self, textview, language=None, create=True):
        if not isinstance(textview, Gtk.TextView):
            raise TypeError("Textview must be derived from Gtk.TextView")
        tv = PyGObject.from_address(id(textview)).obj
        spell = libgtkspell.gtkspell_get_from_text_view(tv)
        if create:
            if spell:
                raise RuntimeError("Textview has already a Spell obj attached")
            self.spell = libgtkspell.gtkspell_new_attach(tv, language.encode(
                'utf-8'), None)
            if not self.spell:
                raise OSError("Unable to attach spell object. "
                              "Language: '%s'" % str(language))
        else:
            if spell:
                self.spell = spell
            else:
                raise RuntimeError("Textview has no Spell object attached")

    @ensure_attached
    def set_language(self, language):
        if libgtkspell.gtkspell_set_language(self.spell, language.encode(
        'utf-8'), None) == 0:
            raise OSError("Unable to set language '%s'" % str(language))

    @ensure_attached
    def recheck_all(self):
        libgtkspell.gtkspell_recheck_all(self.spell)

    @ensure_attached
    def detach(self):
        libgtkspell.gtkspell_detach(self.spell)
        self.spell = None


def get_from_text_view(textview):
    return Spell(textview, create=False)