aboutsummaryrefslogtreecommitdiff
path: root/main/src/ui/chat_input/spell_checker.vala
blob: a05d9251e1da29c81fbf7c44c25b8417e90ae163 (plain) (blame)
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
using Gdk;
using Gee;
using Gspell;

using Dino.Entities;

namespace Dino.Ui {

public class SpellChecker {

    private Conversation? conversation;
    private TextView gspell_view;
    private HashMap<Conversation, Language> language_cache = new HashMap<Conversation, Language>(Conversation.hash_func, Conversation.equals_func);

    public SpellChecker(Gtk.TextView text_input) {
        this.gspell_view = TextView.get_from_gtk_text_view(text_input);
        gspell_view.basic_setup();
    }

    public void initialize_for_conversation(Conversation conversation) {
        Checker spell_checker = TextBuffer.get_from_gtk_text_buffer(gspell_view.view.buffer).spell_checker;

        if (this.conversation != null) language_cache[this.conversation] = spell_checker.language;

        this.conversation = conversation;

        if (language_cache.has_key(this.conversation)) {
            spell_checker.language = language_cache[conversation];
        } else {
            spell_checker.language = null;
        }
    }
}

}